Searched refs:toklen (Results 1 – 5 of 5) sorted by relevance
| /trueos/contrib/gdb/gdb/ |
| HD | c-exp.y | 1389 int toklen = lexptr - tokstart + 1; in yylex() local 1390 char *tok = alloca (toklen + 1); in yylex() 1391 memcpy (tok, tokstart, toklen); in yylex() 1392 tok[toklen] = '\0'; in yylex()
|
| HD | c-exp.c | 3019 int toklen = lexptr - tokstart + 1; in yylex() local 3020 char *tok = alloca (toklen + 1); in yylex() 3021 memcpy (tok, tokstart, toklen); in yylex() 3022 tok[toklen] = '\0'; in yylex()
|
| HD | breakpoint.c | 5191 int toklen; in break_command_1() local 5202 toklen = end_tok - tok; in break_command_1() 5204 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) in break_command_1() 5215 else if (toklen >= 1 && strncmp (tok, "thread", toklen) == 0) in break_command_1() 5747 int toklen; in watch_command_1() local 5777 toklen = end_tok - tok; in watch_command_1() 5778 if (toklen >= 1 && strncmp (tok, "if", toklen) == 0) in watch_command_1()
|
| /trueos/sys/netgraph/ |
| HD | ng_ksocket.c | 248 int toklen, pathlen; in ng_ksocket_sockaddr_parse() local 251 if ((path = ng_get_string_token(s, off, &toklen, NULL)) == NULL) in ng_ksocket_sockaddr_parse() 262 *off += toklen; in ng_ksocket_sockaddr_parse()
|
| HD | ng_parse.c | 1098 int toklen; in ng_bytearray_parse() local 1102 if ((str = ng_get_string_token(s, off, &toklen, &slen)) != NULL) { in ng_bytearray_parse() 1118 *off += toklen; in ng_bytearray_parse()
|