HomeSort by relevance Sort by last modified time
    Searched refs:__atexit (Results 1 - 3 of 3) sorted by null

  /bionic/libc/stdlib/
atexit.h 48 extern struct atexit *__atexit; /* points to head of LIFO stack */
atexit.c 41 struct atexit *__atexit; variable in typeref:struct:atexit
63 struct atexit *p = __atexit;
71 p = __atexit;
83 if (__atexit == NULL) {
90 p->next = __atexit;
91 __atexit = p;
136 for (p = __atexit; p != NULL; p = p->next) {
174 for (p = __atexit; p != NULL; ) {
179 __atexit = NULL;
195 p = __atexit;
    [all...]
  /bionic/libc/unistd/
abort.c 50 struct atexit *p = __atexit;

Completed in 271 milliseconds