HomeSort by relevance Sort by last modified time
    Searched refs:pid_list (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/
process_info_snapshot_mac_unittest.cc 25 std::vector<base::ProcessId> pid_list; local
26 pid_list.push_back(1);
28 ASSERT_TRUE(snapshot.Sample(pid_list));
65 std::vector<base::ProcessId> pid_list; local
66 pid_list.push_back(pid);
67 pid_list.push_back(ppid);
69 ASSERT_TRUE(snapshot.Sample(pid_list));
122 std::vector<base::ProcessId> pid_list; local
123 pid_list.push_back(process_handle);
125 ASSERT_TRUE(snapshot.Sample(pid_list));
    [all...]
process_info_snapshot_mac.cc 128 const std::vector<base::ProcessId>& pid_list,
138 for (std::vector<base::ProcessId>::const_iterator it = pid_list.begin();
139 it != pid_list.end(); ++it) {
345 bool ProcessInfoSnapshot::Sample(std::vector<base::ProcessId> pid_list) {
349 if (pid_list.empty())
351 if (pid_list.size() > kMaxPidListSize) {
352 // The spec says |pid_list| *must* not have more than this many entries.
358 for (std::vector<base::ProcessId>::iterator it = pid_list.begin();
359 it != pid_list.end(); ++it) {
377 for (std::vector<base::ProcessId>::iterator it = pid_list.begin()
    [all...]
process_info_snapshot.h 36 // |pid_list| - list of |ProcessId|s on which to capture information; must
39 bool Sample(std::vector<base::ProcessId> pid_list);
  /external/oprofile/opjitconv/
opjitconv.c 439 struct procid * pid_list = NULL; local
448 for (id = pid_list; id != NULL; id = id->next) {
464 this_proc->next = pid_list;
465 pid_list = this_proc;
472 for (id = pid_list; id; id = nxt) {

Completed in 103 milliseconds