Searched refs:fibre (Results 1 - 8 of 8) sorted by relevance
/third_party/node/deps/openssl/openssl/crypto/async/arch/ |
H A D | async_posix.c | 35 int async_fibre_makecontext(async_fibre *fibre) in async_fibre_makecontext() argument 38 fibre->env_init = 0; in async_fibre_makecontext() 40 if (getcontext(&fibre->fibre) == 0) { in async_fibre_makecontext() 41 fibre->fibre.uc_stack.ss_sp = OPENSSL_malloc(STACKSIZE); in async_fibre_makecontext() 42 if (fibre->fibre.uc_stack.ss_sp != NULL) { in async_fibre_makecontext() 43 fibre->fibre in async_fibre_makecontext() 54 async_fibre_free(async_fibre *fibre) async_fibre_free() argument [all...] |
H A D | async_win.c | 27 async_fibre *fibre = &ctx->dispatcher; in async_local_cleanup() local 28 if (fibre != NULL && fibre->fibre != NULL && fibre->converted) { in async_local_cleanup() 30 fibre->fibre = NULL; in async_local_cleanup() 35 int async_fibre_init_dispatcher(async_fibre *fibre) in async_fibre_init_dispatcher() argument 38 fibre->fibre in async_fibre_init_dispatcher() [all...] |
H A D | async_win.h | 23 LPVOID fibre; member 28 (SwitchToFiber((n)->fibre), 1) 32 ((c)->fibre = CreateFiberEx(0, 0, FIBER_FLAG_FLOAT_SWITCH, \ 36 ((c)->fibre = CreateFiber(0, async_start_func_win, 0)) 39 # define async_fibre_free(f) (DeleteFiber((f)->fibre)) 41 int async_fibre_init_dispatcher(async_fibre *fibre);
|
H A D | async_posix.h | 57 ucontext_t fibre; member 67 swapcontext(&o->fibre, &n->fibre); in async_fibre_swapcontext() 75 setcontext(&n->fibre); in async_fibre_swapcontext() 84 int async_fibre_makecontext(async_fibre *fibre); 85 void async_fibre_free(async_fibre *fibre);
|
/third_party/openssl/crypto/async/arch/ |
H A D | async_posix.c | 35 int async_fibre_makecontext(async_fibre *fibre) in async_fibre_makecontext() argument 38 fibre->env_init = 0; in async_fibre_makecontext() 40 if (getcontext(&fibre->fibre) == 0) { in async_fibre_makecontext() 41 fibre->fibre.uc_stack.ss_sp = OPENSSL_malloc(STACKSIZE); in async_fibre_makecontext() 42 if (fibre->fibre.uc_stack.ss_sp != NULL) { in async_fibre_makecontext() 43 fibre->fibre in async_fibre_makecontext() 54 async_fibre_free(async_fibre *fibre) async_fibre_free() argument [all...] |
H A D | async_win.c | 27 async_fibre *fibre = &ctx->dispatcher; in async_local_cleanup() local 28 if (fibre != NULL && fibre->fibre != NULL && fibre->converted) { in async_local_cleanup() 30 fibre->fibre = NULL; in async_local_cleanup() 35 int async_fibre_init_dispatcher(async_fibre *fibre) in async_fibre_init_dispatcher() argument 38 fibre->fibre in async_fibre_init_dispatcher() [all...] |
H A D | async_win.h | 23 LPVOID fibre; member 28 (SwitchToFiber((n)->fibre), 1) 32 ((c)->fibre = CreateFiberEx(0, 0, FIBER_FLAG_FLOAT_SWITCH, \ 36 ((c)->fibre = CreateFiber(0, async_start_func_win, 0)) 39 # define async_fibre_free(f) (DeleteFiber((f)->fibre)) 41 int async_fibre_init_dispatcher(async_fibre *fibre);
|
H A D | async_posix.h | 57 ucontext_t fibre; member 67 swapcontext(&o->fibre, &n->fibre); in async_fibre_swapcontext() 75 setcontext(&n->fibre); in async_fibre_swapcontext() 84 int async_fibre_makecontext(async_fibre *fibre); 85 void async_fibre_free(async_fibre *fibre);
|
Completed in 2 milliseconds