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

12

/darwin-on-arm/xnu/tools/tests/testkext/
H A Dtestthreadcall.cpp35 IOLog("Attempting thread_call_allocate\n");
36 tcall = thread_call_allocate(thread_call_test_func, this);
/darwin-on-arm/xnu/osfmk/chud/
H A Dchud_osfmk_callback.c55 return (chud_timer_t)thread_call_allocate((thread_call_func_t)func, param0);
/darwin-on-arm/xnu/osfmk/kern/
H A Dthread_call.h157 thread_call_allocate or thread_call_allocate_with_priority, and that invocations
166 @function thread_call_allocate
174 extern thread_call_t thread_call_allocate(
181 @discussion Identical to thread_call_allocate, except that priority
196 @discussion Should only be used on thread calls allocated with thread_call_allocate
H A Dthread_call.c726 call = thread_call_allocate(func, param0);
733 * thread_call_allocate:
738 thread_call_allocate( function
/darwin-on-arm/xnu/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.c681 d->bd_thread_call = thread_call_allocate(bpf_timed_out, d);
/darwin-on-arm/xnu/osfmk/default_pager/
H A Ddefault_pager.c305 thread_call_allocate(default_pager_backing_store_monitor, NULL);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOTimerEventSource.cpp188 calloutEntry = (void *) thread_call_allocate((thread_call_func_t) &IOTimerEventSource::timeoutAndRelease,
H A DIOPlatformExpert.cpp779 shutdown_hang = thread_call_allocate( &IOShutdownNotificationsTimedOut,
H A DIOServicePM.cpp559 fAckTimer = thread_call_allocate(
561 fSettleTimer = thread_call_allocate(
563 fIdleTimer = thread_call_allocate(
565 fDriverCallEntry = thread_call_allocate(
H A DIOPMrootDomain.cpp878 aggressivesThreadCall = thread_call_allocate(handleAggressivesFunction, this);
886 extraSleepTimer = thread_call_allocate(
890 diskSyncCalloutEntry = thread_call_allocate(
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace_glue.c515 wrapTC->TChdl = thread_call_allocate( _cyclic_apply, NULL );
573 thread_call_t call = thread_call_allocate(func, NULL);
944 return (taskq_t *)thread_call_allocate( (thread_call_func_t)_taskq_apply, NULL );
/darwin-on-arm/xnu/bsd/miscfs/specfs/
H A Dspec_vnops.c1014 info->throttle_timer_call = thread_call_allocate((thread_call_func_t)throttle_timer, (thread_call_param_t)info);
1070 info->throttle_timer_call = thread_call_allocate((thread_call_func_t)throttle_timer, (thread_call_param_t)info);
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_fork.c1121 child_proc->p_rcall = thread_call_allocate((thread_call_func_t)realitexpire, child_proc);
H A Dpthread_synch.c1235 wq->wq_atimer_call = thread_call_allocate((thread_call_func_t)workqueue_add_timer, (thread_call_param_t)wq);
2447 psynch_thcall = thread_call_allocate(psynch_wq_cleanup, NULL);
H A Dkern_event.c817 callout = thread_call_allocate(filt_timerexpire, kn);
/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_lro.c119 tcp_lro_timer = thread_call_allocate(tcp_lro_timer_proc, NULL);
H A Dtcp_subr.c454 if ((tcp_timer_list.call = thread_call_allocate(tcp_run_timerlist, NULL)) == NULL) {
/darwin-on-arm/xnu/osfmk/vm/
H A Dvm_shared_region.c493 shared_region->sr_timer_call = thread_call_allocate(
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_vfsops.c343 nfs_request_timer_call = thread_call_allocate(nfs_request_timer, NULL);
344 nfs_buf_timer_call = thread_call_allocate(nfs_buf_timer, NULL);
345 nfs4_callback_timer_call = thread_call_allocate(nfs4_callback_timer, NULL);
2483 nmp->nm_renew_timer = thread_call_allocate(nfs4_renew_timer, nmp);
3891 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);
H A Dnfs_gss.c250 nfs_gss_svc_ctx_timer_call = thread_call_allocate(nfs_gss_svc_ctx_timer, NULL);
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_fsevents.c1071 event_delivery_timer = thread_call_allocate((thread_call_func_t)delayed_event_delivery, NULL);
/darwin-on-arm/xnu/osfmk/kdp/
H A Dkdp_udp.c271 kdp_timer_call = thread_call_allocate(kdp_ml_enter_debugger_wrapper, NULL);
/darwin-on-arm/xnu/libkern/c++/
H A DOSKext.cpp6233 sDestroyLinkContextThread = thread_call_allocate(
6407 sUnloadCallout = thread_call_allocate(&_OSKextConsiderUnloads, 0);

Completed in 205 milliseconds

12