HomeSort by: relevance | last modified time | path
    Searched defs:__cxa_atexit (Results 1 - 3 of 3) sorted by relevancy

  /src/distrib/utils/zcat/
misc.c 33 int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
35 __cxa_atexit(void (*func)(void *), void *arg, void *dso) function in typeref:typename:int
  /src/lib/libc/stdlib/
atexit.c 118 * Note that __cxa_finalize may generate calls to __cxa_atexit.
133 * or normal atexit type handler. The __cxa_atexit() name and arguments
145 return (__cxa_atexit(func, arg, dso));
176 __cxa_atexit(void (*func)(void *), void *arg, void *dso) function in typeref:typename:int
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_interceptors.cc 571 INTERCEPTOR(int, __cxa_atexit, void (*func)(void *), void *arg,
574 if (UNLIKELY(!asan_inited)) return REAL(__cxa_atexit)(func, arg, dso_handle);
577 int res = REAL(__cxa_atexit)(func, arg, dso_handle);
578 REAL(__cxa_atexit)(AtCxaAtexit, nullptr, nullptr); local in function:INTERCEPTOR
657 ASAN_INTERCEPT_FUNC(__cxa_atexit);

Completed in 14 milliseconds