HomeSort by relevance Sort by last modified time
    Searched refs:ppid (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium/chrome/browser/
process_info_snapshot_mac_unittest.cc 33 EXPECT_EQ(0, static_cast<int64>(proc_info.ppid));
60 base::ProcessId ppid = static_cast<base::ProcessId>(getppid()); local
63 EXPECT_NE(static_cast<int64>(ppid), 0);
67 pid_list.push_back(ppid);
75 EXPECT_EQ(ppid, proc_info.ppid);
86 ASSERT_TRUE(snapshot.GetProcInfo(ppid, &proc_info));
87 EXPECT_EQ(ppid, proc_info.pid);
88 EXPECT_NE(static_cast<int64>(proc_info.ppid), 0);
process_info_snapshot.h 50 base::ProcessId ppid; member in struct:ProcessInfoSnapshot::ProcInfoEntry
63 ppid(0),
memory_details_linux.cc 118 unsigned pid, ppid; local
120 if (sscanf(buf, "%u (%a[^)]) %*c %u", &pid, &process_name, &ppid) != 3)
125 process.parent = ppid;
process_info_snapshot_mac.cc 367 proc_info.ppid = kinfo.kp_eproc.e_ppid;
  /external/libcap-ng/libcap-ng-0.7/utils/
pscap.c 69 int pid, ppid, uid = -1, euid = -1; local
103 sscanf(buf, "%d (%15c", &ppid, cmd);
104 sscanf(tmp+2, "%c %d", &state, &ppid);
107 if (pid == 2 || ppid == 2)
153 "ppid", "pid", "name", "command",
170 printf("%-5d %-5d %-10s %-16s ", ppid, pid,
173 printf("%-5d %-5d %-10d %-16s ", ppid, pid,
proc-llist.h 33 pid_t ppid; // parent process ID member in struct:_lnode
netcap.c 59 int pid, ppid; local
89 sscanf(buf, "%d (%15c", &ppid, cmd);
90 sscanf(tmp+2, "%c %d", &state, &ppid);
93 if (pid == 2 || ppid == 2)
194 node.ppid = ppid;
220 "ppid", "pid", "acct", "command", "type", "port",
237 printf("%-5d %-5d %-10s", n->ppid, n->pid, tacct);
239 printf("%-5d %-5d %-10d", n->ppid, n->pid, last_uid);
proc-llist.c 47 newnode->ppid = node->ppid;
  /external/valgrind/main/memcheck/tests/
long_namespace_xml.stderr.exp 16 <ppid>...</ppid>
xml1.stderr.exp 16 <ppid>...</ppid>
  /frameworks/base/tools/preload/
Record.java 80 final int ppid; field in class:Record
128 ppid = Integer.parseInt(parts[0]);
Root.java 120 Proc parent = processes.get(record.ppid);