Searched refs:atexit (Results 1 - 25 of 90) sorted by relevance

1234

/external/llvm/runtime/libprofile/
H A DEdgeProfiling.c36 * profiling library. It is responsible for setting up the atexit handler.
43 atexit(EdgeProfAtExitHandler);
H A DOptimalEdgeProfiling.c36 * profiling library. It is responsible for setting up the atexit handler.
43 atexit(OptEdgeProfAtExitHandler);
H A DBasicBlockTracing.c46 * block tracing library. It is responsible for setting up the atexit
63 /* Set up the atexit handler. */
64 atexit (BBTraceAtExitHandler);
/external/compiler-rt/lib/asan/
H A Dasan_flags.h82 // Print various statistics after printing an error message or if atexit=1.
87 bool atexit; member in struct:__asan::Flags
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestlock.c19 * SDL_Quit() shouldn't be used with atexit() directly because
84 atexit(SDL_Quit_Wrapper);
93 atexit(printid);
/external/icu4c/common/
H A Ducln_imp.h31 * 2) Using atexit()
76 * Use the ANSI C 'atexit' function. Note that this mechanism does not
90 atexit(&ucln_atexit_handler);
/external/qemu/distrib/sdl-1.2.15/src/main/qtopia/
H A DSDL_qtopia_main.cc42 atexit(cleanupQCop);
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dpath.py32 import atexit namespace
76 atexit.register(_CygPath.stop_cygpath_subprocess)
/external/harfbuzz_ng/src/
H A Dhb-shaper.cc104 atexit (free_static_shapers); /* First person registers atexit() callback. */
/external/linux-tools-perf/util/
H A Dpager.c88 atexit(wait_for_pager);
/external/chromium/testing/gtest/test/
H A Dgtest_test_utils.py36 import atexit namespace
129 atexit.register(_RemoveTempDir)
/external/gtest/test/
H A Dgtest_test_utils.py36 import atexit namespace
129 atexit.register(_RemoveTempDir)
/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest_test_utils.py36 import atexit namespace
129 atexit.register(_RemoveTempDir)
/external/protobuf/gtest/test/
H A Dgtest_test_utils.py36 import atexit namespace
128 atexit.register(_RemoveTempDir)
/external/stlport/
H A DAndroid.mk38 libstlport_cppflags := -fuse-cxa-atexit
/external/aac/libSYS/src/linux/
H A DgenericStds_linux.cpp271 atexit(FDKepilog);
280 /* Because of atexit(), make sure to call this only once */
/external/qemu/
H A Dtcpdump.c77 atexit(capture_atexit);
/external/aac/libSYS/src/mips/
H A DgenericStds_mips.cpp255 atexit(FDKepilog);
/external/bison/src/
H A Dmain.c75 atexit (close_stdout);
/external/compiler-rt/lib/msan/
H A Dmsan_linux.cc91 atexit(MsanAtExit);
/external/qemu/android/utils/
H A Dtempfile.c107 atexit( tempfile_atexit );
/external/skia/include/core/
H A DSkInstCnt.h43 SK_DECLARE_INST_COUNT_INTERNAL(className, atexit(exitPrint);, /**/)
/external/ipsec-tools/
H A Dmain.c58 atexit(notify_death);
182 atexit(terminated);
/external/qemu/distrib/sdl-1.2.15/src/main/win32/
H A DSDL_win32_main.c154 /* SDL_Quit() shouldn't be used with atexit() directly because
304 atexit(cleanup_output);
305 atexit(cleanup);
317 /* Exit cleanly, calling atexit() functions */
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp160 /// 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);

Completed in 772 milliseconds

1234