Lines Matching defs:cur
43 struct dtor_list* cur = thread_local_dtors;
44 thread_local_dtors = cur->next;
45 cur->dtor(cur->arg);
47 remove_dso_handle_node(cur->dso_handle);
49 __libc_free(cur);
126 struct thread_local_dtor* cur = thr->thread_local_dtors;
127 thr->thread_local_dtors= cur->next;
128 cur->func(cur->arg);
130 remove_dso_handle_node(cur->dso_handle);