HomeSort by relevance Sort by last modified time
    Searched defs:tok (Results 1 - 25 of 56) sorted by null

1 2 3

  /bionic/libc/string/
strsep.c 52 char *tok; local
56 for (tok = s;;) {
66 return (tok);
strtok.c 45 char *tok; local
65 tok = s - 1;
81 return (tok);
  /external/tcpdump/missing/
strsep.c 64 char *tok; local
68 for (tok = s;;) {
78 return (tok);
  /external/dropbear/
cli-auth.c 139 unsigned char * tok = NULL; local
195 tok = methods; /* tok stores the next method we'll compare */
198 TRACE(("auth method '%s'", tok))
200 if (strncmp(AUTH_METHOD_PUBKEY, tok,
206 if (strncmp(AUTH_METHOD_INTERACT, tok,
212 if (strncmp(AUTH_METHOD_PASSWORD, tok,
217 tok = &methods[i+1]; /* Must make sure we don't use it after the
  /external/tcpdump/
print-llc.c 47 static struct tok llc_values[] = {
66 static struct tok llc_cmd_values[] = {
78 static const struct tok llc_flag_values[] = {
89 static const struct tok llc_ig_flag_values[] = {
96 static const struct tok llc_supervisory_values[] = {
104 static const struct tok cisco_values[] = {
111 static const struct tok bridged_values[] = {
126 static const struct tok null_values[] = {
132 const struct tok *tok; member in struct:oui_tok
391 const struct tok *tok = null_values; local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 131 Token tok = currentToken.next; local
134 if (tok.kind == 0) {
138 retval += add_escapes(tok.image);
139 tok = tok.next;
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 131 Token tok = currentToken.next; local
134 if (tok.kind == 0) {
138 retval += add_escapes(tok.image);
139 tok = tok.next;
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 131 Token tok = currentToken.next; local
134 if (tok.kind == 0) {
138 retval += add_escapes(tok.image);
139 tok = tok.next;
  /packages/apps/Email/src/org/apache/commons/io/
FileSystemUtils.java 333 StringTokenizer tok = new StringTokenizer(line2, " "); local
334 if (tok.countTokens() < 4) {
336 if (tok.countTokens() == 1 && lines.size() >= 3) {
338 tok = new StringTokenizer(line3, " ");
345 tok.nextToken(); // Ignore Filesystem
347 tok.nextToken(); // Ignore 1K-blocks
348 tok.nextToken(); // Ignore Used
349 String freeSpace = tok.nextToken();
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 214 OIDTokenizer tok = new OIDTokenizer(identifier); local
219 Integer.parseInt(tok.nextToken()) * 40
220 + Integer.parseInt(tok.nextToken()));
222 while (tok.hasMoreTokens())
224 String token = tok.nextToken();
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
DefaultHostnameVerifier.java 270 String tok = st.nextToken(); local
271 int x = tok.indexOf("CN=");
273 cnList.add(tok.substring(x + 3));
  /external/iproute2/misc/
lnstat_util.c 122 char *tok; local
125 tok = strtok(buf, " \t\n");
128 strncpy(lf->fields[i].name, tok, LNSTAT_MAX_FIELD_NAME_LEN);
131 tok = strtok(NULL, " \t\n");
132 if (!tok) {
lnstat.c 254 char *tmp, *tok; local
277 for (tok = strtok(tmp, ",");
278 tok;
279 tok = strtok(NULL, ",")) {
287 fp.params[fp.num++].name = tok;
298 for (tok = strtok(tmp, ",");
299 tok;
300 tok = strtok(NULL, ",")) {
301 len = strtoul(tok, NULL, 0);
  /external/iptables/extensions/
libip6t_hashlimit.c 113 char *tok; local
121 for (tok = strtok(arg, ",|");
122 tok;
123 tok = strtok(NULL, ",|")) {
124 if (!strcmp(tok, "dstip"))
126 else if (!strcmp(tok, "srcip"))
128 else if (!strcmp(tok, "srcport"))
130 else if (!strcmp(tok, "dstport"))
libipt_hashlimit.c 113 char *tok; local
121 for (tok = strtok(arg, ",|");
122 tok;
123 tok = strtok(NULL, ",|")) {
124 if (!strcmp(tok, "dstip"))
126 else if (!strcmp(tok, "srcip"))
128 else if (!strcmp(tok, "srcport"))
130 else if (!strcmp(tok, "dstport"))
  /frameworks/base/opengl/tools/glgen/src/
CFunc.java 133 String tok = tokens[i++]; local
135 if (tok.equals("(")) {
138 if (tok.equals(")")) {
144 String argTypeName = tok;
  /hardware/ril/rild/
rild.c 71 char * tok; local
74 while ((tok = strtok(s, " \0"))) {
75 argv[count] = tok;
  /cts/tools/dasm/src/dasm/
Scanner.java 283 token tok; local
286 if ((tok = ReservedWords.get(str)) != null) return tok;
459 token tok; local
462 if ((tok = ReservedWords.get(str)) != null) return tok;
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
ResourceBundleTest.java 147 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator); local
151 while (tok.hasMoreTokens()) {
152 String path = tok.nextToken();
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
Lexer.java 475 int tok; local
481 tok = (null != itok) ? itok.intValue() : 0;
485 tok = 0;
489 tok = 0;
492 return tok;
509 int tok = getKeywordToken(m_processor.m_token); local
511 switch (tok)
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 268 String tok = st.nextToken(); local
269 int x = tok.indexOf("CN=");
271 cnList.add(tok.substring(x + 3));
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 139 StringTokenizer tok = new StringTokenizer(qop,","); local
140 while (tok.hasMoreTokens()) {
141 String variant = tok.nextToken().trim();
  /external/expat/lib/
xmltok_impl.c 226 int tok; local
240 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
254 return tok;
264 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
273 return tok;
610 int tok = PREFIX(scanRef)(enc, ptr + MINBPC(enc), end, &ptr); local
611 if (tok <= 0) {
612 if (tok == XML_TOK_INVALID)
614 return tok;
975 int tok; local
1281 int tok = PREFIX(scanPercent)(enc, ptr + MINBPC(enc), local
    [all...]
  /external/icu4c/common/
uvector.cpp 427 UHashTok tok; local
428 tok.pointer = obj;
429 sortedInsert(tok, compare, ec);
438 UHashTok tok; local
439 tok.integer = obj;
440 sortedInsert(tok, compare, ec);
444 void UVector::sortedInsert(UHashTok tok, USortComparator *compare, UErrorCode& ec) {
445 // Perform a binary search for the location to insert tok at. Tok
447 // tok && tok < b, where there is a 'virtual' elements[-1] alway
    [all...]
  /external/jdiff/src/jdiff/
Diff.java 70 String tok = st.nextToken(); local
72 if (tok.compareTo("<") == 0) {
73 tag = tok;
76 tok = st.nextToken();
77 char ch = tok.charAt(0);
80 tag += tok;
86 docList.add(tok);
90 if (tok.compareTo(">") == 0) {
92 tag += tok;
95 tag += tok;
    [all...]

Completed in 1548 milliseconds

1 2 3