Searched refs:copy (Results 1 - 25 of 1782) sorted by relevance

1234567891011>>

/macosx-10.10.1/BerkeleyDB-21/db/clib/
H A Dstrdup.c52 char *copy; local
55 if (!(copy = malloc((u_int)len)))
57 memcpy(copy, str, len);
58 return (copy);
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dstrdup.c39 char *copy; local
42 if (!(copy = malloc(len)))
44 memcpy(copy, str, len);
45 return (copy);
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dstrdup.c44 char *copy; local
47 if ((copy = malloc(len)) == NULL)
49 memcpy(copy, str, len);
50 return (copy);
H A Dstrndup.c43 char *copy; local
48 if ((copy = malloc(len + 1)) == NULL)
50 memcpy(copy, str, len);
51 copy[len] = '\0';
52 return (copy);
H A Dwcsdup.c36 wchar_t *copy; local
40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
42 return (wmemcpy(copy, s, len));
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/
H A Dautogen.sh3 libtoolize --force --copy
6 automake --foreign --add-missing --copy
/macosx-10.10.1/tcpdump-61/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
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...]
/macosx-10.10.1/OpenPAM-20/openpam/
H A Dautogen.sh7 libtoolize --copy --force
/macosx-10.10.1/Security-57031.1.35/securityd/libsecurity_agent/lib/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.10.1/Security-57031.1.35/securityd/libsecurity_agent/security_agent_client/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.10.1/Security-57031.1.35/securityd/security_agent_client/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.10.1/Security-57031.1.35/securityd/security_agent_server/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.10.1/libsecurity_agent-55000/lib/
H A Dsa_types.h7 * a copy of the License at http://www.apple.com/publicsource and read it before
49 #define BLOB(copy) copy, copy.length(), copy
50 #define BLOB_OUT(copy) &copy, &copy##Length, &copy##Base
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dwcsdup.c9 * Permission to use or copy this software for any purpose is hereby granted
29 wchar_t *copy; local
35 copy = malloc(len * sizeof (wchar_t));
37 if (!copy)
40 return wmemcpy(copy, str, len);
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dfieldpos.h14 * 07/17/98 stephen Added default/copy ctors, and operators =, ==, !=
137 * @param copy the object to be copied from.
140 FieldPosition(const FieldPosition& copy) argument
141 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
151 * @param copy the object to be copied from.
154 FieldPosition& operator=(const FieldPosition& copy);
264 FieldPosition::operator=(const FieldPosition& copy) argument
[all...]
/macosx-10.10.1/OpenSSL098-52/src/demos/tunala/
H A Dautogunk.sh18 libtoolize --copy --force
19 automake --foreign --add-missing --copy
/macosx-10.10.1/SmartcardCCID-55008/ccid/ccid/
H A Dbootstrap8 libtoolize --copy --force --automake
11 automake --add-missing --copy --force --foreign
/macosx-10.10.1/libedit-40/src/
H A Dwcsdup.c9 * Permission to use or copy this software for any purpose is hereby granted
29 wchar_t *copy; local
35 copy = malloc(len * sizeof (wchar_t));
37 if (!copy)
40 return wmemcpy(copy, str, len);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBackForwardListItem.h39 @property (readonly, copy) NSURL *URL;
43 @property (readonly, copy) NSString *title;
47 @property (readonly, copy) NSURL *initialURL;
H A DWKNavigationActionInternal.h38 @property (nonatomic, readwrite, copy) WKFrameInfo *sourceFrame;
39 @property (nonatomic, readwrite, copy) WKFrameInfo *targetFrame;
41 @property (nonatomic, readwrite, copy) NSURLRequest *request;
43 @property (nonatomic, readwrite, copy, setter=_setOriginalURL:) NSURL *_originalURL;
/macosx-10.10.1/libclosure-65/objectTests/
H A Dbyrefstruct.c22 BobTheStruct copy; local
33 memset(&copy, 0x2A, sizeof(copy));
41 copy = fiddly;
44 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...]
/macosx-10.10.1/SecurityTokend-55108/lib/
H A Dtdtransit.h9 * compliance with the License. Please obtain a copy of the License at
57 #define COPY(copy) copy, copy.length(), copy
58 #define COPYFLAT(copy) copy, copy##Length, copy
59 #define COPY_OUT(copy)
[all...]
/macosx-10.10.1/SecurityTokend-55108/security_tokend_client/
H A Dtdtransit.h9 * compliance with the License. Please obtain a copy of the License at
57 #define COPY(copy) copy, copy.length(), copy
58 #define COPYFLAT(copy) copy, copy##Length, copy
59 #define COPY_OUT(copy)
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DWebCrossThreadCopier.cpp39 UniqueIDBDatabaseIdentifier CrossThreadCopierBase<false, false, UniqueIDBDatabaseIdentifier>::copy(const UniqueIDBDatabaseIdentifier& identifier) function in class:WebCore::CrossThreadCopierBase
44 IDBIdentifier CrossThreadCopierBase<false, false, IDBIdentifier>::copy(const IDBIdentifier& transactionIdentifier) function in class:WebCore::CrossThreadCopierBase
49 Vector<char> CrossThreadCopierBase<false, false, Vector<char>>::copy(const Vector<char>& vector) function in class:WebCore::CrossThreadCopierBase
56 Vector<int64_t> CrossThreadCopierBase<false, false, Vector<int64_t>>::copy(const Vector<int64_t>& vector) function in class:WebCore::CrossThreadCopierBase
63 Vector<uint8_t> CrossThreadCopierBase<false, false, Vector<uint8_t>>::copy(const Vector<uint8_t>& vector) function in class:WebCore::CrossThreadCopierBase
70 Vector<Vector<IDBKeyData>> CrossThreadCopierBase<false, false, Vector<Vector<IDBKeyData>>>::copy(const Vector<Vector<IDBKeyData>>& vector) function in class:WebCore::CrossThreadCopierBase
77 result.last().append(WebCore::CrossThreadCopier<IDBKeyData>::copy(key));
83 SecurityOriginData CrossThreadCopierBase<false, false, SecurityOriginData>::copy(const SecurityOriginData& securityOriginData) function in class:WebCore::CrossThreadCopierBase
88 ASCIILiteral CrossThreadCopierBase<false, false, ASCIILiteral>::copy(const ASCIILiteral& literal) function in class:WebCore::CrossThreadCopierBase

Completed in 123 milliseconds

1234567891011>>