HomeSort by: relevance | last modified time | path
    Searched refs:tokenp (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/
archive_parse_date.c 59 struct token *tokenp; /* Pointer to next token. */ member in struct:gdstate
102 if (gds->tokenp[0].token == tUNUMBER
103 && gds->tokenp[1].token == ':'
104 && gds->tokenp[2].token == tUNUMBER
105 && gds->tokenp[3].token == ':'
106 && gds->tokenp[4].token == tUNUMBER) {
109 gds->Hour = gds->tokenp[0].value;
110 gds->Minutes = gds->tokenp[2].value;
111 gds->Seconds = gds->tokenp[4].value;
112 gds->tokenp += 5
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
lex.c 342 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
364 REQUIRE(tokenp != NULL);
368 tokenp->type = isc_tokentype_nomore;
395 tokenp->type = isc_tokentype_eof;
528 tokenp->type = isc_tokentype_eof;
535 tokenp->type = isc_tokentype_initialws;
536 tokenp->value.as_char = c;
541 tokenp->type = isc_tokentype_eol;
590 tokenp->type = isc_tokentype_special;
591 tokenp->value.as_char = c
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/
lex.c 343 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp) {
365 REQUIRE(tokenp != NULL);
369 tokenp->type = isc_tokentype_nomore;
396 tokenp->type = isc_tokentype_eof;
527 tokenp->type = isc_tokentype_eof;
534 tokenp->type = isc_tokentype_initialws;
535 tokenp->value.as_char = c;
540 tokenp->type = isc_tokentype_eol;
589 tokenp->type = isc_tokentype_special;
590 tokenp->value.as_char = c
    [all...]
  /src/lib/libc/rpc/
getnetconfig.c 528 char *tokenp; /* for processing tokens */ local
542 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL)
544 if (strcmp(tokenp, NC_TPI_COTS_ORD_S) == 0)
546 else if (strcmp(tokenp, NC_TPI_COTS_S) == 0)
548 else if (strcmp(tokenp, NC_TPI_CLTS_S) == 0)
550 else if (strcmp(tokenp, NC_TPI_RAW_S) == 0)
556 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL)
558 for (ncp->nc_flag = NC_NOFLAG; *tokenp != '\0'; tokenp++) {
559 switch (*tokenp) {
    [all...]
  /src/external/mpl/bind/dist/lib/isc/include/isc/
lex.h 283 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp);
294 *\li '*tokenp' is a valid pointer.
347 isc_lex_ungettoken(isc_lex_t *lex, isc_token_t *tokenp);
356 *\li 'tokenp' points to a valid token.
362 isc_lex_getlasttokentext(isc_lex_t *lex, isc_token_t *tokenp, isc_region_t *r);
371 *\li 'tokenp' points to a valid token.
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
lex.h 284 isc_lex_gettoken(isc_lex_t *lex, unsigned int options, isc_token_t *tokenp);
295 *\li '*tokenp' is a valid pointer.
348 isc_lex_ungettoken(isc_lex_t *lex, isc_token_t *tokenp);
357 *\li 'tokenp' points to a valid token.
363 isc_lex_getlasttokentext(isc_lex_t *lex, isc_token_t *tokenp, isc_region_t *r);
372 *\li 'tokenp' points to a valid token.
  /src/external/gpl3/gdb.old/dist/gdb/
linespec.c 423 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
425 tokenp->type = LSTOKEN_NUMBER;
426 tokenp->data.string.length = 0;
427 tokenp->data.string.ptr = parser->lexer.stream;
432 ++tokenp->data.string.length;
438 ++tokenp->data.string.length;
449 parser->lexer.stream = tokenp->data.string.ptr;
  /src/external/gpl3/gdb/dist/gdb/
linespec.c 449 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
451 tokenp->type = LSTOKEN_NUMBER;
452 tokenp->data.string.length = 0;
453 tokenp->data.string.ptr = parser->lexer.stream;
458 ++tokenp->data.string.length;
464 ++tokenp->data.string.length;
475 parser->lexer.stream = tokenp->data.string.ptr;

Completed in 35 milliseconds