Home
last modified time | relevance | path

Searched refs:cl_ops (Results 1 – 2 of 2) sorted by relevance

/xnu-10002.41.9/osfmk/kern/
H A Dclock_oldops.c168 .cl_ops = &sysclk_ops,
172 .cl_ops = &calend_ops,
204 if (clock->cl_ops && clock->cl_ops->c_config) { in clock_oldconfig()
205 if ((*clock->cl_ops->c_config)() == 0) { in clock_oldconfig()
206 clock->cl_ops = NULL; in clock_oldconfig()
226 if (clock->cl_ops && clock->cl_ops->c_init) { in clock_oldinit()
227 (*clock->cl_ops->c_init)(); in clock_oldinit()
243 if (clock->cl_ops) { in clock_service_create()
264 if ((*clock)->cl_ops == 0) { in host_get_clock_service()
281 return (*clock->cl_ops->c_gettime)(cur_time); in clock_get_time()
[all …]
H A Dclock.h90 clock_ops_t cl_ops; /* operations list */ member