Lines Matching refs:token
91 static void check_get_hexval(char *token) in check_get_hexval() argument
96 if (!sscanf(token, "%x", &hexval)) { in check_get_hexval()
98 lineno, token); in check_get_hexval()
111 char *token, *saveptr1, *saveptr2; in pbl_parser() local
123 token = strtok_r(line, "\r\n", &saveptr1); in pbl_parser()
125 if (token == NULL) in pbl_parser()
127 for (line = token;; line = NULL) { in pbl_parser()
128 token = strtok_r(line, " \t", &saveptr2); in pbl_parser()
129 if (token == NULL) in pbl_parser()
132 if (token[0] == '#') in pbl_parser()
134 check_get_hexval(token); in pbl_parser()