Searched defs:atexit (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/chrome/test/chromedriver/server/
H A Dserver.py5 import atexit namespace
44 atexit.register(self.Kill)
/external/chromium_org/v8/tools/testrunner/server/
H A Ddaemon.py11 import atexit namespace
74 atexit.register(self.delpid)
/external/chromium_org/third_party/openssl/
H A Dimport_from_android.sh106 atexit () { function
252 atexit clean_tempdir
357 atexit clean_openssl_new
/external/chromium/testing/gtest/test/
H A Dgtest_test_utils.py36 import atexit namespace
129 atexit.register(_RemoveTempDir)
/external/chromium_org/build/util/lib/common/
H A Dutil.py7 import atexit namespace
82 atexit.register(MaybeDelete, path)
/external/chromium_org/chrome/test/chromedriver/
H A Dutil.py7 import atexit namespace
83 atexit.register(MaybeDelete, path)
/external/chromium_org/testing/gtest/test/
H A Dgtest_test_utils.py36 import atexit namespace
129 atexit.register(_RemoveTempDir)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dpath.py31 import atexit namespace
73 atexit.register(_CygPath.stop_cygpath_subprocess)
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Dyasm.pyx135 import atexit namespace
136 atexit.register(__cleanup)
/external/clang/utils/ABITest/
H A DABITestGen.py4 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/
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/compiler-rt/lib/asan/
H A Dasan_flags.h80 // Print various statistics after printing an error message or if atexit=1.
85 bool atexit; member in struct:__asan::Flags
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcontrol.py3 import atexit, os, random, socket, sys namespace
165 for m in (atexit, os, random, socket):
368 atexit.register(self.save)
/external/chromium_org/remoting/tools/
H A Dme2me_virtual_host.py12 import atexit namespace
73 # Globals needed by the atexit cleanup() handler.
759 # Exit cleanly so the atexit handler, cleanup(), gets called.
1003 atexit.register(cleanup)
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp162 /// Create a stub function, suitable for being passed to atexit,
194 /// Register a global destructor using the C atexit runtime function.
200 // extern "C" int atexit(void (*f)(void));
204 llvm::Constant *atexit = local
205 CGM.CreateRuntimeFunction(atexitTy, "atexit");
206 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
209 EmitNounwindRuntimeCall(atexit, dtorStub);
H A DItaniumCXXABI.cpp1261 llvm::Constant *atexit = CGF.CGM.CreateRuntimeFunction(atexitTy, Name); local
1262 if (llvm::Function *fn = dyn_cast<llvm::Function>(atexit))
1265 // Create a variable that binds the atexit to this shared object.
1274 CGF.EmitNounwindRuntimeCall(atexit, args);
/external/clang/tools/scan-view/
H A DScanView.py143 import atexit namespace
144 atexit.register(lambda: self.save_config())
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dscm_unittest.py31 import atexit namespace
51 @atexit.register
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py294 import atexit namespace
296 # TODO(1.5): atexit requires python 2.0, so chain sys.exitfunc
303 atexit.register(_clean)
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc247 int atexit(ThreadState *thr, uptr pc, bool is_on_exit, function in class:AtExitContext
279 DPrintf("#%d: executing atexit func %p\n", thr->tid, f);
299 TSAN_INTERCEPTOR(int, atexit, void (*f)()) {
302 SCOPED_TSAN_INTERCEPTOR(atexit, f);
303 return atexit_ctx->atexit(thr, pc, false, (void(*)())f, 0);
310 return atexit_ctx->atexit(thr, pc, true, (void(*)())f, arg);
319 return atexit_ctx->atexit(thr, pc, false, (void(*)())f, arg);
2074 // But atexit is emitted directly into the module, so can't be resolved.
2075 REAL(atexit) = (int(*)(void(*)()))unreachable;
2080 Printf("ThreadSanitizer: failed to setup atexit callbac
[all...]

Completed in 817 milliseconds