/external/perfetto/src/traced/probes/ps/ |
D | process_stats_data_source_unittest.cc | 82 auto first_process = ps_tree.processes(0); in TEST_F() 132 EXPECT_THAT(ps_tree.processes(), in TEST_F() 142 EXPECT_THAT(ps_tree.processes(), in TEST_F() 173 ASSERT_EQ(ps_tree.processes(0).pid(), 42); in TEST_F() 174 ASSERT_EQ(ps_tree.processes(0).ppid(), 17); in TEST_F() 175 ASSERT_THAT(ps_tree.processes(0).cmdline(), in TEST_F() 211 ASSERT_EQ(ps_tree.processes(0).pid(), 42); in TEST_F() 212 ASSERT_EQ(ps_tree.processes(0).ppid(), 18); in TEST_F() 213 ASSERT_THAT(ps_tree.processes(0).cmdline(), in TEST_F() 265 EXPECT_THAT(ps_tree.processes(), in TEST_F() [all …]
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | localintermediate.h | 171 processes.push_back(process); in addProcess() 175 processes.push_back(process); in addProcess() 179 processes.back().append(" "); in addArgument() 181 processes.back().append(argString); in addArgument() 185 processes.back().append(" "); in addArgument() 186 processes.back().append(arg); in addArgument() 190 processes.back().append(" "); in addArgument() 191 processes.back().append(arg); in addArgument() 201 const std::vector<std::string>& getProcesses() const { return processes; } in getProcesses() 204 std::vector<std::string> processes; [all …]
|
/external/autotest/client/site_tests/platform_RootPartitionsNotMounted/ |
D | platform_RootPartitionsNotMounted.py | 83 processes = [] 88 processes.append(path) 89 return processes 109 processes = self.get_process_list([self._UPDATE_ENGINE_PATH]) 110 if not processes: 112 logging.debug('Active processes: %s' % ', '.join(processes)) 114 for process in processes:
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowActivityManager.java | 34 private static List<ActivityManager.RunningAppProcessInfo> processes = field in ShadowActivityManager 45 processes.add(processInfo); in ShadowActivityManager() 83 if (processes.isEmpty()) { in getRunningAppProcesses() 86 return processes; in getRunningAppProcesses() 93 for (ActivityManager.RunningAppProcessInfo info : processes) { in getMyMemoryState() 170 public void setProcesses(List<ActivityManager.RunningAppProcessInfo> processes) { in setProcesses() argument 171 ShadowActivityManager.processes.clear(); in setProcesses() 172 ShadowActivityManager.processes.addAll(processes); in setProcesses() 236 processes.clear(); in reset()
|
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/ |
D | hotplug03.txt | 7 processes, and then onlining the CPU, and checking to make sure at least 8 one of the processes moved to that CPU. 22 Start up a number of processes equal to twice the number of CPUs we 23 have, so we can be pretty sure that we've got enough processes that at 28 Wait a few seconds, to allow the process scheduler to move processes 37 Kill all of the load processes
|
/external/ltp/testcases/kernel/fs/mongo/ |
D | mongo.pl | 232 my ($phase_num, $phase_name, $cmd, $dir1, $dir2, $flag, $processes) = @_ ; 245 $pp=$processes; 278 if ($processes > 1) { 377 my ($processes) = @_ ; 378 $p = $processes; 424 if ($processes > 1) { 425 print LOG2 "MONGO_MULTI_PROCESS ($processes processes) BENCHMARK RESULTS (time in sec.)\n"; 444 if ($processes > 1) { 445 print LOG3 "MONGO_MULTI_PROCESS ($processes) \n"; 472 if($processes > 1) {
|
D | README | 6 # run_mongo <device> <processes> 10 <processes> - number of processes 24 mongo.pl <filesystem> <device> <test_dir> <log> <processes>
|
/external/v8/tools/clang/scripts/ |
D | test_tool.py | 64 processes = [] 82 processes.append(subprocess.Popen(args, stdout=subprocess.PIPE)) 89 processes.append(subprocess.Popen( 90 args, stdin=processes[-1].stdout, stdout=subprocess.PIPE)) 97 processes.append(subprocess.Popen( 98 args, stdin=processes[-1].stdout, stdout=subprocess.PIPE)) 101 stdout, _ = processes[-1].communicate() 102 for process in processes:
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/ |
D | optpmap.py | 28 def pmap(func, iterable, processes, should_print_progress, *args, **kwargs): argument 44 if processes == 1: 49 processes=processes)
|
/external/python/cpython2/Doc/includes/ |
D | mp_synchronize.py | 133 processes = [ 139 for p in processes: 142 for p in processes: 177 processes = [multiprocessing.Process(target=event_func, args=(event,)) 180 for p in processes: 189 for p in processes:
|
/external/v8/tools/gcmole/ |
D | parallel.py | 37 processes = multiprocessing.cpu_count() variable 38 pool = multiprocessing.Pool(processes=processes)
|
/external/linux-kselftest/tools/testing/selftests/powerpc/benchmarks/ |
D | context_switch.c | 272 static int processes; variable 278 if (!processes) in mutex_lock() 299 if (!processes) in mutex_unlock() 316 if (!processes) { in futex_setup() 383 { "process", no_argument, &processes, 1 }, 456 if (processes) in main() 468 printf("Using %s with ", processes ? "processes" : "threads"); in main()
|
/external/syzkaller/pkg/report/testdata/gvisor/report/ |
D | 11 | 1 TITLE: FATAL ERROR: error getting processes for container: error executing in sandbox: EOF 6 W0622 12:13:40.386697 9726 x:0] FATAL ERROR: error getting processes for container: error execut… 7 error getting processes for container: error executing in sandbox: EOF
|
D | 13 | 1 TITLE: FATAL ERROR: error getting processes for container: error executing in sandbox: EOF 9 W0623 07:55:00.082589 64365 x:0] FATAL ERROR: error getting processes for container: error execut… 10 error getting processes for container: error executing in sandbox: EOF
|
/external/v8/tools/testrunner/local/ |
D | pool.py | 106 self.processes = [] 160 self.processes.append(p) 241 for _ in self.processes: 247 for p in self.processes: 250 for p in self.processes:
|
/external/python/cpython2/Doc/library/ |
D | ipc.rst | 8 The modules described in this chapter provide mechanisms for different processes 11 Some modules only work for two processes that are on the same machine, e.g. 13 that two or more processes can use to communicate across machines.
|
/external/selinux/python/sepolicy/sepolicy/help/ |
D | lockdown_ptrace.txt | 4 …ility of processes on the computer system from examining other processes on the system, including …
|
/external/python/cpython3/Doc/library/ |
D | ipc.rst | 8 networking and inter-processes communication. 10 Some modules only work for two processes that are on the same machine, e.g. 12 that two or more processes can use to communicate across machines.
|
D | multiprocessing.rst | 14 :mod:`multiprocessing` is a package that supports spawning processes using an 26 distributing the input data across processes (data parallelism). The following 28 so that child processes can successfully import that module. This basic example 48 In :mod:`multiprocessing`, processes are spawned by creating a :class:`Process` 130 Child processes no longer inherit all of the parents inheritable 135 semaphores created by processes of the program. When all processes 181 processes for a different context. In particular, locks created using 182 the *fork* context cannot be passed to processes started using the 197 Exchanging objects between processes 201 processes: [all …]
|
/external/ltp/testcases/network/nfsv4/locks/ |
D | README | 7 Several slave processes try to perform operations on this region, such 16 Slaves are concurrent processes or threads. 19 -T : Use threads instead of processes (optional). 26 ./locktests -n <number of concurent processes> -f <test file> -c <number of clients> 100 the SLAVE processes try to perform the following operations on the 127 200 processes of 200 successfully ran test : READ ON A READ LOCK 128 200 processes of 200 successfully ran test : SET A READ LOCK ON A WRITE LOCK 134 least 2 different processes (thread information cannot be shared
|
/external/bcc/tools/ |
D | pidpersec_example.txt | 4 This shows the number of new processes created per second, measured by tracing 18 Each second there are four new processes (this happens to be caused by a 22 increase in the number of new processes as the necessary commands were run.
|
/external/autotest/site_utils/ |
D | log_socket_server_unittest.py | 42 processes = [] 49 processes.append(process) 51 for process in processes:
|
/external/autotest/client/site_tests/kernel_Oom/ |
D | control | 8 before we kill processes (OOM) when we consume a lot of memory. 11 PURPOSE = "Checks that processes get killed in very low memory conditions." 14 Fails if we OOM (ie, processes get killed) before we get low memory
|
/external/perfetto/protos/perfetto/config/profiling/ |
D | heapprofd_config.proto | 43 // This transformation is also applied to the processes' command lines when 50 // Profile all processes eligible for profiling on the system. 51 // See https://docs.perfetto.dev/#/heapprofd?id=target-processes for which 52 // processes are eligible. 73 // Size of the shared memory buffer between the profiled processes and
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | process.py | 283 processes, argument 318 n_children_alive = sum(p.is_alive() for p in processes.values()) 330 n_children_alive = sum(p.is_alive() for p in processes.values()) 336 for p in processes.values(): 353 worker_sentinels = [p.sentinel for p in processes.values()] 392 for p in processes.values(): 400 p = processes.pop(result_item) 402 if not processes:
|