Searched refs:curnode (Results 1 – 4 of 4) sorted by relevance
210 symbol_node_t *curnode; in symlist_search() local212 curnode = SLIST_FIRST(symlist); in symlist_search()213 while(curnode != NULL) { in symlist_search()214 if (strcmp(symname, curnode->symbol->name) == 0) in symlist_search()216 curnode = SLIST_NEXT(curnode, links); in symlist_search()218 return (curnode); in symlist_search()233 symbol_node_t *curnode; in symlist_add() local254 curnode = SLIST_FIRST(symlist); in symlist_add()255 if (curnode == NULL in symlist_add()257 && (curnode->symbol->type > newnode->symbol->type in symlist_add()[all …]
349 NODE *curnode; in apply_specdir() local377 for (curnode = specnode->child; curnode != NULL; in apply_specdir()378 curnode = curnode->next) { in apply_specdir()379 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()382 if (curnode == NULL) { in apply_specdir()392 for (curnode = specnode->child; curnode != NULL; in apply_specdir()393 curnode = curnode->next) { in apply_specdir()396 curnode->name); in apply_specdir()404 if (strcmp(curnode->name, curfsnode->name) == 0) in apply_specdir()408 curnode->name) >= sizeof(path)) in apply_specdir()[all …]
760 extern Node *curnode; in error()770 if (curnode) in error()771 fprintf(stderr, " source line number %d", curnode->lineno); in error()
101 Node *curnode = NULL; /* the node being executed, for debugging */ variable155 curnode = a; in execute()