/external/javassist/src/main/javassist/bytecode/ |
EnclosingMethodAttribute.java | 31 EnclosingMethodAttribute(ConstPool cp, int n, DataInputStream in) 34 super(cp, n, in); 40 * @param cp a constant pool table. 45 public EnclosingMethodAttribute(ConstPool cp, String className, 47 super(cp, tag); 48 int ci = cp.addClassInfo(className); 49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc); 62 * @param cp a constant pool table. 65 public EnclosingMethodAttribute(ConstPool cp, String className) { 66 super(cp, tag) 102 ConstPool cp = getConstPool(); local 112 ConstPool cp = getConstPool(); local [all...] |
FieldInfo.java | 38 private FieldInfo(ConstPool cp) { 39 constPool = cp; 47 * @param cp a constant pool table 53 public FieldInfo(ConstPool cp, String fieldName, String desc) { 54 this(cp); 55 name = cp.addUtf8Info(fieldName); 57 descriptor = cp.addUtf8Info(desc); 60 FieldInfo(ConstPool cp, DataInputStream in) throws IOException { 61 this(cp); 78 * @param cp the destinatio [all...] |
/external/javassist/src/main/javassist/bytecode/annotation/ |
ClassMemberValue.java | 39 public ClassMemberValue(int index, ConstPool cp) { 40 super('c', cp); 49 public ClassMemberValue(String className, ConstPool cp) { 50 super('c', cp); 58 public ClassMemberValue(ConstPool cp) { 59 super('c', cp); 63 Object getValue(ClassLoader cl, ClassPool cp, Method m) 98 String v = cp.getUtf8Info(valueIndex); 109 valueIndex = cp.addUtf8Info(setTo); 123 writer.classInfoIndex(cp.getUtf8Info(valueIndex)) [all...] |
EnumMemberValue.java | 43 public EnumMemberValue(int type, int value, ConstPool cp) { 44 super('e', cp); 53 public EnumMemberValue(ConstPool cp) { 54 super('e', cp); 58 Object getValue(ClassLoader cl, ClassPool cp, Method m) 82 return Descriptor.toClassName(cp.getUtf8Info(typeIndex)); 91 typeIndex = cp.addUtf8Info(Descriptor.of(typename)); 98 return cp.getUtf8Info(valueIndex); 105 valueIndex = cp.addUtf8Info(name); 116 writer.enumConstValue(cp.getUtf8Info(typeIndex), getValue()) [all...] |
/external/e2fsprogs/resize/ |
test_extent.c | 22 char *cp, *cmd, *arg1, *arg2; local 43 cp = strchr(buf, '\n'); 44 if (cp) 45 *cp = '\0'; 53 cp = strchr(buf, ' '); 54 if (cp) { 55 *cp++ = '\0'; 56 arg1 = cp; 59 cp = strchr(cp, ' '); [all...] |
/external/tcpdump/ |
print-sl.c | 162 print_sl_change(const char *str, register const u_char *cp) 166 if ((i = *cp++) == 0) { 167 i = EXTRACT_16BITS(cp); 168 cp += 2; 171 return (cp); 175 print_sl_winchange(register const u_char *cp) 179 if ((i = *cp++) == 0) { 180 i = EXTRACT_16BITS(cp); 181 cp += 2; 187 return (cp); 194 register const u_char *cp = chdr; local [all...] |
print-ip.c | 61 ip_printroute(register const u_char *cp, u_int length) 72 ptr = cp[2] - 1; 74 printf(" [bad ptr %u]", cp[2]); 77 printf(" %s", ipaddr_string(&cp[len])); 95 const u_char *cp; local 98 cp = (const u_char *)(ip + 1); 101 for (; length > 0; cp += len, length -= len) { 104 TCHECK(*cp); 105 tt = *cp; 111 TCHECK(cp[1]) 368 const u_char *cp; member in struct:ip_print_demux_state [all...] |
/bionic/libc/stdlib/ |
getenv.c | 51 char **p, *cp; local 58 for (p = environ; (cp = *p) != NULL; ++p) { 59 for (np = name, i = len; i && *cp; i--) 60 if (*cp++ != *np++) 62 if (i == 0 && *cp++ == '=') { 64 return (cp);
|
/device/google/accessory/demokit/ |
make-download.sh | 32 cp -r demokit/firmware/* ADK_release_${dateStamp}/arduino_libs/AndroidAccessory/examples 35 cp -r demokit/app ADK_release_${dateStamp} 36 cp -r demokit/hardware ADK_release_${dateStamp} 39 cp demokit/COPYING ADK_release_${dateStamp} 40 cp demokit/README ADK_release_${dateStamp} 43 cp -r arduino/* ADK_release_${dateStamp}/arduino_libs
|
/external/javassist/src/main/javassist/convert/ |
TransformNew.java | 34 public void initialize(ConstPool cp, CodeAttribute attr) { 51 ConstPool cp) throws CannotCompileException 57 if (cp.getClassInfo(index).equals(classname)) { 81 int typedesc = cp.isConstructor(classname, index); 83 int methodref = computeMethodref(typedesc, cp); 93 private int computeMethodref(int typedesc, ConstPool cp) { 94 int classIndex = cp.addClassInfo(trapClass); 95 int mnameIndex = cp.addUtf8Info(trapMethod); 96 typedesc = cp.addUtf8Info( 98 cp.getUtf8Info(typedesc))) [all...] |
TransformFieldAccess.java | 45 public void initialize(ConstPool cp, CodeAttribute attr) { 46 if (constPool != cp) 57 CodeIterator iterator, ConstPool cp) 64 = TransformReadField.isField(clazz.getClassPool(), cp, 68 int nt = cp.addNameAndTypeInfo(newFieldname, 70 newIndex = cp.addFieldrefInfo( 71 cp.addClassInfo(newClassname), nt); 72 constPool = cp;
|
/external/libppp/src/ |
acf.c | 62 const u_char cp[2] = { HDLC_ADDR, HDLC_UI }; local 65 bp = m_prepend(bp, cp, 2, 0); 77 u_char cp[2]; local 84 if (mbuf_View(bp, cp, 2) == 2) { 87 bp = mbuf_Read(bp, cp, 2); 88 if (cp[0] != HDLC_ADDR) { 91 log_Printf(LogDEBUG, "acf_LayerPull: addr 0x%02x\n", cp[0]); 95 if (cp[1] != HDLC_UI) { 98 log_Printf(LogDEBUG, "acf_LayerPull: control 0x%02x\n", cp[1]); 103 } else if (cp[0] == HDLC_ADDR && cp[1] == HDLC_UI) [all...] |
proto.c | 58 u_char cp[2]; local 60 cp[0] = proto >> 8; 61 cp[1] = proto & 0xff; 63 if (comp && cp[0] == 0) 64 bp = m_prepend(bp, cp + 1, 1, extra); 66 bp = m_prepend(bp, cp, 2, extra); 88 u_char cp[2]; local 91 if ((got = mbuf_View(bp, cp, 2)) == 0) { 96 *proto = cp[0]; 102 bp = mbuf_Read(bp, cp, 2) [all...] |
/external/openssh/openbsd-compat/ |
inet_aton.c | 70 inet_addr(const char *cp) 74 if (inet_aton(cp, &val)) 81 * Check whether "cp" is a valid ascii representation 88 inet_aton(const char *cp, struct in_addr *addr) 96 c = *cp; 107 c = *++cp; 109 base = 16, c = *++cp; 116 c = *++cp; 120 c = *++cp; 134 c = *++cp; [all...] |
/system/core/liblog/ |
event_tag_map.c | 228 const char* cp; local 231 cp = (const char*) map->mapAddr; 232 endp = cp + map->mapLen; 236 while (cp < endp) { 237 if (*cp == '\n') { 240 if (isCharDigit(*cp)) { 244 } else if (isCharWhitespace(*cp)) { 253 cp++; 265 char* cp; local 268 cp = (char*) map->mapAddr 335 char* cp = *pData; local [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CollectionCertStoreParametersTest.java | 57 CertStoreParameters cp = new CollectionCertStoreParameters(); local 59 cp instanceof CollectionCertStoreParameters); 68 CollectionCertStoreParameters cp = new CollectionCertStoreParameters(); local 69 Collection c = cp.getCollection(); 120 CollectionCertStoreParameters cp = local 123 assertTrue("isRefUsed_1", certificates == cp.getCollection()); 125 assertTrue("isEmpty", cp.getCollection().isEmpty()); 130 assertTrue("isRefUsed_2", certificates.equals(cp.getCollection())); 200 CollectionCertStoreParameters cp = local 202 String s = cp.toString() 213 CollectionCertStoreParameters cp = local 224 CollectionCertStoreParameters cp = new CollectionCertStoreParameters(); local 234 CollectionCertStoreParameters cp = local [all...] |
/external/dropbear/ |
compat.c | 235 register char **sp, *cp; local 264 cp = strings; 266 while (fgets(cp, flen - (cp - strings), fp) != NULL) { 267 while (*cp != '#' && *cp != '/' && *cp != '\0') 268 cp++; 269 if (*cp == '#' || *cp == '\0' [all...] |
scpmisc.c | 97 char *cp; local 100 cp = xmalloc(len); 101 strncpy(cp, str, len); 102 return cp; 116 colon(char *cp) 120 if (*cp == ':') /* Leading colon is part of file name. */ 122 if (*cp == '[') 125 for (; *cp; ++cp) { 126 if (*cp == '@' && *(cp+1) == '[' 143 char *cp; local 170 char *cp; local [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
CollectionCertStoreParametersTest.java | 48 CertStoreParameters cp = new CollectionCertStoreParameters(); local 50 cp instanceof CollectionCertStoreParameters); 58 CollectionCertStoreParameters cp = new CollectionCertStoreParameters(); local 59 Collection c = cp.getCollection(); 101 CollectionCertStoreParameters cp = local 104 assertTrue("isRefUsed_1", certificates == cp.getCollection()); 106 assertTrue("isEmpty", cp.getCollection().isEmpty()); 111 assertTrue("isRefUsed_2", certificates.equals(cp.getCollection())); 173 CollectionCertStoreParameters cp = local 175 String s = cp.toString() 185 CollectionCertStoreParameters cp = local 195 CollectionCertStoreParameters cp = new CollectionCertStoreParameters(); local 204 CollectionCertStoreParameters cp = local [all...] |
/external/icu4c/test/perf/usetperf/ |
usetperf.cpp | 53 for (UChar32 cp=0; cp<0x110000; ++cp) { 54 if (u_charType(cp) == prop) { 55 bs.set((int32_t) cp); 69 for (UChar32 cp=0; cp<0x110000; ++cp) { 70 if (bs.get((int32_t) cp)) { 71 us.add(cp); [all...] |
/external/valgrind/main/coregrind/m_initimg/ |
initimg-pathscan.c | 66 char *cp, *entry; local 73 entry = cp = colsep; 76 end = (*cp == '\0'); 78 if (*cp == ':' || *cp == '\0') { 79 char save = *cp; 81 *cp = '\0'; 83 *cp = save; 86 *cp = save; 87 entry = cp+1 [all...] |
/external/compiler-rt/BlocksRuntime/ |
runtime.c | 623 char *cp = buffer; local 625 sprintf(cp, "NULL passed to _Block_dump\n"); 632 cp += sprintf(cp, "^%p (new layout) =\n", (void *)closure); 634 cp += sprintf(cp, "isa: NULL\n"); 637 cp += sprintf(cp, "isa: stack Block\n"); 640 cp += sprintf(cp, "isa: malloc heap Block\n") 689 char *cp = buffer; local [all...] |
/external/clang/test/CXX/expr/expr.cast/ |
p4.cpp | 8 void casting_away_constness(const B &b, const C &c, const B *bp, const C *cp) { 16 // CHECK: DeclRefExpr {{.*}} ParmVar {{.*}} 'cp' 17 (void)(B*)cp;
|
/external/e2fsprogs/lib/ss/ |
error.c | 39 register char *cp; local 45 cp = ret_val; 48 *cp++ = *cp1++; 49 *cp++ = ' '; 50 *cp++ = '('; 53 *cp++ = *cp1++; 54 *cp++ = ')'; 55 *cp = '\0';
|
/frameworks/base/tests/CoreTests/ |
run_junit.sh | 9 adb shell exec dalvikvm -cp system/app/MoreTests.apk junit.textui.TestRunner $*
|