Home
last modified time | relevance | path

Searched refs:GetProcPID (Results 1 – 8 of 8) sorted by relevance

/xnu-11215/tools/lldbmacros/
H A Dmemorystatus.py3 from process import GetProcName, GetProcPID, GetTaskFromProc, GetTaskSummary
81 GetProcPID(proc_val),
H A Dprocess.py36 def GetProcPID(proc): function
101 return GetProcPID(p)
124 ).format(GetProcName(proc), GetProcPID(proc), task=GetTaskFromProc(proc), p=proc)
159 if int(GetProcPID(p)) == int(pid):
176 if GetProcPID(proc) == search_pid:
804 pid = int(GetProcPID(proc))
916 if pval is not None and GetProcPID(pval) == pidval:
1819 GetProcPID(proc), GetProcName(proc), unsigned(proc))
1835 GetProcPID(p), GetProcName(p), unsigned(p)))
2088 task["pid"] = int(GetProcPID(pval))
H A Duserspace.py289 pid = GetProcPID(pval)
356 if pval is not None and GetProcPID(pval) == pidval:
H A Dscheduler.py1025 proc_pid = GetProcPID(proc)
1039 proc_pid = GetProcPID(proc)
1047 proc_pid = GetProcPID(proc)
H A Dmisc.py314 GetProcPID(proc),
H A Dipc.py777 if pid != GetProcPID(proc_val):
920 return format_str.format(t, GetProcPID(pval), GetProcNameForTask(t), count)
H A Dmemory.py1455 vmstats.pid = GetProcPID(proc)
1840 vnode_lock_output += ("PID {: <18d}").format(GetProcPID(lockf_proc))
5225 if interested_pid != -1 and int(interested_pid) != int(GetProcPID(proc_val)) :
5286 GetProcPID(proc_val),
/xnu-11215/tools/lldbmacros/tests/lldb_tests/
H A Dtest_process.py56 self.assertEqual(tst_process.GetProcPID(proc), 12345)
57 self.assertEqual(tst_process.GetProcPID(None), -1)