Home
last modified time | relevance | path

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

/xnu-8792.61.2/osfmk/kern/
H A Dremote_time.c142 bt_params_find(uint64_t local_ts) in bt_params_find() argument
151 if (local_ts >= bt_params_hist[idx].base_local_ts) { in bt_params_find()
/xnu-8792.61.2/bsd/kern/
H A Dmach_loader.c2837 uint32_t *local_ts = NULL; in load_threadstate() local
2845 local_ts = (uint32_t *)kalloc_data(local_ts_size, Z_WAITOK); in load_threadstate()
2846 if (local_ts == NULL) { in load_threadstate()
2849 memcpy(local_ts, ts, local_ts_size); in load_threadstate()
2850 ts = local_ts; in load_threadstate()
2876 result->threadstate = local_ts; in load_threadstate()
2881 if (local_ts) { in load_threadstate()
2882 kfree_data(local_ts, local_ts_size); in load_threadstate()