Searched refs:token_list (Results 1 – 2 of 2) sorted by relevance
/u-boot/fs/squashfs/ |
A D | sqfs.c | 256 strcpy(result + offset, token_list[i]); in sqfs_concat_tokens() 257 offset += strlen(token_list[i]); in sqfs_concat_tokens() 489 if (!strcmp(token_list[0], "/")) { in sqfs_search_dir() 503 ret = strcmp(dent->name, token_list[j]); in sqfs_search_dir() 529 path = sqfs_concat_tokens(token_list, j + 1); in sqfs_search_dir() 876 char **token_list = NULL, *path = NULL; in sqfs_opendir() local 915 token_list = malloc(token_count * sizeof(char *)); in sqfs_opendir() 916 if (!token_list) { in sqfs_opendir() 922 ret = sqfs_tokenize(token_list, token_count, path); in sqfs_opendir() 954 free(token_list[j]); in sqfs_opendir() [all …]
|
/u-boot/tools/ |
A D | asn1_compiler.c | 309 static struct token *token_list; variable 355 token_list = tokens = calloc((end - buffer) / 2, sizeof(struct token)); in tokenise() 547 debug("Token %3u: '%s'\n", n, token_list[n].content); in tokenise() 753 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list() 754 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) in build_type_list() 777 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list() 778 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) { in build_type_list() 779 types[t].name = &token_list[n]; in build_type_list() 784 types[t].name = &token_list[n + 1]; in build_type_list()
|
Completed in 7 milliseconds