/external/kernel-headers/original/linux/sunrpc/ |
svc.h | 174 char *cp = (char *)p; local 176 return cp >= (char*)vec->iov_base 177 && cp <= (char*)vec->iov_base + vec->iov_len; 184 char *cp = (char*)p; local 186 vec->iov_len = cp - (char*)vec->iov_base;
|
/external/openssl/ssl/ |
s2_lib.c | 420 const SSL_CIPHER *cp; local 426 cp = OBJ_bsearch_ssl_cipher_id(&c, ssl2_ciphers, SSL2_NUM_CIPHERS); 427 if ((cp == NULL) || (cp->valid == 0)) 430 return cp;
|
/external/dnsmasq/src/ |
rfc1035.c | 33 unsigned char *cp = (unsigned char *)name, *p = *pp, *p1 = NULL; local 38 *cp = 0; 56 if (cp != (unsigned char *)name) 57 cp--; 58 *cp = 0; /* terminate: lose final period */ 60 else if (*cp != 0) 109 if (cp - (unsigned char *)name + digs + 9 >= MAXDNAME) 114 *cp++ = '\\'; 115 *cp++ = '['; 116 *cp++ = 'x' 218 char *cp; local [all...] |
/bionic/libc/regex/ |
regcomp.c | 770 const struct cclass *cp; local 778 for (cp = cclasses; cp->name != NULL; cp++) 779 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') 781 if (cp->name == NULL) { 787 u = cp->chars; 790 for (u = cp->multis; *u != '\0'; u += strlen(u) + 1) 834 const struct cname *cp; local 1419 char *cp; local [all...] |
/dalvik/dexdump/ |
DexDump.c | 183 char* cp; local 194 for (cp = newStr; *cp != '\0'; cp++) { 195 if (*cp == '$') 196 *cp = '.'; 324 char* cp; local 332 cp = str = (char*) malloc(count * (kLongest+1) +1); 338 if (cp != str) 339 *cp++ = ' ' 1215 char* cp = tmpBuf; local 1372 char* cp; local [all...] |
/development/simulator/wrapsim/ |
SimMgr.c | 944 unsigned char* cp = outBuf; local 947 memcpy(cp, &when, sizeof(int)); 948 cp += sizeof(int); 949 memcpy(cp, &logPrio, sizeof(int)); 950 cp += sizeof(int); 951 memcpy(cp, &pid, sizeof(int)); 952 cp += sizeof(int); 953 memcpy(cp, tag, tagLen); 954 cp += tagLen; 955 memcpy(cp, message, messageLen) [all...] |
/external/bison/lib/ |
argmatch.c | 258 const char *cp; 269 if ((cp = getenv ("VERSION_CONTROL"))) 270 backup_type = XARGMATCH ("$VERSION_CONTROL", cp, 257 const char *cp; local
|
/external/chromium/third_party/icu/source/common/ |
ucnvlat1.c | 140 UChar32 cp; local 160 cp=cnv->fromUChar32; 163 sourceIndex= cp==0 ? 0 : -1; 175 if(cp!=0 && targetCapacity>0) { 265 cp=c; 266 if(!U_IS_SURROGATE(cp)) { 268 } else if(U_IS_SURROGATE_LEAD(cp)) { 275 cp=U16_GET_SUPPLEMENTARY(cp, trail); 284 cnv->fromUChar32=cp; [all...] |
/external/chromium/third_party/icu/source/tools/genren/ |
Makefile | 71 -cp urename.h urename.h.old 85 cp $(TOP)/common/unicode/urename.h $(TOP)/common/unicode/urename.h.old 86 cp urename.h $(TOP)/common/unicode/
|
/external/dropbear/ |
fake-rfc2553.c | 162 char *cp; local 164 port = strtol(servname, &cp, 10); 165 if (port > 0 && port <= 65535 && *cp == '\0')
|
/external/grub/util/ |
mkbimage | 170 cp="e2cp"; 173 cp="mcopy"; 176 cp=""; 180 if [ "$offset" = 0 ] && which $cp > /dev/null ; then 185 $cp ${image}1/$file ${image}:$file 191 cp -a ${image}1/* ${image}.mnt/ && sync
|
/external/icu4c/common/ |
ucnvlat1.c | 140 UChar32 cp; local 160 cp=cnv->fromUChar32; 163 sourceIndex= cp==0 ? 0 : -1; 175 if(cp!=0 && targetCapacity>0) { 265 cp=c; 266 if(!U_IS_SURROGATE(cp)) { 268 } else if(U_IS_SURROGATE_LEAD(cp)) { 275 cp=U16_GET_SUPPLEMENTARY(cp, trail); 284 cnv->fromUChar32=cp; [all...] |
/external/icu4c/tools/genren/ |
Makefile | 71 -cp urename.h urename.h.old 85 cp $(TOP)/common/unicode/urename.h $(TOP)/common/unicode/urename.h.old 86 cp urename.h $(TOP)/common/unicode/
|
/hardware/msm7k/librpc/rpc/ |
xdr.h | 89 extern bool_t xdr_char (XDR *xdr, char *cp); 90 extern bool_t xdr_u_char (XDR *xdr, u_char *cp); 100 extern bool_t xdr_opaque (XDR *xdr, caddr_t cp, u_int cnt);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/ |
assoc_container.hpp | 334 gp_hash_table(const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp) 335 : base_type(h, e, cp) { } 343 gp_hash_table(const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, 345 : base_type(h, e, cp, p) { } 354 gp_hash_table(const hash_fn& h, const eq_fn& e, const comb_probe_fn& cp, 356 : base_type(h, e, cp, p, rp) { } 394 const comb_probe_fn& cp) 395 : base_type(h, e, cp) 408 const comb_probe_fn& cp, const probe_fn& p) 409 : base_type(h, e, cp, p [all...] |
/dalvik/dexopt/ |
OptMain.c | 467 char* cp; local 476 cp = bootClassPath = (char*) malloc(bcpLen +1); 483 *cp++ = ':'; 484 memcpy(cp, *argp, strLen); 485 cp += strLen; 487 *cp = '\0';
|
/external/bison/build-aux/ |
missing | 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 253 cp "$SRCFILE" lex.yy.c
|
/external/chromium/sdch/open-vcdiff/ |
missing | 226 cp "$SRCFILE" y.tab.c 230 cp "$SRCFILE" y.tab.h 256 cp "$SRCFILE" lex.yy.c
|
/external/chromium/third_party/libevent/ |
missing | 216 cp "$SRCFILE" y.tab.c 220 cp "$SRCFILE" y.tab.h 246 cp "$SRCFILE" lex.yy.c
|
/external/dbus/ |
missing | 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 253 cp "$SRCFILE" lex.yy.c
|
/external/elfutils/config/ |
missing | 199 cp "$SRCFILE" y.tab.c 203 cp "$SRCFILE" y.tab.h 229 cp "$SRCFILE" lex.yy.c
|
/external/genext2fs/ |
missing | 223 cp "$SRCFILE" y.tab.c 227 cp "$SRCFILE" y.tab.h 253 cp "$SRCFILE" lex.yy.c
|
/external/iptables/extensions/ |
libip6t_tcp.c | 45 char *cp; local 48 if ((cp = strchr(buffer, ':')) == NULL) 51 *cp = '\0'; 52 cp++; 55 ports[1] = cp[0] ? parse_port(cp, "tcp") : 0xFFFF;
|
libipt_dccp.c | 64 char *cp; local 68 if ((cp = strchr(buffer, ':')) == NULL) { 72 *cp = '\0'; 73 cp++; 76 ports[1] = cp[0] ? parse_port(cp, "dccp") : 0xFFFF;
|
libipt_tcp.c | 46 char *cp; local 49 if ((cp = strchr(buffer, ':')) == NULL) 52 *cp = '\0'; 53 cp++; 56 ports[1] = cp[0] ? parse_port(cp, "tcp") : 0xFFFF;
|