Lines Matching full:ppid
76 u32 ppid; // Parent PID as in the userspace term (i.e task->real_parent->tgid in kernel)
117 data.ppid = task->real_parent->tgid;
149 data.ppid = task->real_parent->tgid;
174 print("%-16s %-6s %-6s %3s %s" % ("PCOMM", "PID", "PPID", "RET", "ARGS"))
182 ("ppid", ct.c_uint),
196 # This is best-effort PPID matching. Short-lived processes may exit
197 # before we get a chance to read the PPID.
198 # This is a fallback for when fetching the PPID from task->real_parent->tgip
204 if line.startswith("PPid:"):
235 ppid = event.ppid if event.ppid > 0 else get_ppid(event.pid)
236 ppid = b"%d" % ppid if ppid > 0 else b"?"
239 ppid, event.retval, argv_text))