Home
last modified time | relevance | path

Searched refs:dtor (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/bionic/
D__cxa_thread_atexit_impl.cpp36 thread_local_dtor* dtor = new thread_local_dtor(); in __cxa_thread_atexit_impl() local
38 dtor->func = func; in __cxa_thread_atexit_impl()
39 dtor->arg = arg; in __cxa_thread_atexit_impl()
40 dtor->dso_handle = dso_handle; in __cxa_thread_atexit_impl()
43 dtor->next = thread->thread_local_dtors; in __cxa_thread_atexit_impl()
44 thread->thread_local_dtors = dtor; in __cxa_thread_atexit_impl()
Dlibc_init_common.cpp376 Dtor dtor = fini_array[--count]; in __libc_fini() local
377 if (dtor != minus1) dtor(); in __libc_fini()
/bionic/libfdtrack/
Dfdtrack.cpp84 __attribute__((destructor)) static void dtor() { in dtor() function
/bionic/tests/
Dthreads_test.cpp471 tss_dtor_t dtor = tss_dtor; in TEST()
473 ASSERT_EQ(thrd_success, tss_create(&key, dtor)); in TEST()