Lines Matching refs:name
71 * @param name The hook's name (as a literal)
74 #define AP_DECLARE_HOOK(ret,name,args) \
75 APR_DECLARE_EXTERNAL_HOOK(ap,AP,ret,name,args)
78 #define AP_IMPLEMENT_HOOK_BASE(name) \
79 APR_IMPLEMENT_EXTERNAL_HOOK_BASE(ap,AP,name)
84 * is called ap_run_<i>name</i>.
86 * @param name The name of the hook
94 #define AP_IMPLEMENT_HOOK_VOID(name,args_decl,args_use) \
95 APR_IMPLEMENT_EXTERNAL_HOOK_VOID(ap,AP,name,args_decl,args_use)
103 * so. The implementation is called ap_run_<i>name</i>.
106 * @param name The name of the hook
117 #define AP_IMPLEMENT_HOOK_RUN_ALL(ret,name,args_decl,args_use,ok,decline) \
118 APR_IMPLEMENT_EXTERNAL_HOOK_RUN_ALL(ap,AP,ret,name,args_decl, \
124 * The implementation is called ap_run_<i>name</i>.
127 * @param name The name of the hook
137 #define AP_IMPLEMENT_HOOK_RUN_FIRST(ret,name,args_decl,args_use,decline) \
138 APR_IMPLEMENT_EXTERNAL_HOOK_RUN_FIRST(ap,AP,ret,name,args_decl, \
150 #define AP_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ret,name,args_decl,args_use,ok, \
152 APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ap,AP,ret,name,args_decl, \
159 #define AP_OPTIONAL_HOOK(name,fn,pre,succ,order) \
160 APR_OPTIONAL_HOOK(ap,name,fn,pre,succ,order)