Searched refs:thread_call_allocate (Results 1 - 25 of 30) sorted by relevance

12

/xnu-2782.1.97/tools/tests/testkext/
H A Dtestthreadcall.cpp37 IOLog("Attempting thread_call_allocate\n");
38 tcall = thread_call_allocate(thread_call_test_func, this);
49 IOLog("Attempting thread_call_allocate\n");
50 tcall2 = thread_call_allocate(thread_call_test_func2, this);
/xnu-2782.1.97/osfmk/chud/
H A Dchud_osfmk_callback.c55 return (chud_timer_t)thread_call_allocate((thread_call_func_t)func, param0);
/xnu-2782.1.97/osfmk/kern/
H A Dthread_call.h215 thread_call_allocate or thread_call_allocate_with_priority, and that invocations
224 @function thread_call_allocate
232 extern thread_call_t thread_call_allocate(
239 @discussion Identical to thread_call_allocate, except that priority
254 @discussion Should only be used on thread calls allocated with thread_call_allocate
H A Dthread_call.c707 call = thread_call_allocate(func, param0);
714 * thread_call_allocate:
719 thread_call_allocate( function
/xnu-2782.1.97/bsd/net/
H A Ddevtimer.c185 timer->dt_callout = thread_call_allocate(devtimer_process, timer);
187 _devtimer_printf("devtimer: thread_call_allocate failed\n");
H A Dbpf.c702 d->bd_thread_call = thread_call_allocate(bpf_timed_out, d);
/xnu-2782.1.97/osfmk/default_pager/
H A Ddefault_pager.c299 thread_call_allocate(default_pager_backing_store_monitor, NULL);
/xnu-2782.1.97/iokit/Kernel/
H A DIOTimerEventSource.cpp187 calloutEntry = (void *) thread_call_allocate((thread_call_func_t) &IOTimerEventSource::timeoutAndRelease,
H A DIOPlatformExpert.cpp807 shutdown_hang = thread_call_allocate( &IOShutdownNotificationsTimedOut,
H A DIOServicePM.cpp422 fWatchdogTimer = thread_call_allocate(
426 fAckTimer = thread_call_allocate(
428 fSettleTimer = thread_call_allocate(
430 fIdleTimer = thread_call_allocate(
432 fDriverCallEntry = thread_call_allocate(
H A DIOPMrootDomain.cpp882 aggressivesThreadCall = thread_call_allocate(handleAggressivesFunction, this);
891 extraSleepTimer = thread_call_allocate(
895 diskSyncCalloutEntry = thread_call_allocate(
898 hibDebugSetupEntry = thread_call_allocate(
903 fullWakeThreadCall = thread_call_allocate(
/xnu-2782.1.97/bsd/dev/dtrace/
H A Ddtrace_glue.c542 wrapTC->TChdl = thread_call_allocate( _cyclic_apply, NULL );
600 thread_call_t call = thread_call_allocate(func, NULL);
982 return (taskq_t *)thread_call_allocate( (thread_call_func_t)_taskq_apply, NULL );
/xnu-2782.1.97/bsd/kern/
H A Dmcache.c199 mcache_reap_tcall = thread_call_allocate(mcache_reap_timeout, NULL);
200 mcache_update_tcall = thread_call_allocate(mcache_update, NULL);
202 panic("mcache_init: thread_call_allocate failed");
H A Dkern_fork.c1153 child_proc->p_rcall = thread_call_allocate((thread_call_func_t)realitexpire, child_proc);
H A Dkern_event.c884 callout = thread_call_allocate(filt_timerexpire, kn);
H A Dkern_memorystatus.c762 memorystatus_idle_demotion_call = thread_call_allocate((thread_call_func_t)memorystatus_perform_idle_demotion, NULL);
/xnu-2782.1.97/bsd/miscfs/specfs/
H A Dspec_vnops.c1269 info->throttle_timer_call = thread_call_allocate((thread_call_func_t)throttle_timer, (thread_call_param_t)info);
1373 info->throttle_timer_call = thread_call_allocate((thread_call_func_t)throttle_timer, (thread_call_param_t)info);
/xnu-2782.1.97/bsd/netinet/
H A Dtcp_lro.c119 tcp_lro_timer = thread_call_allocate(tcp_lro_timer_proc, NULL);
H A Dtcp_subr.c482 if ((tcp_timer_list.call = thread_call_allocate(tcp_run_timerlist, NULL)) == NULL) {
/xnu-2782.1.97/osfmk/vm/
H A Dvm_shared_region.c549 shared_region->sr_timer_call = thread_call_allocate(
/xnu-2782.1.97/bsd/nfs/
H A Dnfs_vfsops.c346 nfs_request_timer_call = thread_call_allocate(nfs_request_timer, NULL);
347 nfs_buf_timer_call = thread_call_allocate(nfs_buf_timer, NULL);
348 nfs4_callback_timer_call = thread_call_allocate(nfs4_callback_timer, NULL);
2494 nmp->nm_renew_timer = thread_call_allocate(nfs4_renew_timer, nmp);
3950 nfs_ephemeral_mount_harvester_timer = thread_call_allocate((thread_call_func_t)nfs_ephemeral_mount_harvester_timer_func, NULL);
H A Dnfs_serv.c224 nfsrv_fmod_timer_call = thread_call_allocate(nfsrv_fmod_timer, NULL);
226 nfsrv_deadsock_timer_call = thread_call_allocate(nfsrv_deadsock_timer, NULL);
227 nfsrv_wg_timer_call = thread_call_allocate(nfsrv_wg_timer, NULL);
/xnu-2782.1.97/bsd/vfs/
H A Dvfs_fsevents.c1112 event_delivery_timer = thread_call_allocate((thread_call_func_t)delayed_event_delivery, NULL);
/xnu-2782.1.97/osfmk/kdp/
H A Dkdp_udp.c351 kdp_timer_call = thread_call_allocate(kdp_ml_enter_debugger_wrapper, NULL);
/xnu-2782.1.97/osfmk/ipc/
H A Dipc_importance.c3175 thread_call_allocate(ipc_importance_task_delayed_drop_scan, NULL);

Completed in 268 milliseconds

12