Searched refs:curnode (Results 1 – 1 of 1) sorted by relevance
214 symbol_node_t *curnode; in symlist_search() local216 curnode = SLIST_FIRST(symlist); in symlist_search()217 while(curnode != NULL) { in symlist_search()218 if (strcmp(symname, curnode->symbol->name) == 0) in symlist_search()220 curnode = SLIST_NEXT(curnode, links); in symlist_search()222 return (curnode); in symlist_search()237 symbol_node_t *curnode; in symlist_add() local258 curnode = SLIST_FIRST(symlist); in symlist_add()259 if (curnode == NULL in symlist_add()261 && (curnode->symbol->type > newnode->symbol->type in symlist_add()[all …]