Lines Matching refs:funclist
439 struct func_list *funclist; in func_map_init() local
448 funclist = tep->funclist; in func_map_init()
451 while (funclist) { in func_map_init()
452 func_map[i].func = funclist->func; in func_map_init()
453 func_map[i].addr = funclist->addr; in func_map_init()
454 func_map[i].mod = funclist->mod; in func_map_init()
456 item = funclist; in func_map_init()
457 funclist = funclist->next; in func_map_init()
471 tep->funclist = NULL; in func_map_init()
616 item->next = tep->funclist; in tep_register_function()
629 tep->funclist = item; in tep_register_function()
7518 struct func_list *funclist, *funcnext; in tep_free() local
7528 funclist = tep->funclist; in tep_free()
7556 while (funclist) { in tep_free()
7557 funcnext = funclist->next; in tep_free()
7558 free(funclist->func); in tep_free()
7559 free(funclist->mod); in tep_free()
7560 free(funclist); in tep_free()
7561 funclist = funcnext; in tep_free()