Searched refs:pid_list (Results 1 - 9 of 9) sorted by relevance

/external/chromium/chrome/browser/
H A Dprocess_info_snapshot_mac_unittest.cc25 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...]
H A Dprocess_info_snapshot_mac.cc128 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) { argument
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
127 GetProcessMemoryInfoUsingPS( const std::vector<base::ProcessId>& pid_list, std::map<int,ProcessInfoSnapshot::ProcInfoEntry>& proc_info_entries) argument
[all...]
H A Dprocess_info_snapshot.h36 // |pid_list| - list of |ProcessId|s on which to capture information; must
39 bool Sample(std::vector<base::ProcessId> pid_list);
/external/chromium_org/chrome/browser/
H A Dprocess_info_snapshot_mac_unittest.cc27 std::vector<base::ProcessId> pid_list; local
28 pid_list.push_back(1);
30 ASSERT_TRUE(snapshot.Sample(pid_list));
67 std::vector<base::ProcessId> pid_list; local
68 pid_list.push_back(pid);
69 pid_list.push_back(ppid);
71 ASSERT_TRUE(snapshot.Sample(pid_list));
126 std::vector<base::ProcessId> pid_list; local
127 pid_list.push_back(process_handle);
129 ASSERT_TRUE(snapshot.Sample(pid_list));
[all...]
H A Dprocess_info_snapshot_mac.cc129 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) {
271 bool ProcessInfoSnapshot::Sample(std::vector<base::ProcessId> pid_list) { argument
275 if (pid_list.empty())
277 if (pid_list.size() > kMaxPidListSize) {
278 // The spec says |pid_list| *must* not have more than this many entries.
284 for (std::vector<base::ProcessId>::iterator it = pid_list.begin();
285 it != pid_list.end(); ++it) {
303 for (std::vector<base::ProcessId>::iterator it = pid_list
128 GetProcessMemoryInfoUsingPS( const std::vector<base::ProcessId>& pid_list, std::map<int,ProcessInfoSnapshot::ProcInfoEntry>& proc_info_entries) argument
[all...]
H A Dprocess_info_snapshot.h36 // |pid_list| - list of |ProcessId|s on which to capture information; must
39 bool Sample(std::vector<base::ProcessId> pid_list);
/external/chromium_org/tools/android/memdump/
H A Dmemreport.py209 pid_list = adb.ExtractPid(package_name)
211 ' '.join(pid_list))
214 for (pid, process) in zip(pid_list, process_stats):
/external/oprofile/opjitconv/
H A Dopjitconv.c439 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) {
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py1592 pid_list = self.ExtractPid(package)
1595 for pid in pid_list:

Completed in 287 milliseconds