Searched refs:twp (Results 1 – 1 of 1) sorted by relevance
| /xnu-8020.140.41/osfmk/kern/ |
| H A D | task_policy.c | 183 static void add_taskwatch_locked(task_t task, task_watch_t * twp); 184 static void remove_taskwatch_locked(task_t task, task_watch_t * twp); 2982 add_taskwatch_locked(task_t task, task_watch_t * twp) in add_taskwatch_locked() argument 2984 queue_enter(&task->task_watchers, twp, task_watch_t *, tw_links); in add_taskwatch_locked() 2989 remove_taskwatch_locked(task_t task, task_watch_t * twp) in remove_taskwatch_locked() argument 2991 queue_remove(&task->task_watchers, twp, task_watch_t *, tw_links); in remove_taskwatch_locked() 3001 task_watch_t *twp = NULL; in proc_lf_pidbind() local 3020 twp = kalloc_type(task_watch_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); in proc_lf_pidbind() 3028 kfree_type(task_watch_t, twp); in proc_lf_pidbind() 3037 twp->tw_task = target_task; /* holds the task reference */ in proc_lf_pidbind() [all …]
|