Lines Matching refs:dtor
28 void (*dtor) (void*);
45 cur->dtor(cur->arg);
85 struct dtor_list* dtor = __libc_malloc(sizeof(*dtor));
86 if (!dtor) {
89 dtor->dtor = func;
90 dtor->arg = arg;
91 dtor->dso_handle = dso_handle;
92 dtor->next = thread_local_dtors;
93 thread_local_dtors = dtor;
106 struct thread_local_dtor* dtor = __libc_malloc(sizeof(*dtor));
107 if (!dtor) {
110 dtor->func = func;
111 dtor->arg = arg;
112 dtor->dso_handle = dso_handle;
114 dtor->next = thr->thread_local_dtors;
115 thr->thread_local_dtors = dtor;