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

  /bionic/libc/bionic/
pthread_exit.cpp 49 c->__cleanup_prev = thread->cleanup_stack;
50 thread->cleanup_stack = c;
55 thread->cleanup_stack = c->__cleanup_prev;
66 while (thread->cleanup_stack) {
67 __pthread_cleanup_t* c = thread->cleanup_stack;
68 thread->cleanup_stack = c->__cleanup_prev;
pthread_internal.h 79 __pthread_cleanup_t* cleanup_stack; member in struct:pthread_internal_t
pthread_create.cpp 95 thread->cleanup_stack = NULL;
  /external/openssl/crypto/engine/
eng_lib.c 151 static STACK_OF(ENGINE_CLEANUP_ITEM) *cleanup_stack = NULL;
154 if(cleanup_stack) return 1;
156 cleanup_stack = sk_ENGINE_CLEANUP_ITEM_new_null();
157 return (cleanup_stack ? 1 : 0);
173 sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0);
181 sk_ENGINE_CLEANUP_ITEM_push(cleanup_stack, item);
193 sk_ENGINE_CLEANUP_ITEM_pop_free(cleanup_stack,
195 cleanup_stack = NULL;

Completed in 827 milliseconds