Home
last modified time | relevance | path

Searched refs:__cxa_atexit (Results 1 - 8 of 8) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/exit/
H A Da_cxa_atexit.c19 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
34 int32_t ret = __cxa_atexit(exitFunc, NULL, NULL); in cxa_atexit_0100()
47 int32_t ret = __cxa_atexit(exitFunc, &var, NULL); in cxa_atexit_0200()
61 int32_t ret = __cxa_atexit(exitFunc, &var, NULL); in cxa_atexit_0300()
/third_party/musl/Benchmark/musl/
H A Dlibc_cxa_finalize.cpp19 extern "C" int __cxa_atexit(void (*f)(void *), void *, void *);
33 __cxa_atexit(call, reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(DoNothing)), in Bm_function_cxa_finalize()
48 __cxa_atexit(call, reinterpret_cast<void *>(reinterpret_cast<uintptr_t>(DoNothing)), in Bm_function_cxa_finalize_dynamic()
/third_party/musl/src/exit/arm/
H A D__aeabi_atexit.c1 int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
5 return __cxa_atexit (func, obj, d); in __aeabi_atexit()
/third_party/musl/libc-test/src/functionalext/supplement/exit/exit_gtest/
H A Dexit_cxa_atexit_test.cpp13 extern "C" int __cxa_atexit(void (*func)(void*), void* arg, void* dso);
18 * @tc.desc: Verify the functionality of the __cxa_atexit and __cxa_finalize functions, ensuring that registered exit
25 __cxa_atexit([](void* arg) { ++*static_cast<int*>(arg); }, &exitCount, &exitCount); in HWTEST_F()
/third_party/musl/src/exit/
H A Datexit.c43 int __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit() function
78 return __cxa_atexit(call, (void *)(uintptr_t)func, 0); in atexit()
/third_party/musl/porting/linux/user/src/exit/
H A Datexit.c163 int __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit() function
202 return __cxa_atexit(call, (void *)(uintptr_t)func, 0); in atexit()
/third_party/musl/src/exit/linux/
H A Datexit.c162 int __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit() function
201 return __cxa_atexit(call, (void *)(uintptr_t)func, 0); in atexit()
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs3215 pub fn __cxa_atexit( in atexit() functions
3221 __cxa_atexit(cb, 0 as *mut ::c_void, __dso_handle) in atexit()

Completed in 11 milliseconds