HomeSort by relevance Sort by last modified time
    Searched defs:cp (Results 226 - 250 of 557) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/expr/
Expr.java 133 ConstPool cp = thisMethod.getConstPool(); local
145 addClass(list, pool.get(cp.getClassInfo(t)));
Instanceof.java 67 ConstPool cp = getConstPool(); local
70 String name = cp.getClassInfo(index);
99 ClassPool cp = thisClass.getClassPool(); local
104 = new CtClass[] { cp.get(javaLangObject) };
MethodCall.java 34 private int getNameAndType(ConstPool cp) {
40 return cp.getInterfaceMethodrefNameAndType(index);
42 return cp.getMethodrefNameAndType(index);
85 ConstPool cp = getConstPool(); local
91 cname = cp.getInterfaceMethodrefClassName(index);
93 cname = cp.getMethodrefClassName(index);
105 ConstPool cp = getConstPool(); local
106 int nt = getNameAndType(cp);
107 return cp.getUtf8Info(cp.getNameAndTypeName(nt))
128 ConstPool cp = getConstPool(); local
204 ClassPool cp = thisClass.getClassPool(); local
    [all...]
NewExpr.java 43 private int getNameAndType(ConstPool cp) {
49 return cp.getInterfaceMethodrefNameAndType(index);
51 return cp.getMethodrefNameAndType(index);
113 ConstPool cp = getConstPool(); local
115 String desc = cp.getMethodrefType(index);
133 ConstPool cp = getConstPool();
135 String desc = cp.getMethodrefType(index);
183 ClassPool cp = thisClass.getClassPool(); local
186 CtClass[] params = Descriptor.getParameterTypes(signature, cp);
187 CtClass newType = cp.get(newTypeName)
    [all...]
  /external/jhead/
jpgfile.c 200 int cp, ep, size; local
202 cp = ftell(infile);
205 fseek(infile, cp, SEEK_SET);
207 size = ep-cp;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
AbstractHeightMap.java 480 float cp = 1 - np; local
481 heightData[x + y * size] = neighAverage * np + heightData[x + y * size] * cp;
  /external/libmtp/examples/
sendtr.c 66 char *cp, *bp; local
79 cp = strrchr(buffer, '\n');
80 if ( cp != NULL ) *cp = '\0';
83 while ( bp != cp ) {
  /external/libpcap/
inet.c 106 const char *cp, *endcp; local
119 for (cp = name; cp < endcp && !isdigit((unsigned char)*cp); ++cp)
122 if (isdigit((unsigned char)*cp))
123 n = atoi(cp);
  /external/libppp/src/
ccp.c 349 u_char *cp, buff[100]; local
353 cp = buff;
381 if (cp + (*o)->val.hdr.len > buff + sizeof buff) {
385 memcpy(cp, &(*o)->val, (*o)->val.hdr.len);
386 cp += (*o)->val.hdr.len;
395 fsm_Output(fp, CODE_CONFIGREQ, fp->reqid, buff, cp - buff, MB_CCPOUT);
566 CcpDecodeConfig(struct fsm *fp, u_char *cp, u_char *end, int mode_type,
578 while (end >= cp + sizeof(opt->hdr)) {
579 if ((opt = fsm_readopt(&cp)) == NULL)
chap.c 491 char *cp; local
497 cp = chap->challenge.local;
502 *cp++ = 16;
504 *cp++ = (random() % 10) + '0';
510 *cp++ = 8; /* MS does 8 byte callenges :-/ */
512 *cp++ = 16; /* MS-CHAP-V2 does 16 bytes challenges */
515 *cp++ = random() % (CHAPCHALLENGELEN-16) + 16;
517 *cp++ = random() & 0xff;
519 memcpy(cp, authp->physical->dl->bundle->cfg.auth.name, len);
main.c 213 char *cp; local
221 cp = argv[arg] + 1;
222 newmode = Nam2mode(cp);
225 if (strcmp(cp, "nat") == 0) {
232 } else if (strcmp(cp, "alias") == 0) {
242 } else if (strncmp(cp, "unit", 4) == 0) {
244 if (cp[4] == '\0') {
252 sw->unit = atoi(cp + 4);
253 } else if (strcmp(cp, "quiet") == 0) {
mbuf.c 388 u_char *cp; local
392 for (cp = MBUF_CTOP(nbp); bp; bp = m_free(bp)) {
393 memcpy(cp, MBUF_CTOP(bp), bp->m_len);
394 cp += bp->m_len;
systems.c 320 char *cp; local
349 cp = strip(line);
351 switch (*cp) {
356 switch (DecodeCtrlCommand(cp+1, arg)) {
367 log_Printf(LogWARN, "%s: %s: Invalid command\n", filename, cp);
373 if ((cp = GetLabel(cp, filename, linenum)) == NULL)
376 if (strcmp(cp, name) == 0) {
385 cp = strip(line);
387 if (*cp == '\0') /* empty / comment *
    [all...]
  /external/libusb/libusb/
descriptor.c 46 char *cp; local
48 for (cp = descriptor; *cp; cp++) {
49 switch (*cp) {
  /external/mksh/src/
tree.c 715 char *cp, *buf; local
719 cp = buf;
720 while ((c = *cp++)) {
  /external/openssh/
addrmatch.c 318 char addrbuf[64], *mp, *cp; local
327 masklen = strtoul(mp, &cp, 10);
328 if (*mp == '\0' || *cp != '\0' || masklen > 128)
380 char *list, *cp, *o; local
391 while ((cp = strsep(&list, ",")) != NULL) {
392 neg = *cp == '!';
394 cp++;
395 if (*cp == '\0') {
400 r = addr_pton_cidr(cp, &match_addr, &masklen);
403 "network \"%.100s\"", cp);
440 char *list, *cp, *o; local
    [all...]
auth-options.c 97 const char *cp; local
107 cp = "cert-authority";
108 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
110 opts += strlen(cp);
113 cp = "no-port-forwarding";
114 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
117 opts += strlen(cp);
120 cp = "no-agent-forwarding"
    [all...]
auth.c 430 char *cp; local
459 if ((cp = dirname(buf)) == NULL) {
463 strlcpy(buf, cp, sizeof(buf));
auth2-jpake.c 275 char *cp; local
313 cp = strchr(authctxt->pw->pw_passwd + 3, '$');
314 if (cp != NULL) {
315 salt_len = (cp - authctxt->pw->pw_passwd) + 1;
authfile.c 89 u_char buf[100], *cp; local
148 cp = buffer_append_space(&encrypted, buffer_len(&buffer));
152 cipher_crypt(&ciphercontext, cp,
422 u_char *cp; local
471 cp = buffer_append_space(&decrypted, buffer_len(&copy));
476 cipher_crypt(&ciphercontext, cp,
758 char *cp; local
765 cp = line;
766 switch (*cp) {
773 if (strncmp(cp, "-----BEGIN", 10) == 0
897 char *cp; local
    [all...]
cipher.c 159 char *cipher_list, *cp; local
164 cipher_list = cp = xstrdup(names);
165 for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
166 (p = strsep(&cp, CIPHER_SEP))) {
hostfile.c 158 char *cp; local
161 for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++)
164 if (key_read(ret, &cp) != 1)
168 for (; *cp == ' ' || *cp == '\t'; cp++)
172 *cpp = cp;
197 char marker[32], *sp, *cp = *cpp; local
244 char *cp, *cp2, *hashed_host; local
    [all...]
moduli.c 452 char *cp, *lp; local
486 cp = &lp[14]; /* (skip) */
489 in_type = strtoul(cp, &cp, 10);
492 in_tests = strtoul(cp, &cp, 10);
500 in_tries = strtoul(cp, &cp, 10);
503 in_size = strtoul(cp, &cp, 10)
    [all...]
  /external/openssh/openbsd-compat/
getrrsetbyname.c 93 #define GETSHORT(s, cp) { \
94 register u_char *t_cp = (u_char *)(cp); \
98 (cp) += INT16SZ; \
103 #define GETLONG(l, cp) { \
104 register u_char *t_cp = (u_char *)(cp); \
110 (cp) += INT32SZ; \
388 const u_char *cp; local
396 cp = answer;
399 memcpy(&resp->header, cp, HFIXEDSZ);
400 cp += HFIXEDSZ
    [all...]
port-aix.c 78 char *cp; local
81 cp = xmalloc(len);
83 i = snprintf(cp, len, "LOGNAME=%s%cNAME=%s%c", pw->pw_name, '\0',
85 if (usrinfo(SETUINFO, cp, i) == -1)
89 xfree(cp);
436 char *cp, *grplist, *grp; local
443 if ((cp = grplist = getgrset(user)) == NULL)
468 free(cp);

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011>>