/external/syslinux/com32/lib/ |
atexit.h | 2 * atexit.h 4 * atexit()/on_exit() internal definitions 10 struct atexit { struct 13 struct atexit *next;
|
atexit.c | 2 * atexit.c 7 int atexit(void (*fctn) (void)) function
|
onexit.c | 7 #include "atexit.h" 9 static struct atexit *__atexit_list; 13 struct atexit *ap; 24 struct atexit *as = malloc(sizeof(struct atexit));
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_atexit.py | 4 import atexit
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/gdb/darwin-x86/lib/python2.7/test/ |
test_atexit.py | 4 import atexit 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/gdb/linux-x86/lib/python2.7/test/ |
test_atexit.py | 4 import atexit 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/darwin-x86/2.7.5/lib/python2.7/test/ |
test_atexit.py | 4 import atexit 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 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...] |
/toolchain/binutils/binutils-2.25/libiberty/ |
atexit.c | 1 /* Wrapper to implement ANSI C's atexit using SunOS's on_exit. */ 6 @deftypefn Supplemental int atexit (void (*@var{f})()) 19 atexit(void (*f)(void)) function 21 /* If the system doesn't provide a definition for atexit, use on_exit
|
/external/compiler-rt/test/asan/TestCases/ |
atexit_stats.cc | 1 // Make sure we report atexit stats. 3 // RUN: %env_asan_opts=atexit=1:print_stats=1 %run %t 2>&1 | FileCheck %s 5 // No atexit output on Android due to
|
/external/clang/test/Driver/ |
solaris-opts.c | 3 // CHECK: "-fno-use-cxa-atexit"
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/ |
atexit_with_log.py | 5 import atexit 16 atexit.register(_WrapFunction(function), *args, **kwargs)
|
/bionic/tests/ |
atexit_test.cpp | 37 TEST(atexit, sofile) { 60 // this test verifies atexit call from atexit handler. as well as the order of calls 95 atexit(atexit_func4); 109 atexit(atexit_func5); 110 atexit(atexit_func3); 111 atexit(atexit_func2); 112 atexit(atexit_func1); 116 TEST(atexit, exit) {
|
/external/compiler-rt/test/tsan/ |
fork_atexit.cc | 10 printf("CHILD ATEXIT\n"); 23 atexit(foo); 36 // CHECK: CHILD ATEXIT
|
atexit2.cc | 18 atexit(atexit0); 20 atexit(atexit1);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
fix_exitfunc.py | 2 Convert use of sys.exitfunc to use the atexit module.
47 Attr(Name(u"atexit"), Name(u"register"))
54 self.warning(node, "Can't find sys import; Please add an atexit "
58 # Now add an atexit import after the sys import.
62 names.append_child(Name(u"atexit", u" "))
68 [Name(u"import"), Name(u"atexit", u" ")]
|
/external/clang/test/CodeGenCXX/ |
global-dtor-no-atexit.cpp | 1 // RUN: %clang_cc1 -triple x86_64 %s -fno-use-cxa-atexit -emit-llvm -o - | FileCheck %s 4 // RUN: %clang_cc1 -triple x86_64 %s -fno-use-cxa-atexit -mconstructor-aliases -emit-llvm -o - | FileCheck %s 7 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor_a) 12 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor_b) 28 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor__ZZ4funcvE2a1) 33 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor__ZZ4funcvE2a2)
|
windows-on-arm-stack-probe-size.cpp | 2 // RUN: %clang_cc1 -triple thumbv7--windows-itanium -fno-use-cxa-atexit -S -emit-llvm -o - -x c++ %s | FileCheck %s 12 // CHECK: atexit
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_exitfunc.py | 2 Convert use of sys.exitfunc to use the atexit module. 47 Attr(Name(u"atexit"), Name(u"register")) 54 self.warning(node, "Can't find sys import; Please add an atexit " 58 # Now add an atexit import after the sys import. 62 names.append_child(Name(u"atexit", u" ")) 68 [Name(u"import"), Name(u"atexit", u" ")]
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_exitfunc.py | 2 Convert use of sys.exitfunc to use the atexit module. 47 Attr(Name(u"atexit"), Name(u"register")) 54 self.warning(node, "Can't find sys import; Please add an atexit " 58 # Now add an atexit import after the sys import. 62 names.append_child(Name(u"atexit", u" ")) 68 [Name(u"import"), Name(u"atexit", u" ")]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_exitfunc.py | 2 Convert use of sys.exitfunc to use the atexit module. 47 Attr(Name(u"atexit"), Name(u"register")) 54 self.warning(node, "Can't find sys import; Please add an atexit " 58 # Now add an atexit import after the sys import. 62 names.append_child(Name(u"atexit", u" ")) 68 [Name(u"import"), Name(u"atexit", u" ")]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_exitfunc.py | 2 Convert use of sys.exitfunc to use the atexit module. 47 Attr(Name(u"atexit"), Name(u"register")) 54 self.warning(node, "Can't find sys import; Please add an atexit " 58 # Now add an atexit import after the sys import. 62 names.append_child(Name(u"atexit", u" ")) 68 [Name(u"import"), Name(u"atexit", u" ")]
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/ |
gcrt1.o | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/ |
gcrt1.o | |
/prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/lib/ |
crtbegin_so.o | |