Searched refs:pval (Results 1 – 4 of 4) sorted by relevance
| /xnu-8019.80.24/tools/lldbmacros/ |
| H A D | process.py | 672 pval = proc.GetSBValue() 674 if str(pval.GetType()) != str(gettype('proc *')) : 675 return "Unknown type " + str(pval.GetType()) + " " + str(hex(proc)) 769 pval = Cast(tval.bsd_info, 'proc *') 770 print GetTaskSummary(tval) +" "+ GetProcSummary(pval) 785 pval = Cast(t.bsd_info, 'proc *') 786 if pval and GetProcPID(pval) == pidval: 788 print GetTaskSummary(t) + " " + GetProcSummary(pval) 802 pval = kern.GetValueFromAddress(cmd_args[0], 'proc *') 803 if not pval: [all …]
|
| H A D | userspace.py | 255 pval = Cast(task.bsd_info, 'proc *') 279 if pval: 280 ts = datetime.fromtimestamp(int(pval.p_start.tv_sec)) 285 if pval and (pval.p_flag & 0x4) == 0 : 298 if pval: 299 pid = GetProcPID(pval) 300 pname = GetProcName(pval) 301 path = GetProcName(pval) 302 ppid = pval.p_ppid 367 pval = Cast(t.bsd_info, 'proc *') [all …]
|
| H A D | ipc.py | 38 pval = Cast(task.bsd_info, 'proc *') 39 if int(pval) != 0: 40 proc_name += GetProcName(pval) 44 …out_string += format_string.format(task, GetProcPID(pval), task.thread_count, table_size, proc_nam… 471 pval = Cast(tval.bsd_info, 'proc *') 472 print GetTaskSummary(tval) + " " + GetProcSummary(pval) 488 pval = Cast(t.bsd_info, 'proc *') 489 print GetTaskSummary(t) + " " + GetProcSummary(pval) 821 pval = Cast(tval.bsd_info, 'proc *') 822 print GetTaskSummary(tval) + " " + GetProcSummary(pval) [all …]
|
| /xnu-8019.80.24/bsd/vfs/ |
| H A D | vfs_syscalls.c | 8376 int32_t pval = 0; in renameat_internal() local 8396 err = VNOP_PATHCONF(tvp, _PC_CASE_SENSITIVE, &pval, ctx); in renameat_internal() 8397 if (err != 0 || pval != 0) { in renameat_internal()
|