HomeSort by relevance Sort by last modified time
    Searched refs:cp (Results 51 - 75 of 745) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/opencore/oscl/oscl/osclutil/src/
oscl_string_containers.cpp 35 OSCL_EXPORT_REF void CHeapRep::set_rep(CHeapRep*& aRep, Oscl_DefAlloc& aAlloc, const char* cp, uint32 len)
40 && newrep->set(len, cp, aAlloc))
54 OSCL_EXPORT_REF void CHeapRep::set_rep(CHeapRep*& aRep, Oscl_DefAlloc& aAlloc, const oscl_wchar* cp, uint32 len)
59 && newrep->set(len, cp, aAlloc))
73 OSCL_EXPORT_REF void CHeapRep::append_rep(CHeapRep*& aRep, Oscl_DefAlloc& aAlloc, const char* cp, uint32 len)
78 && newrep->append((aRep) ? aRep->size : 0, (char*)((aRep) ? aRep->buffer : NULL), len, cp, aAlloc))
92 OSCL_EXPORT_REF void CHeapRep::append_rep(CHeapRep*& aRep, Oscl_DefAlloc& aAlloc, const oscl_wchar* cp, uint32 len)
97 && newrep->append((aRep) ? aRep->size : 0, (oscl_wchar*)((aRep) ? aRep->buffer : NULL), len, cp, aAlloc))
133 OSCL_EXPORT_REF bool CHeapRep::set(uint32 nsz, const char*cp, Oscl_DefAlloc &alloc)
149 if (cp)
    [all...]
  /bionic/libc/netbsd/resolv/
res_debug.c 313 p_cdnname(const u_char *cp, const u_char *msg, int len, FILE *file) {
317 if ((n = dn_expand(msg, msg + len, cp, name, sizeof name)) < 0)
323 return (cp + n);
327 p_cdname(const u_char *cp, const u_char *msg, FILE *file) {
328 return (p_cdnname(cp, msg, PACKETSZ, file));
335 p_fqnname(cp, msg, msglen, name, namelen)
336 const u_char *cp, *msg;
343 if ((n = dn_expand(msg, cp + msglen, cp, name, namelen)) < 0)
352 return (cp + n)
727 const char *cp; local
765 const char *cp; local
864 const char *cp, *maxcp; local
978 const u_char *cp = binary; local
    [all...]
  /external/e2fsprogs/e2fsck/
message.c 165 static void safe_print(const char *cp, int len)
170 len = strlen(cp);
173 ch = *cp++;
463 const char * cp; local
467 for (cp = msg; *cp; cp++) {
468 if (cp[0] == '@') {
469 cp++;
470 expand_at_expression(ctx, *cp, pctx, &first, recurse)
    [all...]
  /development/build/tools/
make_windows_sdk.sh 169 cp -v out/host/windows-x86/bin/*.{exe,dll} "$TOOLS"/
171 cp -v prebuilt/windows/swt/swt.jar "$LIB"/x86/
173 cp -v prebuilt/windows-x86_64/swt/swt.jar "$LIB"/x86_64/
177 cp "$TOOLS/sdklauncher.exe" "$TEMP_SDK_DIR/SDK Setup.exe"
181 # cp -v external/qemu/NOTICE "$TOOLS"/emulator_NOTICE.txt
184 [[ -n $NEED_MGWZ ]] && cp -v $CYG_MGWZ_PATH "$TOOLS"/
187 cp -v sdk/files/post_tools_install.bat "$LIB"/
188 cp -v sdk/files/find_java.bat "$LIB"/
189 cp -v sdk/apkbuilder/etc/apkbuilder.bat "$TOOLS"/
190 cp -v sdk/ddms/app/etc/ddms.bat "$TOOLS"
    [all...]
  /external/bluetooth/glib/build/win32/dirent/
dirent-zip 8 cp dirent.h dist/include
9 cp dirent.lib dist/lib
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmendian.h 160 #define _LTOH16_UA(cp) ((cp)[0] | ((cp)[1] << 8))
161 #define _LTOH32_UA(cp) ((cp)[0] | ((cp)[1] << 8) | ((cp)[2] << 16) | ((cp)[3] << 24))
162 #define _NTOH16_UA(cp) (((cp)[0] << 8) | (cp)[1]
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/
Makefile 10 cp -f $< $@
  /external/bluetooth/bluez/tools/
csr_h4.c 86 unsigned char cp[254], rp[254]; local
104 memset(cp, 0, sizeof(cp));
105 cp[0] = 0x01;
106 cp[1] = 0x00;
107 cp[2] = 0xfc;
108 cp[3] = (size * 2) + 1;
109 cp[4] = 0xc2;
110 memcpy(cp + 5, cmd, sizeof(cmd));
111 memcpy(cp + 15, value, length)
    [all...]
  /cts/tools/dx-tests/scripts/
validate-tests.sh 15 java -cp ./lib/junit.jar:$ANDROID_BUILD_TOP/out/target/common/cts/dxconverter/classout/ junit.textui.TestRunner dxc.junit.AllTests
  /dalvik/hit/test/
testparser 6 #java -Djava.compiler=NONE -Xdebug -Xrunjdwp:transport=dt_socket,address=53635,server=y,suspend=y -cp build com.android.hit.Main ../samples/android.hprof
8 java -cp build com.android.hit.Main ../samples/android.hprof
  /development/tools/idegen/
idegen.sh 12 java -cp $idegenjar Main
  /external/e2fsprogs/debian/
initrd-tools.e2fsprogs 5 cp /usr/share/e2fsprogs/initrd.ext3-add-journal \
7 cp /sbin/tune2fs $INITRDDIR/sbin
8 cp /usr/lib/e2initrd_helper $INITRDDIR/bin/e2initrd_helper
30 cp $i $INITRDDIR/$i
  /external/icu4c/samples/layout/
UnicodeReader.cpp 35 const char *cp = ""; local
53 cp = "UTF-16BE";
57 cp = "UTF-32LE";
60 cp = "UTF-16LE";
64 cp = "UTF-8";
67 cp = "SCSU";
71 cp = "UTF-32BE";
102 UnicodeString myText(byteBuffer, fileSize, cp);
  /dalvik/libcore/security/src/test/java/tests/security/cert/
CertPathCertPathRepTest.java 40 MyCertPath cp = new MyCertPath(testEncoding); local
41 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding);
46 cp.new MyCertPathRep(null, null);
60 MyCertPath cp = new MyCertPath(testEncoding); local
61 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding);
70 rep = cp.new MyCertPathRep("MyEncoding", new byte[] {(byte) 1, (byte) 2, (byte) 3 });
  /dalvik/libdex/
OptInvocation.c 52 char* cp; local
85 cp = absoluteFile + 1;
86 while (*cp != '\0') {
87 if (*cp == '/') {
88 *cp = '@';
90 cp++;
  /external/e2fsprogs/intl/
localealias.c 256 char *cp; local
262 cp = buf;
264 while (isspace ((unsigned char) cp[0]))
265 ++cp;
268 if (cp[0] != '\0' && cp[0] != '#')
270 alias = cp++;
271 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
272 ++cp;
    [all...]
l10nflist.c 181 char *cp;
217 cp = abs_filename;
220 memcpy (cp, dirlist, dirlist_len);
221 __argz_stringify (cp, dirlist_len, PATH_SEPARATOR);
222 cp += dirlist_len;
223 cp[-1] = '/';
226 cp = stpcpy (cp, language);
230 *cp++ = '_';
231 cp = stpcpy (cp, territory)
180 char *cp; local
    [all...]
  /external/openssl/crypto/evp/
names.c 106 const EVP_CIPHER *cp; local
108 cp=(const EVP_CIPHER *)OBJ_NAME_get(name,OBJ_NAME_TYPE_CIPHER_METH);
109 return(cp);
114 const EVP_MD *cp; local
116 cp=(const EVP_MD *)OBJ_NAME_get(name,OBJ_NAME_TYPE_MD_METH);
117 return(cp);
  /external/ppp/pppd/
eui64.h 95 #define eui64_get(ll, cp) do { \
96 eui64_copy((*cp), (ll)); \
97 (cp) += sizeof(eui64_t); \
100 #define eui64_put(ll, cp) do { \
101 eui64_copy((ll), (*cp)); \
102 (cp) += sizeof(eui64_t); \
  /bionic/libc/netbsd/
gethnamaddr.c 155 cp += (x); \
156 if (cp > eom) { \
175 const u_char *cp; local
212 cp = answer->buf;
218 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
247 while (ancount-- > 0 && cp < eom && !had_error) {
248 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
253 cp += n; /* name */
254 BOUNDS_CHECK(cp, 3 * INT16SZ + INT32SZ);
255 type = _getshort(cp);
520 const char *cp; local
723 char *cp, **q; local
836 char *tmpbuf, *ptr, **cp; local
    [all...]
  /external/bluetooth/glib/glib/gnulib/
printf-parse.c 48 const char *cp = format; /* pointer into format */ local
92 while (*cp != '\0')
94 char c = *cp++;
101 dp->dir_start = cp - 1;
112 if (*cp >= '0' && *cp <= '9')
116 for (np = cp; *np >= '0' && *np <= '9'; np++)
122 for (np = cp; *np >= '0' && *np <= '9'; np++)
128 cp = np + 1;
135 if (*cp == '\''
    [all...]
  /bionic/libc/netbsd/nameser/
ns_name.c 105 const u_char *cp; local
111 cp = src;
115 while ((n = *cp++) != 0) {
128 if ((l = labellen(cp - 1)) < 0) {
144 if ((m = decode_bitstring(&cp, dn, eom)) < 0)
153 c = *cp++;
210 char *cp; local
220 if ((cp = strchr(src, ']')) == NULL) {
224 if ((e = encode_bitsring(&src, cp + 2,
240 else if ((cp = strchr(digits, c)) != NULL)
340 const u_char *cp; local
643 const u_char *cp; local
742 const u_char *dn, *cp, *sp; local
799 const unsigned char *cp = *cpp; local
849 const char *cp = *bp; local
    [all...]
  /external/bluetooth/bluez/test/
bdaddr.c 64 ericsson_write_bd_addr_cp cp; local
66 memset(&cp, 0, sizeof(cp));
67 bacpy(&cp.bdaddr, bdaddr);
72 rq.cparam = &cp;
94 ericsson_store_in_flash_cp cp; local
96 memset(&cp, 0, sizeof(cp));
97 cp.user_id = user_id;
98 cp.flash_length = flash_length
122 unsigned char cp[254], rp[254]; local
172 unsigned char cp[254], rp[254]; local
206 ti_write_bd_addr_cp cp; local
234 bcm_write_bd_addr_cp cp; local
262 zeevo_write_bd_addr_cp cp; local
    [all...]
  /external/e2fsprogs/lib/ss/
test_ss.c 38 char *cp; local
64 cp = strchr(buf, '\n');
65 if (cp)
66 *cp = 0;
67 cp = strchr(buf, '\r');
68 if (cp)
69 *cp = 0;
  /external/oprofile/libop/
op_parse_event.c 65 char const * cp = events[i]; local
66 char * part = next_part(&cp);
76 fprintf(stderr, "Invalid event %s\n", cp);
82 part = next_part(&cp);
93 part = next_part(&cp);
102 part = next_part(&cp);
110 part = next_part(&cp);

Completed in 830 milliseconds

1 23 4 5 6 7 8 91011>>