Lines Matching refs:taskp
173 isc_task_t **taskp)
180 REQUIRE(taskp != NULL && *taskp == NULL);
221 *taskp = task;
331 isc_task_detach(isc_task_t **taskp) {
336 * Detach *taskp from its task.
339 REQUIRE(taskp != NULL);
340 task = *taskp;
352 *taskp = NULL;
427 isc_task_sendanddetach(isc_task_t **taskp, isc_event_t **eventp) {
432 * Send '*event' to '*taskp' and then detach '*taskp' from its
436 REQUIRE(taskp != NULL);
437 task = *taskp;
457 *taskp = NULL;
674 isc_task_destroy(isc_task_t **taskp) {
677 * Destroy '*taskp'.
680 REQUIRE(taskp != NULL);
682 isc_task_shutdown(*taskp);
683 isc_task_detach(taskp);