Lines Matching refs:funclist
372 struct func_list *funclist; in func_map_init() local
381 funclist = pevent->funclist; in func_map_init()
384 while (funclist) { in func_map_init()
385 func_map[i].func = funclist->func; in func_map_init()
386 func_map[i].addr = funclist->addr; in func_map_init()
387 func_map[i].mod = funclist->mod; in func_map_init()
389 item = funclist; in func_map_init()
390 funclist = funclist->next; in func_map_init()
404 pevent->funclist = NULL; in func_map_init()
550 item->next = pevent->funclist; in tep_register_function()
563 pevent->funclist = item; in tep_register_function()
6806 struct func_list *funclist, *funcnext; in tep_free() local
6816 funclist = pevent->funclist; in tep_free()
6844 while (funclist) { in tep_free()
6845 funcnext = funclist->next; in tep_free()
6846 free(funclist->func); in tep_free()
6847 free(funclist->mod); in tep_free()
6848 free(funclist); in tep_free()
6849 funclist = funcnext; in tep_free()