Home
last modified time | relevance | path

Searched refs:tdfind (Results 1 – 15 of 15) sorted by relevance

/freebsd/sys/tools/gdb/
H A Dfreebsd.py62 def tdfind(tid, pid=-1): function
64 td = tdfind.cached_threads.get(int(tid))
73 tdfind.cached_threads[int(ntid)] = td
78 tdfind.cached_threads = dict()
H A Dpcpu.py26 cpuid = tdfind(gdb.selected_thread().ptid[2])['td_oncpu']
H A Dvnet.py34 vnet = tdfind(gdb.selected_thread().ptid[2])['td_vnet']
/freebsd/sys/kern/
H A Dkern_thr.c449 ttd = tdfind((lwpid_t)uap->id, p->p_pid); in sys_thr_kill()
503 ttd = tdfind((lwpid_t)uap->id, uap->pid); in sys_thr_kill2()
595 ttd = tdfind((lwpid_t)uap->id, p->p_pid); in sys_thr_wake()
626 ttd = tdfind((lwpid_t)uap->id, p->p_pid); in sys_thr_set_name()
H A Dkern_cpuset.c925 td = tdfind(id, -1); in cpuset_which()
936 td = tdfind(id, -1); in cpuset_which()
H A Dkern_thread.c1767 tdfind(lwpid_t tid, pid_t pid) in tdfind() function
H A Dsys_process.c905 td2 = tdfind(pid, -1); in kern_ptrace()
H A Dkern_resource.c316 td1 = tdfind(uap->lwpid, -1); in sys_rtprio_thread()
H A Dkern_time.c301 td2 = tdfind(tid, p->p_pid); in get_cputime()
H A Dkern_sig.c2047 td2 = tdfind((lwpid_t)pid, p->p_pid); in kern_sigqueue()
2241 td = tdfind(sigev->sigev_notify_thread_id, p->p_pid); in sigev_findtd()
H A Dkern_proc.c526 td1 = tdfind(pid, -1); in pget()
2888 td = tdfind(lwpidarray[i], p->p_pid); in sysctl_kern_proc_kstack()
H A Dkern_umtx.c2048 td1 = tdfind(owner, shared ? -1 : td->td_proc->p_pid); in umtxq_sleep_pi()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_current.c198 td = tdfind(pid, -1); in linux_get_pid_task_int()
247 td = tdfind(task->pid, -1); in linux_task_exiting()
/freebsd/sys/sys/
H A Dproc.h1218 struct thread *tdfind(lwpid_t, pid_t);
/freebsd/sys/compat/linux/
H A Dlinux_misc.c2387 return (tdfind(tid, pid)); in linux_tdfind()