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

12345678

/external/syslinux/com32/lib/
H A Datexit.h2 * atexit.h
4 * atexit()/on_exit() internal definitions
10 struct atexit { struct
13 struct atexit *next;
H A Datexit.c2 * atexit.c
7 int atexit(void (*fctn) (void)) function
H A Donexit.c7 #include "atexit.h"
9 static struct atexit *__atexit_list;
13 struct atexit *ap;
24 struct atexit *as = malloc(sizeof(struct atexit));
H A Dexit.c37 #include "atexit.h"
41 struct atexit *ap;
/external/python/cpython3/Lib/test/
H A Dtest_atexit.py4 import atexit namespace
34 atexit._clear()
39 atexit._clear()
43 atexit.register(h1)
44 atexit.register(h4)
45 atexit.register(h4, 4, kw="abc")
46 atexit._run_exitfuncs()
52 atexit.register(lambda: 1, 0, 0, (x for x in (1,2)), 0, 0)
53 self.assertRaises(TypeError, atexit._run_exitfuncs)
57 atexit
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_atexit.py4 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
[all...]
/external/parameter-framework/upstream/xmlserializer/
H A DXmlUtil.cpp45 atexit(xmlCleanupParser);
/external/compiler-rt/test/tsan/
H A Datexit2.cc18 atexit(atexit0);
20 atexit(atexit1);
H A Datexit.cc24 atexit(log_from_atexit);
H A Dfork_atexit.cc23 atexit(foo);
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Datexit_with_log.py5 import atexit namespace
21 atexit.register(_WrapFunction(function), *args, **kwargs)
/external/compiler-rt/lib/asan/
H A Dasan_win_dynamic_runtime_thunk.cc59 // using atexit() that calls a small subset of C terminators
62 extern "C" int __cdecl atexit(void (__cdecl *f)(void));
74 return atexit(UnregisterGlobals);
77 // We need to call 'atexit(UnregisterGlobals);' as early as possible, but after
78 // atexit() is initialized (.CRT$XIC). As this is executed before C++
/external/compiler-rt/test/lsan/TestCases/
H A Ddo_leak_check_override.cc28 atexit(&__lsan_do_leak_check);
/external/swiftshader/third_party/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/curl/lib/
H A Damigaos.c67 atexit(Curl_amiga_cleanup);
/external/autotest/site_utils/rpm_control_system/
H A Drpm_dispatcher_unittest.py45 rpm_dispatcher.atexit = self.mox.CreateMockAnything()
46 rpm_dispatcher.atexit.register(mox.IgnoreArg())
/external/python/cpython2/Lib/multiprocessing/
H A Dutil.py38 import atexit namespace
89 import logging, atexit namespace
101 if hasattr(atexit, 'unregister'):
102 atexit.unregister(_exit_function)
103 atexit.register(_exit_function)
105 atexit._exithandlers.remove((_exit_function, (), {}))
106 atexit._exithandlers.append((_exit_function, (), {}))
304 debug('running all "atexit" finalizers with priority >= 0')
327 debug('running the remaining "atexit" finalizers')
330 atexit
[all...]
/external/tensorflow/tensorflow/contrib/py2tf/pyct/
H A Dcompiler.py25 import atexit namespace
71 atexit.register(lambda: os.remove(f.name))
/external/icu/icu4c/source/common/
H A Ducln_imp.h33 * 2) Using atexit()
78 * Use the ANSI C 'atexit' function. Note that this mechanism does not
92 atexit(&ucln_atexit_handler);
/external/mesa3d/src/egl/main/
H A Deglglobals.c94 atexit(_eglAtExit);
/external/skia/src/utils/
H A DSkEventTracer.cpp52 atexit([]() { delete sk_atomic_load(&gUserTracer); });
/external/skqp/src/utils/
H A DSkEventTracer.cpp52 atexit([]() { delete sk_atomic_load(&gUserTracer); });
/external/strace/tests/
H A Dipc_msgbuf.c68 atexit((atexit_func) cleanup);

Completed in 595 milliseconds

12345678