/bionic/libc/stdlib/ |
atexit.h | 1 /* $OpenBSD: atexit.h,v 1.7 2007/09/03 14:40:16 millert Exp $ */ 33 struct atexit { struct 34 struct atexit *next; /* next in list */ 48 extern struct atexit *__atexit; /* points to head of LIFO stack */
|
atexit.c | 1 /* $OpenBSD: atexit.c,v 1.14 2007/09/05 20:47:47 chl Exp $ */ 37 #include "atexit.h" 41 struct atexit *__atexit; 56 * the backend for atexit(). For more info on this API, see: 63 struct atexit *p = __atexit; 112 atexit(void (*func)(void)) function 126 struct atexit *p, *q; 189 struct atexit *p;
|
/bionic/libc/arch-arm/bionic/ |
atexit.S | 41 .section .text.atexit,"ax",%progbits 43 .global atexit 44 .hidden atexit 47 .type atexit, %function 48 atexit: label 68 .size atexit, .-atexit
|
/bionic/libc/arch-x86/bionic/ |
atexit.S | 30 .globl atexit 31 .hidden atexit 32 .type atexit, @function 33 atexit: label 50 .size atexit, .-atexit
|
/external/llvm/runtime/libprofile/ |
EdgeProfiling.c | 36 * profiling library. It is responsible for setting up the atexit handler. 43 atexit(EdgeProfAtExitHandler);
|
OptimalEdgeProfiling.c | 36 * profiling library. It is responsible for setting up the atexit handler. 43 atexit(OptEdgeProfAtExitHandler);
|
BasicBlockTracing.c | 46 * block tracing library. It is responsible for setting up the atexit 63 /* Set up the atexit handler. */ 64 atexit (BBTraceAtExitHandler);
|
/external/icu4c/common/ |
ucln_imp.h | 31 * 2) Using atexit() 71 * Use the ANSI C 'atexit' function. Note that this mechanism does not 85 atexit(&ucln_atexit_handler);
|
/external/qemu/distrib/sdl-1.2.12/src/main/qtopia/ |
SDL_qtopia_main.cc | 42 atexit(cleanupQCop);
|
/system/extras/tests/bionic/libstdc++/ |
test_cstdlib.cpp | 45 using ::atexit;
|
/system/media/wilhelm/tests/sandbox/ |
getch.c | 29 atexit(reset_terminal_mode);
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
path.py | 32 import atexit namespace 76 atexit.register(_CygPath.stop_cygpath_subprocess)
|
/bionic/libc/unistd/ |
abort.c | 35 #include "atexit.h" 50 struct atexit *p = __atexit;
|
/bionic/libstdc++/include/ |
cstdlib | 44 using ::atexit;
|
/external/bluetooth/glib/ |
glibconfig.h | 94 # define g_ATEXIT(proc) (!atexit (proc)) 96 # define g_ATEXIT(proc) (atexit (proc))
|
/external/protobuf/gtest/test/ |
gtest_test_utils.py | 36 import atexit namespace 128 atexit.register(_RemoveTempDir)
|
/ndk/sources/cxx-stl/gabi++/include/ |
cstdlib | 44 using ::atexit;
|
/ndk/sources/cxx-stl/system/include/ |
cstdlib | 44 using ::atexit;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
cstdlib | 42 using ::atexit;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
cstdlib | 42 using ::atexit;
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/system/include/ |
cstdlib | 44 using ::atexit;
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/system/include/ |
cstdlib | 44 using ::atexit;
|
/bionic/libc/include/ |
stdlib.h | 52 extern int atexit(void (*)(void));
|
/development/ndk/platforms/android-3/include/ |
stdlib.h | 52 extern int atexit(void (*)(void));
|
/development/ndk/platforms/android-8/include/ |
stdlib.h | 52 extern int atexit(void (*)(void));
|