Lines Matching full:hdl
51 audit_module_handle *hp, hdl; in free_handles() local
57 hdl = *hp; in free_handles()
58 if (hdl->vt.close != NULL) in free_handles()
59 hdl->vt.close(hdl->auctx); in free_handles()
60 free(hdl); in free_handles()
76 audit_module_handle *list = NULL, hdl = NULL; in load_audit_modules() local
95 hdl = k5alloc(sizeof(*hdl), &ret); in load_audit_modules()
96 if (hdl == NULL) in load_audit_modules()
98 ret = (*mod)(context, 1, 1, (krb5_plugin_vtable)&hdl->vt); in load_audit_modules()
100 free(hdl); in load_audit_modules()
101 hdl = NULL; in load_audit_modules()
105 vtable = hdl->vt; in load_audit_modules()
114 hdl->auctx = auctx; in load_audit_modules()
116 list[count++] = hdl; in load_audit_modules()
118 hdl = NULL; in load_audit_modules()
126 free(hdl); in load_audit_modules()
231 audit_module_handle *hp, hdl; in kau_kdc_stop() local
237 hdl = *hp; in kau_kdc_stop()
238 if (hdl->vt.kdc_stop != NULL) in kau_kdc_stop()
239 hdl->vt.kdc_stop(hdl->auctx, ev_success); in kau_kdc_stop()
246 audit_module_handle *hp, hdl; in kau_kdc_start() local
252 hdl = *hp; in kau_kdc_start()
253 if (hdl->vt.kdc_start != NULL) in kau_kdc_start()
254 hdl->vt.kdc_start(hdl->auctx, ev_success); in kau_kdc_start()
263 audit_module_handle *hp, hdl; in kau_as_req() local
269 hdl = *hp; in kau_as_req()
270 if (hdl->vt.as_req != NULL) in kau_as_req()
271 hdl->vt.as_req(hdl->auctx, ev_success, state); in kau_as_req()
280 audit_module_handle *hp, hdl; in kau_tgs_req() local
286 hdl = *hp; in kau_tgs_req()
287 if (hdl->vt.tgs_req != NULL) in kau_tgs_req()
288 hdl->vt.tgs_req(hdl->auctx, ev_success, state); in kau_tgs_req()
297 audit_module_handle *hp, hdl; in kau_s4u2self() local
303 hdl = *hp; in kau_s4u2self()
304 if (hdl->vt.tgs_s4u2self != NULL) in kau_s4u2self()
305 hdl->vt.tgs_s4u2self(hdl->auctx, ev_success, state); in kau_s4u2self()
314 audit_module_handle *hp, hdl; in kau_s4u2proxy() local
320 hdl = *hp; in kau_s4u2proxy()
321 if (hdl->vt.tgs_s4u2proxy != NULL) in kau_s4u2proxy()
322 hdl->vt.tgs_s4u2proxy(hdl->auctx, ev_success, state); in kau_s4u2proxy()
331 audit_module_handle *hp, hdl; in kau_u2u() local
337 hdl = *hp; in kau_u2u()
338 if (hdl->vt.tgs_u2u != NULL) in kau_u2u()
339 hdl->vt.tgs_u2u(hdl->auctx, ev_success, state); in kau_u2u()