Searched defs:copy (Results 1 - 25 of 398) sorted by relevance

1234567891011>>

/external/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/external/clang/test/CodeGen/
H A D2007-04-24-VolatileStructCopy.c8 void copy(volatile struct foo *p, struct foo *q) { function
/external/grub/stage2/
H A Dnbloader.S15 * You should have received a copy of the GNU General Public License
63 /* Always copy 32k bytes */
86 jg copy
89 copy: label
105 /* Use word-size copy */
/external/elfutils/libdwfl/
H A Ddwfl_module_report_build_id.c14 You should have received a copy of the GNU General Public License along
81 void *copy = NULL; local
84 copy = malloc (len);
85 if (unlikely (copy == NULL))
90 memcpy (copy, bits, len);
95 mod->build_id_bits = copy;
/external/webkit/Source/WebCore/platform/
H A DCrossThreadCopier.cpp44 CrossThreadCopierBase<false, false, KURL>::Type CrossThreadCopierBase<false, false, KURL>::copy(const KURL& url) function in class:WebCore::CrossThreadCopierBase
46 return url.copy();
49 CrossThreadCopierBase<false, false, String>::Type CrossThreadCopierBase<false, false, String>::copy(const String& str) function in class:WebCore::CrossThreadCopierBase
54 CrossThreadCopierBase<false, false, ResourceError>::Type CrossThreadCopierBase<false, false, ResourceError>::copy(const ResourceError& error) function in class:WebCore::CrossThreadCopierBase
56 return error.copy();
59 CrossThreadCopierBase<false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, ResourceRequest>::copy(const ResourceRequest& request) function in class:WebCore::CrossThreadCopierBase
64 CrossThreadCopierBase<false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, ResourceResponse>::copy(const ResourceResponse& response) function in class:WebCore::CrossThreadCopierBase
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamErrorBase.cpp36 SocketStreamError SocketStreamErrorBase::copy() const function in class:WebCore::SocketStreamErrorBase
H A DResourceErrorBase.cpp34 ResourceError ResourceErrorBase::copy() const function in class:WebCore::ResourceErrorBase
/external/compiler-rt/BlocksRuntime/tests/
H A Dbyrefstruct.c21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy
[all...]
H A Dbyrefcopyint.c50 voidVoid copy = Block_copy(dummy); local
53 return copy;
/external/dbus/dbus/
H A Ddbus-marshal-byteswap-util.c18 * You should have received a copy of the GNU General Public License
49 DBusString copy; local
53 if (!_dbus_string_init (&copy))
56 if (!_dbus_string_copy (&body, 0, &copy, 0))
62 &copy, 0);
67 &copy, 0);
75 _dbus_verbose_bytes_of_string (&copy, 0,
76 _dbus_string_get_length (&copy));
82 _dbus_string_free (&copy);
/external/icu4c/common/unicode/
H A Durep.h121 * @param dst array in which to copy characters. The length of
142 * @param dest the index at which the copy of the UChars should be
146 void (*copy)(UReplaceable* rep, member in struct:UReplaceableCallbacks
H A Dparsepos.h72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy) argument
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy) argument
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) cons
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:DeprecatedAttribute
H A DSyntheticAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SyntheticAttribute
H A DAnnotationDefaultAttribute.java104 * Copies this attribute and returns a new copy.
106 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:AnnotationDefaultAttribute
H A DConstantAttribute.java60 * Makes a copy. Class names are replaced according to the
63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:ConstantAttribute
68 int index = getConstPool().copy(getConstantValue(), newCp,
H A DEnclosingMethodAttribute.java119 * Makes a copy. Class names are replaced according to the
122 * @param newCp the constant pool table used by the new copy.
126 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:EnclosingMethodAttribute
/external/webkit/Source/WebCore/loader/mac/
H A DDocumentLoaderMac.cpp41 const ResourceLoaderSet copy = loaders; local
42 ResourceLoaderSet::const_iterator end = copy.end();
43 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
50 const ResourceLoaderSet copy = loaders; local
51 ResourceLoaderSet::const_iterator end = copy.end();
52 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
/external/webkit/Source/WebCore/rendering/style/
H A DStyleFlexibleBoxData.h18 * You should have received a copy of the GNU Library General Public License
36 PassRefPtr<StyleFlexibleBoxData> copy() const { return adoptRef(new StyleFlexibleBoxData(*this)); } function in class:WebCore::StyleFlexibleBoxData
H A DStyleMarqueeData.h18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleMarqueeData> copy() const { return adoptRef(new StyleMarqueeData(*this)); } function in class:WebCore::StyleMarqueeData
H A DStyleVisualData.h18 * You should have received a copy of the GNU Library General Public License
37 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualData(*this)); } function in class:WebCore::StyleVisualData
/external/apache-http/src/org/apache/http/params/
H A DDefaultedHttpParams.java13 * with the License. You may obtain a copy of the License at
61 * Creates a copy of the local collection with the same default
63 public HttpParams copy() { method in class:DefaultedHttpParams
64 HttpParams clone = this.local.copy();
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtaskparent.cc90 ChildSet copy = *children_; local
91 for (ChildSet::iterator it = copy.begin(); it != copy.end(); ++it) {
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp29 namespace copy { namespace
31 Volatile(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy constructor may not be volatile}}
32 Volatile& operator=(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy assignment operator may not be volatile}}
61 NonConst nc; // makes implicit copy non-const
65 AssignmentRet1&& operator=(const AssignmentRet1&) = default; // expected-error {{explicitly-defaulted copy assignment operator must return 'copy::AssignmentRet1 &'}}
69 const AssignmentRet2& operator=(const AssignmentRet2&) = default; // expected-error {{explicitly-defaulted copy assignment operator must return 'copy::AssignmentRet2 &'}}
73 ConstAssignment& operator=(const ConstAssignment&) const = default; // expected-error {{an explicitly-defaulted copy assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}}
/external/dropbear/libtomcrypt/src/pk/asn1/der/set/
H A Dder_encode_set.c70 ltc_asn1_list *copy; local
74 /* make copy of list */
75 copy = XCALLOC(inlen, sizeof(*copy));
76 if (copy == NULL) {
82 copy[x] = list[x];
83 copy[x].used = x;
87 XQSORT(copy, inlen, sizeof(*copy), &qsort_helper);
90 err = der_encode_sequence_ex(copy, inle
[all...]

Completed in 8810 milliseconds

1234567891011>>