Searched refs:curnode (Results 1 – 4 of 4) sorted by relevance
208 symbol_node_t *curnode; in symlist_search() local210 curnode = SLIST_FIRST(symlist); in symlist_search()211 while(curnode != NULL) { in symlist_search()212 if (strcmp(symname, curnode->symbol->name) == 0) in symlist_search()214 curnode = SLIST_NEXT(curnode, links); in symlist_search()216 return (curnode); in symlist_search()231 symbol_node_t *curnode; in symlist_add() local252 curnode = SLIST_FIRST(symlist); in symlist_add()253 if (curnode == NULL in symlist_add()255 && (curnode->symbol->type > newnode->symbol->type in symlist_add()[all …]
67 extern Node *curnode; in fpecatch()117 if (compile_time != 2 && curnode) { in fpecatch()118 dprintf(STDERR_FILENO, " source line number %d", curnode->lineno); in fpecatch()
760 extern Node *curnode; in error()770 if (curnode) in error()771 fprintf(stderr, " source line number %d", curnode->lineno); in error()
102 Node *curnode = NULL; /* the node being executed, for debugging */ variable156 curnode = a; in execute()