Home
last modified time | relevance | path

Searched refs:hf_ptr (Results 1 – 2 of 2) sorted by relevance

/mirbsd/src/usr.sbin/httpd/src/ap/
Dap_hook.c237 if (he->he_func[i]->hf_ptr == func) in ap_hook_register_I()
250 hf->hf_ptr = func; in ap_hook_register_I()
267 if (he->he_func[i]->hf_ptr == func) { in ap_hook_unregister_I()
494 ((void(*)())(hf->hf_ptr))(); in ap_hook_call_func()
498 *((int *)v_rc) = ((int(*)())(hf->hf_ptr))(); in ap_hook_call_func()
503 *((void * *)v_rc) = ((void *(*)())(hf->hf_ptr))(); in ap_hook_call_func()
509 *((int *)v_rc) = ((int(*)(int))(hf->hf_ptr))(v1); in ap_hook_call_func()
515 *((int *)v_rc) = ((int(*)(void *))(hf->hf_ptr))(v1); in ap_hook_call_func()
521 *((void * *)v_rc) = ((void *(*)(int))(hf->hf_ptr))(v1); in ap_hook_call_func()
527 *((void * *)v_rc) = ((void *(*)(void *))(hf->hf_ptr))(v1); in ap_hook_call_func()
[all …]
/mirbsd/src/usr.sbin/httpd/src/include/
Dap_hook.h308 void *hf_ptr; /* function pointer */ member