HomeSort by relevance Sort by last modified time
    Searched refs:atexit (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /bionic/libc/arch-arm/bionic/
atexit.h 32 int atexit(void (*func)(void)) function
atexit_legacy.c 36 * implementation of atexit().
45 atexit(void (*func)(void)) function
48 * Exit functions queued by this version of atexit will not be called
53 static char const warning[] = "WARNING: generic atexit() called from legacy shared library\n";
  /bionic/libc/arch-x86/bionic/
atexit.h 32 int atexit(void (*func)(void)) function
  /development/ndk/platforms/android-3/arch-arm/src/
atexit.h 32 int atexit(void (*func)(void)) function
  /development/ndk/platforms/android-9/arch-x86/src/
atexit.h 32 int atexit(void (*func)(void)) function
  /bionic/libc/stdlib/
atexit.h 1 /* $OpenBSD: atexit.h,v 1.7 2007/09/03 14:40:16 millert Exp $ */
35 struct atexit { struct
36 struct atexit *next; /* next in list */
52 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;
48 * TODO: switch to the regular FreeBSD/NetBSD atexit implementation.
57 * the backend for atexit(). For more info on this API, see:
64 struct atexit *p = __atexit;
116 struct atexit *p, *q;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_atexit.py 4 import atexit namespace
14 self.save_handlers = atexit._exithandlers
15 atexit._exithandlers = []
20 atexit._exithandlers = self.save_handlers
23 atexit.register(self.h1)
24 atexit.register(self.h4)
25 atexit.register(self.h4, 4, kw="abc")
26 atexit._run_exitfuncs()
31 atexit.register(lambda: 1, 0, 0, (x for x in (1,2)), 0, 0)
32 self.assertRaises(TypeError, atexit._run_exitfuncs
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_atexit.py 4 import atexit namespace
14 self.save_handlers = atexit._exithandlers
15 atexit._exithandlers = []
20 atexit._exithandlers = self.save_handlers
23 atexit.register(self.h1)
24 atexit.register(self.h4)
25 atexit.register(self.h4, 4, kw="abc")
26 atexit._run_exitfuncs()
31 atexit.register(lambda: 1, 0, 0, (x for x in (1,2)), 0, 0)
32 self.assertRaises(TypeError, atexit._run_exitfuncs
    [all...]
  /bionic/libc/arch-mips/bionic/
atexit.h 33 int atexit(void (*func)(void)) function
  /development/ndk/platforms/android-9/arch-mips/src/
atexit.h 33 int atexit(void (*func)(void)) function
  /external/compiler-rt/SDKs/darwin/usr/include/
stdlib.h 25 int atexit(void (*)(void));
  /external/pixman/pixman/
pixman-timer.c 54 int atexit (void (*function)(void));
58 atexit (dump_timers);
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
do_leak_check_override.cc 28 atexit(&__lsan_do_leak_check);
  /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/chromium_org/third_party/mesa/src/src/egl/main/
eglglobals.c 71 atexit(_eglAtExit);
  /external/compiler-rt/SDKs/linux/usr/include/
stdlib.h 25 int atexit(void (*)(void)) __attribute__((__nothrow__));
  /external/compiler-rt/lib/asan/
asan_flags.h 80 // Print various statistics after printing an error message or if atexit=1.
85 bool atexit; member in struct:__asan::Flags
  /external/mesa3d/src/egl/main/
eglglobals.c 71 atexit(_eglAtExit);
  /external/chromium_org/chrome/test/chromedriver/server/
server.py 5 import atexit namespace
41 atexit.register(self.Kill)
  /external/qemu/distrib/sdl-1.2.15/test/
testlock.c 19 * SDL_Quit() shouldn't be used with atexit() directly because
84 atexit(SDL_Quit_Wrapper);
93 atexit(printid);
  /external/chromium_org/third_party/icu/source/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/icu4c/common/
ucln_imp.h 31 * 2) Using atexit()
76 * Use the ANSI C 'atexit' function. Note that this mechanism does not
90 atexit(&ucln_atexit_handler);

Completed in 455 milliseconds

1 2 3 4 5 6 7 8 91011