Lines Matching refs:funclist
445 struct func_list *funclist; in func_map_init() local
454 funclist = tep->funclist; in func_map_init()
457 while (funclist) { in func_map_init()
458 func_map[i].func = funclist->func; in func_map_init()
459 func_map[i].addr = funclist->addr; in func_map_init()
460 func_map[i].mod = funclist->mod; in func_map_init()
462 item = funclist; in func_map_init()
463 funclist = funclist->next; in func_map_init()
477 tep->funclist = NULL; in func_map_init()
622 item->next = tep->funclist; in tep_register_function()
635 tep->funclist = item; in tep_register_function()
6988 struct func_list *funclist, *funcnext; in tep_free() local
6998 funclist = tep->funclist; in tep_free()
7026 while (funclist) { in tep_free()
7027 funcnext = funclist->next; in tep_free()
7028 free(funclist->func); in tep_free()
7029 free(funclist->mod); in tep_free()
7030 free(funclist); in tep_free()
7031 funclist = funcnext; in tep_free()