Home
last modified time | relevance | path

Searched refs:copied (Results 1 – 25 of 205) sorted by relevance

123456789

/external/qemu/memcheck/
Dmemcheck_util.c123 size_t copied = 0; in memcheck_get_guest_string() local
126 for (copied = 0; copied < qemu_buffer_size - 1; copied++) { in memcheck_get_guest_string()
127 qemu_str[copied] = ldub_user(guest_str + copied); in memcheck_get_guest_string()
128 if (qemu_str[copied] == '\0') { in memcheck_get_guest_string()
129 return copied; in memcheck_get_guest_string()
133 qemu_str[copied] = '\0'; in memcheck_get_guest_string()
134 return copied; in memcheck_get_guest_string()
142 size_t copied = 0; in memcheck_get_guest_kernel_string() local
145 for (copied = 0; copied < qemu_buffer_size - 1; copied++) { in memcheck_get_guest_kernel_string()
146 qemu_str[copied] = ldub_kernel(guest_str + copied); in memcheck_get_guest_kernel_string()
[all …]
/external/llvm/lib/Support/
DMemoryObject.cpp19 uint64_t* copied) const { in readBytes()
30 if (copied) in readBytes()
31 *copied = current - address; in readBytes()
/external/chromium/net/socket/
Dssl_server_socket_unittest.cc74 int copied = PropogateData(read_buf_, read_buf_len_); in DoReadCallback() local
79 callback->Run(copied); in DoReadCallback()
84 int copied = std::min(buf->BytesRemaining(), read_buf_len); in PropogateData() local
85 memcpy(read_buf->data(), buf->data(), copied); in PropogateData()
86 buf->DidConsume(copied); in PropogateData()
90 return copied; in PropogateData()
/external/webkit/Source/WebCore/platform/network/qt/
DQNetworkReplyHandler.cpp116 qint64 copied = 0; in readData() local
117 while (copied < size && !m_formElements.isEmpty()) { in readData()
119 const qint64 available = size-copied; in readData()
123 memcpy(destination+copied, element.m_data.data()+m_currentDelta, toCopy); in readData()
125 copied += toCopy; in readData()
131 memcpy(destination+copied, data.constData(), data.size()); in readData()
132 copied += data.size(); in readData()
139 return copied; in readData()
/external/openssl/crypto/dso/
Ddso_lib.c367 char *copied; in DSO_set_filename() local
380 copied = OPENSSL_malloc(strlen(filename) + 1); in DSO_set_filename()
381 if(copied == NULL) in DSO_set_filename()
386 BUF_strlcpy(copied, filename, strlen(filename) + 1); in DSO_set_filename()
389 dso->filename = copied; in DSO_set_filename()
/external/chromium/base/third_party/icu/
DREADME.chromium4 This file has the relevant components from ICU copied to handle basic
5 UTF8/16/32 conversions. Components are copied from utf.h utf8.h utf16.h and
/external/chromium/android/net/
Dandroid_network_library_impl.cc40 size_t copied = cert_chain[i].copy(reinterpret_cast<char*>(bytes), len); in GetCertificateByteArray() local
41 DCHECK_EQ(copied, len); in GetCertificateByteArray()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DSuballocatedIntVector.java214 int copied=(m_blocksize-offset < numberOfElements) in addElements() local
216 numberOfElements-=copied; in addElements()
217 while(copied-- > 0) in addElements()
/external/chromium/webkit/glue/media/
Dsimple_data_source.cc126 size_t copied = std::min(size, static_cast<size_t>(size_ - position)); in Read() local
127 memcpy(data, data_.c_str() + position, copied); in Read()
128 read_callback->RunWithParams(Tuple1<size_t>(copied)); in Read()
/external/llvm/include/llvm/Support/
DMemoryObject.h64 uint64_t* copied) const;
/external/bzip2/
DREADME.android9 * copied LICENSE to NOTICE
Dbzdiff.11 \"Shamelessly copied from zmore.1 by Philippe Troin <phil@fifi.org>
/external/openssl/crypto/bf/
DCOPYRIGHT40 copied and put under another distrubution license
44 experience in code simply being copied and the attribution removed
/external/llvm/test/CodeGen/Blackfin/
Dcmp64.ll4 ; copies (JustCC -> DP), failing because JustCC can only be copied to D.
/external/llvm/test/CodeGen/Thumb2/
D2010-04-15-DynAllocBug.ll4 ; Make sure the result of the first dynamic_alloc isn't copied back to sp more
/external/iptables/extensions/
Dlibxt_CONNMARK.man49 copied.
53 copied. This is only valid in the \fBmangle\fP table.
Dlibipt_ULOG.man19 Number of bytes to be copied to userspace. A value of 0 always copies
/external/chromium/net/third_party/gssapi/
DREADME.chromium13 The LICENSE from the header has been copied here.
/external/openssl/crypto/des/
DCOPYRIGHT44 copied and put under another distrubution license
48 experience in code simply being copied and the attribution removed
/external/mesa3d/docs/
DREADME.WIN3266 If the MesaDemos ZIP file was extracted, the DLL files are also copied
79 are copied to the top-level lib directory, along with the Mesa libs.
84 rely on data files found there. Also, the Mesa lib DLL's were copied
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
Dcopy-files.cmd76 echo Deleting copied files...
/external/webkit/Source/WebKit/mac/
DPublicHeaderChangesFromTiger.txt13 Added -[DOMHTMLInputElement isTextField] to DOMExtensions.h (in WebCore, copied by build steps to W…
/external/libpcap/
DREADME.linux49 be copied from the kernel to the program, rather than having all packets
50 copied to the program and libpcap doing the filtering in user mode.
/external/chromium/webkit/glue/resources/
DREADME.txt1 The files listed below and found in this directory are copied from the
54 The files listed below and found in this directory are copied from the WebKit
/external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
DREADME.VMS80 vms-conf.h -- pre-configured `conf.in', copied to [-.-]config.h;
81 vms-code.c -- VMS-specific support code, copied to [-.-]vms-code.c;

123456789