Lines Matching defs:token
455 char *token, *line_tok, *saveptr = NULL;
465 for (i = 0, line_tok = line; (token = strtok_r(line_tok, " ", &saveptr)); line_tok = NULL) {
469 tokens[i++] = token;
1784 char *token, *str, *saveptr = NULL;
1793 for (; (token = strtok_r(str, ",", &saveptr)); str = NULL) {
1802 if (strncmp(token, "name=", 5) && !lxc_string_in_array(token, (const char **)kernel_list)) {
1804 result[result_count] = malloc(strlen(token) + 6);
1806 sprintf(result[result_count], "name=%s", token);
1808 result[result_count] = strdup(token);