Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/kern/
H A Dclock_oldops.c169 .cl_ops = &sysclk_ops,
174 .cl_ops = &calend_ops,
207 if (clock->cl_ops && clock->cl_ops->c_config) { in clock_oldconfig()
208 if ((*clock->cl_ops->c_config)() == 0) { in clock_oldconfig()
209 clock->cl_ops = NULL; in clock_oldconfig()
229 if (clock->cl_ops && clock->cl_ops->c_init) { in clock_oldinit()
230 (*clock->cl_ops->c_init)(); in clock_oldinit()
246 if (clock->cl_ops) { in clock_service_create()
267 if ((*clock)->cl_ops == 0) { in host_get_clock_service()
289 if ((*clock)->cl_ops == 0) { in host_get_clock_control()
[all …]
H A Dclock.h90 clock_ops_t cl_ops; /* operations list */ member