Searched refs:ondest (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/ntp/lib/isc/include/isc/
H A Dondestroy.h33 * (call it 'ondest').
38 * isc_ondestroy_t ondest;
44 * it must initialize the field ondest with a call to
47 * isc_ondestroy_init(&A->ondest).
58 * return(isc_ondestroy_register(&instance->ondest, task,eventp));
70 * isc_ondestroy_t ondest = instance->ondest;
74 * isc_ondestroy_notify(&ondest, instance);
87 isc_ondestroy_init(isc_ondestroy_t *ondest);
89 * Initialize the on ondest structur
[all...]
/freebsd-12-stable/contrib/ntp/lib/isc/
H A Dondestroy.c36 isc_ondestroy_init(isc_ondestroy_t *ondest) { argument
37 ondest->magic = ONDESTROY_MAGIC;
38 ISC_LIST_INIT(ondest->events);
42 isc_ondestroy_register(isc_ondestroy_t *ondest, isc_task_t *task, argument
48 REQUIRE(VALID_ONDESTROY(ondest));
60 ISC_LIST_APPEND(ondest->events, theevent, ev_link);
66 isc_ondestroy_notify(isc_ondestroy_t *ondest, void *sender) { argument
70 REQUIRE(VALID_ONDESTROY(ondest));
72 eventp = ISC_LIST_HEAD(ondest->events);
74 ISC_LIST_UNLINK(ondest
[all...]
H A Dmem.c1056 isc_ondestroy_t ondest; local
1113 ondest = ctx->ondestroy;
1119 isc_ondestroy_notify(&ondest, ctx);

Completed in 117 milliseconds