HomeSort by relevance Sort by last modified time
    Searched defs:atexit (Results 1 - 23 of 23) sorted by null

  /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-mips/bionic/
atexit.S 29 .globl atexit
30 .hidden atexit
31 .type atexit, @function
33 .ent atexit
34 atexit: label
42 .size atexit, .-atexit
43 .end atexit
  /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-mips/src/
atexit.S 29 .globl atexit
30 .hidden atexit
31 .type atexit, @function
33 .ent atexit
34 atexit: label
42 .size atexit, .-atexit
43 .end atexit
  /development/ndk/platforms/android-9/arch-x86/src/
atexit.S 30 .globl atexit
31 .hidden atexit
32 .type atexit, @function
33 atexit: label
50 .size atexit, .-atexit
  /frameworks/base/core/tests/overlaytests/
runtests.sh 8 function atexit() function
20 trap "atexit" EXIT
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xfuncs.h 89 #define atexit(f) on_exit(f, 0) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xfuncs.h 89 #define atexit(f) on_exit(f, 0) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xfuncs.h 89 #define atexit(f) on_exit(f, 0) macro
  /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 */
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 36 import atexit namespace
129 atexit.register(_RemoveTempDir)
  /external/clang/utils/ABITest/
ABITestGen.py 4 import random, atexit, time namespace
609 atexit.register(lambda: output.close())
614 atexit.register(lambda: outputHeader.close())
619 atexit.register(lambda: outputTests.close())
624 atexit.register(lambda: outputDriver.close())
  /external/gtest/test/
gtest_test_utils.py 36 import atexit namespace
129 atexit.register(_RemoveTempDir)
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_test_utils.py 36 import atexit namespace
129 atexit.register(_RemoveTempDir)
  /external/protobuf/gtest/test/
gtest_test_utils.py 36 import atexit namespace
128 atexit.register(_RemoveTempDir)
  /external/webkit/Tools/Scripts/webkitpy/common/system/
path.py 32 import atexit namespace
76 atexit.register(_CygPath.stop_cygpath_subprocess)
  /external/compiler-rt/lib/asan/
asan_flags.h 82 // Print various statistics after printing an error message or if atexit=1.
87 bool atexit; member in struct:__asan::Flags
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 160 /// Create a stub function, suitable for being passed to atexit,
192 /// Register a global destructor using the C atexit runtime function.
198 // extern "C" int atexit(void (*f)(void));
202 llvm::Constant *atexit = local
203 CGM.CreateRuntimeFunction(atexitTy, "atexit");
204 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
207 EmitNounwindRuntimeCall(atexit, dtorStub);
ItaniumCXXABI.cpp 1211 llvm::Constant *atexit = local
    [all...]
  /external/clang/tools/scan-view/
ScanView.py 143 import atexit namespace
144 atexit.register(lambda: self.save_config())
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 242 int atexit(ThreadState *thr, uptr pc, bool is_on_exit, function in class:AtExitContext
274 DPrintf("#%d: executing atexit func %p\n", thr->tid, f);
303 TSAN_INTERCEPTOR(int, atexit, void (*f)()) {
306 SCOPED_TSAN_INTERCEPTOR(atexit, f);
307 return atexit_ctx->atexit(thr, pc, false, (void(*)())f, 0);
314 return atexit_ctx->atexit(thr, pc, true, (void(*)())f, arg);
323 return atexit_ctx->atexit(thr, pc, false, (void(*)())f, arg);
    [all...]

Completed in 2463 milliseconds