Searched refs:GetProcPID (Results 1 – 8 of 8) sorted by relevance
| /xnu-11215/tools/lldbmacros/ |
| H A D | memorystatus.py | 3 from process import GetProcName, GetProcPID, GetTaskFromProc, GetTaskSummary 81 GetProcPID(proc_val),
|
| H A D | process.py | 36 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 D | userspace.py | 289 pid = GetProcPID(pval) 356 if pval is not None and GetProcPID(pval) == pidval:
|
| H A D | scheduler.py | 1025 proc_pid = GetProcPID(proc) 1039 proc_pid = GetProcPID(proc) 1047 proc_pid = GetProcPID(proc)
|
| H A D | misc.py | 314 GetProcPID(proc),
|
| H A D | ipc.py | 777 if pid != GetProcPID(proc_val): 920 return format_str.format(t, GetProcPID(pval), GetProcNameForTask(t), count)
|
| H A D | memory.py | 1455 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 D | test_process.py | 56 self.assertEqual(tst_process.GetProcPID(proc), 12345) 57 self.assertEqual(tst_process.GetProcPID(None), -1)
|