HomeSort by relevance Sort by last modified time
    Searched refs:cleanup_stack (Results 1 - 4 of 4) sorted by 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;
  /bionic/libc/bionic/
pthread_internal.h 47 __pthread_cleanup_t* cleanup_stack; member in struct:pthread_internal_t
pthread.c 84 c->__cleanup_prev = thread->cleanup_stack;
85 thread->cleanup_stack = c;
92 thread->cleanup_stack = c->__cleanup_prev;
106 while (thread->cleanup_stack) {
107 __pthread_cleanup_t* c = thread->cleanup_stack;
108 thread->cleanup_stack = c->__cleanup_prev;
    [all...]
pthread_create.cpp 114 thread->cleanup_stack = NULL;

Completed in 180 milliseconds