HomeSort by: relevance | last modified time | path
    Searched defs:next_token (Results 1 - 12 of 12) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
sftp-realpath.c 65 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
116 if (s - left >= (ptrdiff_t)sizeof(next_token)) {
120 memcpy(next_token, left, s - left);
121 next_token[s - left] = '\0';
133 if (next_token[0] == '\0')
135 else if (strcmp(next_token, ".") == 0)
137 else if (strcmp(next_token, "..") == 0) {
156 resolved_len = strlcat(resolved, next_token, PATH_MAX);
  /src/external/bsd/ntp/dist/libntp/
ntp_realpath.c 108 char left[NTP_PATH_MAX], next_token[NTP_PATH_MAX], link_tgt[NTP_PATH_MAX]; local
143 memcpy(next_token, left, next_token_len);
144 next_token[next_token_len] = '\0';
162 if ('\0' == next_token[0]) {
165 } else if (strcmp(next_token, ".") == 0) {
167 } else if (strcmp(next_token, "..") == 0) {
184 resolved_len = strlcat(resolved, next_token, NTP_PATH_MAX);
  /src/external/mpl/dhcp/dist/common/
conflex.c 251 * Generally we use the next_token() function to read tokens. This
374 next_token(const char **rval, unsigned *rlen, struct parse *cfile) { function
380 * The same as the next_token() function above, but will return space
436 * subsequent call to next_token().
  /src/external/mpl/dhcp/dist/keama/
conflex.c 236 * Generally we use the next_token() function to read tokens. This
355 next_token(const char **rval, unsigned *rlen, struct parse *cfile) { function
361 * The same as the next_token() function above, but will return space
414 * subsequent call to next_token().
  /src/external/gpl3/gcc/dist/libgfortran/runtime/
environ.c 360 next_token (void) function
507 tok = next_token ();
552 tok = next_token ();
582 tok = next_token ();
586 if (next_token () != ':')
592 if (next_token () != ':')
598 if (next_token () != ':')
604 if (next_token () != ':')
610 if (next_token () != ':')
616 if (next_token () != ':'
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/runtime/
environ.c 360 next_token (void) function
507 tok = next_token ();
552 tok = next_token ();
582 tok = next_token ();
586 if (next_token () != ':')
592 if (next_token () != ':')
598 if (next_token () != ':')
604 if (next_token () != ':')
610 if (next_token () != ':')
616 if (next_token () != ':'
    [all...]
  /src/external/mit/isl/dist/
isl_stream.c 387 static struct isl_token *next_token(__isl_keep isl_stream *s, int same_line) function
695 return next_token(s, 0);
700 return next_token(s, 1);
isl_input.c 152 static struct isl_token *next_token(__isl_keep isl_stream *s) function
200 tok = next_token(s);
225 tok2 = next_token(s);
259 tok = next_token(s);
291 tok = next_token(s);
355 tok = next_token(s);
499 tok = next_token(s);
619 tok = next_token(s);
660 tok = next_token(s);
1526 tok = next_token(s)
    [all...]
  /src/external/gpl2/gmake/dist/
misc.c 120 in = next_token (in);
464 next_token (const char *s)
477 char *p = next_token (*ptr);
457 next_token (const char *s) function
  /src/external/gpl3/gcc/dist/gcc/cp/
parser.cc 500 /* Dump the tokens in a window of size WINDOW_SIZE around the next_token for
506 cp_token *next_token, *first_token, *start_token;
511 next_token = parser->lexer->next_token;
513 start_token = (next_token > first_token + window_size / 2)
514 ? next_token - window_size / 2
517 next_token);
602 token = parser->lexer->next_token;
690 gcc_assert (!lexer->next_token);
692 lexer->next_token = begin
505 cp_token *next_token, *first_token, *start_token; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
parser.cc 487 /* Dump the tokens in a window of size WINDOW_SIZE around the next_token for
493 cp_token *next_token, *first_token, *start_token;
498 next_token = parser->lexer->next_token;
500 start_token = (next_token > first_token + window_size / 2)
501 ? next_token - window_size / 2
504 next_token);
589 token = parser->lexer->next_token;
667 lexer->next_token = lexer->buffer->address ();
668 lexer->last_token = lexer->next_token
492 cp_token *next_token, *first_token, *start_token; local
    [all...]
  /src/external/mpl/bind/dist/bin/named/
server.c 10819 * call to next_token().
10822 next_token(isc_lex_t *lex, isc_buffer_t **text) {
10894 ptr = next_token(lex, text);
10902 zonetxt = next_token(lex, text);
10908 /* Copy zonetxt because it'll be overwritten by next_token() */
10925 classtxt = next_token(lex, text);
10933 viewtxt = next_token(lex, text);
11035 (void)next_token(lex, text);
11037 arg = next_token(lex, text);
11040 arg = next_token(lex, text)
10835 next_token(isc_lex_t *lex, isc_buffer_t **text) { function
    [all...]

Completed in 45 milliseconds