Searched refs:alloc_fn (Results 1 – 6 of 6) sorted by relevance
/openssl/crypto/async/arch/ |
H A D | async_posix.c | 53 int ASYNC_set_mem_functions(ASYNC_stack_alloc_fn alloc_fn, in ASYNC_set_mem_functions() argument 66 if (alloc_fn != NULL) in ASYNC_set_mem_functions() 67 stack_alloc_impl = alloc_fn; in ASYNC_set_mem_functions() 73 void ASYNC_get_mem_functions(ASYNC_stack_alloc_fn *alloc_fn, in ASYNC_get_mem_functions() argument 76 if (alloc_fn != NULL) in ASYNC_get_mem_functions() 77 *alloc_fn = stack_alloc_impl; in ASYNC_get_mem_functions()
|
H A D | async_null.c | 19 int ASYNC_set_mem_functions(ASYNC_stack_alloc_fn alloc_fn, in ASYNC_set_mem_functions() argument 25 void ASYNC_get_mem_functions(ASYNC_stack_alloc_fn *alloc_fn, in ASYNC_get_mem_functions() argument 28 if (alloc_fn != NULL) in ASYNC_get_mem_functions() 29 *alloc_fn = NULL; in ASYNC_get_mem_functions()
|
H A D | async_win.c | 23 int ASYNC_set_mem_functions(ASYNC_stack_alloc_fn alloc_fn, in ASYNC_set_mem_functions() argument 29 void ASYNC_get_mem_functions(ASYNC_stack_alloc_fn *alloc_fn, in ASYNC_get_mem_functions() argument 32 if (alloc_fn != NULL) in ASYNC_get_mem_functions() 33 *alloc_fn = NULL; in ASYNC_get_mem_functions()
|
/openssl/include/openssl/ |
H A D | async.h | 86 int ASYNC_set_mem_functions(ASYNC_stack_alloc_fn alloc_fn, 88 void ASYNC_get_mem_functions(ASYNC_stack_alloc_fn *alloc_fn,
|
/openssl/test/ |
H A D | asynctest.c | 433 ASYNC_stack_alloc_fn alloc_fn; in test_ASYNC_set_mem_functions() local 439 ASYNC_get_mem_functions(&alloc_fn, &free_fn); in test_ASYNC_set_mem_functions() 441 if ((alloc_fn != test_alloc_stack) || (free_fn != test_free_stack)) { in test_ASYNC_set_mem_functions()
|
/openssl/doc/man3/ |
H A D | ASYNC_start_job.pod | 31 int ASYNC_set_mem_functions(ASYNC_stack_alloc_fn alloc_fn, 33 void ASYNC_get_mem_functions(ASYNC_stack_alloc_fn *alloc_fn,
|
Completed in 9 milliseconds