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

  /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/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...]

Completed in 29 milliseconds