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

  /bionic/libc/arch-x86/bionic/
atexit.h 32 int atexit(void (*func)(void)) function
  /bionic/linker/
linker_libc_support.c 32 int atexit(void (*function)(void) __attribute__((__unused__))) { function
  /external/syslinux/com32/lib/
atexit.c 2 * atexit.c
7 int atexit(void (*fctn) (void)) function
atexit.h 2 * atexit.h
4 * atexit()/on_exit() internal definitions
10 struct atexit { struct
13 struct atexit *next;
  /toolchain/binutils/binutils-2.27/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
  /bionic/libc/arch-arm/bionic/
atexit_legacy.c 37 * implementation of atexit().
46 atexit(void (*func)(void)) function
49 * Exit functions queued by this version of atexit will not be called
54 static char const warning[] = "WARNING: generic atexit() called from legacy shared library\n";
  /bionic/libc/arch-common/bionic/
atexit.h 43 int atexit(void (*func)(void)) { function
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Environs.c 5 - atexit(void(*handler)(void))
59 /** The atexit function registers the function pointed to by func, to be
65 @return The atexit function returns zero if the registration succeeds,
69 atexit(void (*handler)(void)) function
84 First, all functions registered by the atexit function are called, in the
106 No functions registered by the atexit function or signal handlers
  /bionic/libc/stdlib/
atexit.c 1 /* $OpenBSD: atexit.c,v 1.20 2014/07/11 09:51:37 kettenis Exp $ */
37 #include "atexit.h"
44 struct atexit { struct
45 struct atexit *next; /* next in list */
55 static struct atexit *__atexit;
75 * the backend for atexit(). For more info on this API, see:
82 struct atexit *p = __atexit;
104 "atexit handlers");
137 struct atexit *p, *q;
  /external/google-breakpad/android/
common-functions.sh 50 atexit () { function
65 # Called on exit if at least one function was registered with atexit
69 # Ignore calls to atexit during cleanups
  /external/python/cpython3/Lib/
weakref.py 508 atexit attribute is true will be run in reverse order of creation.
509 By default atexit is true.
524 __slots__ = ("weakref", "func", "args", "kwargs", "atexit", "index")
530 import atexit
531 atexit.register(self._exitfunc)
538 info.atexit = True
572 def atexit(self): member in class:finalize
575 return bool(info) and info.atexit
577 @atexit.setter
578 def atexit(self, value) member in class:finalize
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 98 // generated elsewhere which uses atexit instead, and it takes the destructor
192 /// Create a stub function, suitable for being passed to atexit,
226 /// Register a global destructor using the C atexit runtime function.
233 // extern "C" int atexit(void (*f)(void));
237 llvm::Constant *atexit = local
238 CGM.CreateRuntimeFunction(atexitTy, "atexit");
239 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
242 EmitNounwindRuntimeCall(atexit, dtorStub);
ItaniumCXXABI.cpp 2114 llvm::Constant *atexit = CGF.CGM.CreateRuntimeFunction(atexitTy, Name); local
    [all...]

Completed in 402 milliseconds