Home
last modified time | relevance | path

Searched full:copied (Results 1 – 25 of 676) sorted by relevance

12345678910>>...28

/openbmc/qemu/fsdev/
H A D9p-iov-marshal.c25 size_t copied = 0; in v9fs_packunpack() local
43 copied += len; in v9fs_packunpack()
51 if (copied < req_size) { in v9fs_packunpack()
53 * We copied less that requested size. error out in v9fs_packunpack()
57 return copied; in v9fs_packunpack()
76 ssize_t copied = 0; in v9fs_iov_vunmarshal() local
83 copied = v9fs_unpack(valp, out_sg, out_num, offset, sizeof(*valp)); in v9fs_iov_vunmarshal()
89 copied = v9fs_unpack(&val, out_sg, out_num, offset, sizeof(val)); in v9fs_iov_vunmarshal()
90 if (copied <= 0) { in v9fs_iov_vunmarshal()
103 copied = v9fs_unpack(&val, out_sg, out_num, offset, sizeof(val)); in v9fs_iov_vunmarshal()
[all …]
/openbmc/qemu/net/
H A Deth.c75 size_t copied; in eth_get_l3_proto() local
83 copied = iov_to_buf(l2hdr_iov, iovcnt, proto_offset, in eth_get_l3_proto()
86 return (copied == sizeof(proto)) ? be16_to_cpu(proto) : ETH_P_UNKNOWN; in eth_get_l3_proto()
95 size_t copied; in _eth_copy_chunk() local
101 copied = iov_to_buf(iov, iovcnt, offset, buffer, length); in _eth_copy_chunk()
103 if (copied < length) { in _eth_copy_chunk()
141 size_t copied; in eth_get_protocols() local
157 copied = iov_to_buf(iov, iovcnt, *l3hdr_off, iphdr, sizeof(*iphdr)); in eth_get_protocols()
158 if (copied < sizeof(*iphdr) || in eth_get_protocols()
229 size_t copied = iov_to_buf(iov, iovcnt, iovoff, in eth_strip_vlan() local
[all …]
/openbmc/phosphor-webui/app/access-control/controllers/
H A Dcertificate-modal-csr-download.html23 on-copied="copySuccess(event)"
25 <span ng-if="!copied">Copy</span>
26 <span ng-if="copied">
28 <span>Copied</span>
/openbmc/u-boot/include/
H A Dhw_sha.h17 * 64 bytes are copied to pout[0]...pout[63]. Thus, a user
30 * 48 bytes are copied to pout[0]...pout[47]. Thus, a user
43 * 32 bytes are copied to pout[0]...pout[31]. Thus, a user
56 * 32 bytes are copied to pout[0]...pout[31]. Thus, a user
94 * @dest_buf: Pointer to the destination buffer where hash is to be copied
H A Dbouncebuf.h15 * The source buffer is copied into the bounce buffer (if unaligned, otherwise
25 * copied into the destination buffer (if unaligned, otherwise destination
31 * The source buffer is copied into the bounce buffer (if unaligned, otherwise
33 * requiring the aligned transfer happens, then the bounce buffer is copied
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DGPL-3.0-with-autoconf-exception19 "Normally Copied Code" for a version of Autoconf means all parts of its Covered Code which that ver…
21 "Ineligible Code" is Covered Code that is not Normally Copied Code.
24 …cause any Ineligible Code of the version you received to become Normally Copied Code of your modif…
H A DAdaCore-doc1 This document may be copied, in whole or in part, in any form or by any means, as is or with altera…
H A DTTWL5 This module may be modified, used, copied, and redistributed at your own risk.
H A DHaskellReport6 …ty, including this Notice. Modified versions of this Report may also be copied and distributed fo…
/openbmc/u-boot/doc/
H A DREADME.plan98 copied to CONFADDR. If no arguments are specified, the contents of the
9 bootargs environment variable will be copied.
/openbmc/u-boot/test/lib/
H A Dstring.c8 * code depending on the alignment and length of memory regions copied or set.
103 * @offset1: relative start of copied region in source buffer
104 * @offset2: relative start of copied region in destination buffer
126 * Test memcpy() with varied alignment and length of the copied buffer.
164 * Test memmove() with varied alignment and length of the copied buffer.
/openbmc/phosphor-webui/app/common/directives/
H A Dlog-event.html44 …<button class="btn btn-tertiary" clipboard text="copyText(event)" on-copied="copySuccess(event)" …
46 <span ng-if="!event.copied">Copy</span>
47 <span ng-if="event.copied">Copied</span>
H A Dlog-event.js16 event.copied = true;
18 event.copied = false;
/openbmc/openbmc/poky/meta-yocto-bsp/lib/oeqa/selftest/cases/
H A Dsystemd_boot.py45 2. Check bootx64.efi was copied from wic
46 3. Verify the checksums from the copied and previously
68 self.assertTrue(found, 'bootx64.efi file %s was not copied from image'
/openbmc/qemu/hw/audio/
H A Dgus.c193 int copied; in GUS_read_DMA() local
196 copied = k->read_memory(s->isa_dma, nchan, tmpbuf, pos, to_copy); in GUS_read_DMA()
197 gus_dma_transferdata (&s->emu, tmpbuf, copied, left == copied); in GUS_read_DMA()
198 left -= copied; in GUS_read_DMA()
199 pos += copied; in GUS_read_DMA()
H A Dcs4231a.c539 int copied; in cs_write_audio() local
547 copied = k->read_memory(s->isa_dma, nchan, tmpbuf, dma_pos, to_copy); in cs_write_audio()
552 for (i = 0; i < copied; ++i) in cs_write_audio()
554 copied = AUD_write (s->voice, linbuf, copied << 1); in cs_write_audio()
555 copied >>= 1; in cs_write_audio()
558 copied = AUD_write (s->voice, tmpbuf, copied); in cs_write_audio()
561 temp -= copied; in cs_write_audio()
562 dma_pos = (dma_pos + copied) % dma_len; in cs_write_audio()
563 net += copied; in cs_write_audio()
565 if (!copied) { in cs_write_audio()
H A Dvia-ac97.c176 int temp, to_copy, copied; in out_cb() local
192 copied = AUD_write(s->vo, tmpbuf, to_copy); in out_cb()
193 if (!copied) { in out_cb()
197 temp -= copied; in out_cb()
198 avail -= copied; in out_cb()
199 c->addr += copied; in out_cb()
200 c->clen -= copied; in out_cb()
/openbmc/qemu/target/i386/tcg/user/
H A Dexcp_helper.c33 * is copied to linux sigcontext.err. The exception_index is in x86_cpu_record_sigsegv()
34 * copied to linux sigcontext.trapno. Short of inventing a new in x86_cpu_record_sigsegv()
/openbmc/qemu/hw/block/
H A Dxen_blkif.h39 uint64_t id; /* copied from request */
40 uint8_t operation; /* copied from request */
66 uint8_t operation; /* copied from request */
/openbmc/qemu/include/hw/nvram/
H A Dfw_cfg.h109 * is only linked, NOT copied, into the data structure of the fw_cfg device.
225 * referenced by the starting pointer is only linked, NOT copied, into the
247 * referenced by the starting pointer is only linked, NOT copied, into the
276 * In either case, the new item data is only linked, NOT copied, into the
293 * The data generated by the @part object is copied into the data structure of
/openbmc/openpower-hw-diags/test/
H A Dtest-util-data-file.cpp57 // Copied/modified from file: in TEST()
79 // Copied/modified from file:
/openbmc/openbmc/meta-ieisystem/meta-nf5280m7/recipes-kernel/linux/linux-aspeed/nf5280m7/
H A Dnf5280m7.cfg19 # copied from gbmc
/openbmc/bmcweb/features/kvm/
H A Dkvm_websocket.hpp67 size_t copied = boost::asio::buffer_copy( in onMessage() local
70 logPtr(&conn), copied); in onMessage()
71 inputBuffer.commit(copied); in onMessage()
/openbmc/u-boot/include/linux/
H A Dkbuild.h2 * Copied from Linux:
/openbmc/u-boot/net/
H A Dcdp.h3 * Copied from Linux Monitor (LiMon) - Networking.

12345678910>>...28