/art/tools/jfuzz/ |
D | run_jfuzz_test_nightly.py | 59 for proc in processes: 60 proc.wait() 62 for proc in processes: 63 proc.kill()
|
/art/test/063-process-manager/src/ |
D | Main.java | 11 Process proc = pb.start(); in main() local 12 proc.waitFor(); in main() 28 Process proc = pb.start(); in child() local 31 proc.waitFor(); in child()
|
/art/tools/ |
D | run-libcore-tests.py | 212 universal_newlines=True) as proc: 213 assert(proc.wait() == 0) # Check the exit code. 214 match = re.match(r'\d*-(\d*)', proc.stdout.read()) 244 universal_newlines=True) as proc: 245 return test_name, cmd, proc.communicate()[0], proc.wait()
|
D | buildbot-teardown-device.sh | 112 remove_filesystem_from_chroot proc proc true
|
D | buildbot-setup-device.sh | 164 || adb shell mount -t proc proc "$ART_TEST_CHROOT/proc"
|
D | dt_fds_forward.py | 147 proc = subprocess.Popen(full_cmd, close_fds=False) 150 proc.wait()
|
D | run-libjdwp-tests.sh | 124 …args+=(-Djpda.settings.debuggeeAgentExtraOptions=directlog=y,logfile=/proc/self/fd/2,logflags=$ver…
|
/art/test/testrunner/ |
D | testrunner.py | 165 def wait(self, proc, timeout): argument 176 self.procs[proc.pid] = proc 178 os.killpg(proc.pid, signal.SIGKILL) # kill_all has already been called. 180 output = proc.communicate(timeout=timeout)[0] 181 return_value = proc.wait() 186 del self.procs[proc.pid] 357 proc = subprocess.Popen(['adb', 'shell', 'getprop', 'ro.product.name'], 368 output = proc.communicate(timeout = timeout_val)[0] 369 success = not proc.wait() 661 proc = _popen( [all …]
|
/art/dexlayout/ |
D | dexdiag.cc | 326 static bool DisplayMappingIfFromVdexFile(ProcMemInfo& proc, const Vma& vma, Printer* printer) { in DisplayMappingIfFromVdexFile() argument 355 if (!proc.PageMap(vma, &pagemap)) { in DisplayMappingIfFromVdexFile() 414 static bool DisplayMappingIfFromOatFile(ProcMemInfo& proc, const Vma& vma, Printer* printer) { in DisplayMappingIfFromOatFile() argument 417 if (!proc.PageMap(vma, &pagemap) != 0) { in DisplayMappingIfFromOatFile() 496 ProcMemInfo proc(pid); in DexDiagMain() local 500 const std::vector<Vma>& maps = proc.MapsWithoutUsageStats(); in DexDiagMain() 516 if (!DisplayMappingIfFromVdexFile(proc, vma, &printer)) { in DexDiagMain() 521 if (!DisplayMappingIfFromOatFile(proc, vma, &printer)) { in DexDiagMain()
|
/art/tools/jvmti-agents/simple-profile/ |
D | README.md | 23 …DROID_HOST_OUT/lib64/libopenjdkjvmti.so '-agentpath:libsimpleprofiled.so=/proc/self/fd/2,dump_on_m… 47 > `java '-agentpath:libsimpleprofiled.so=/proc/self/fd/2,dump_on_main_stop' -cp tmp/helloworld/c… 52 …ith-agent $ANDROID_HOST_OUT/lib64/libsimpleprofiled.so=dump_on_main_stop,/proc/self/fd/1 001-Hello…
|
/art/tools/common/ |
D | common.py | 148 proc = Popen(cmd, stdout=stdout, stderr=stderr, env=env, 151 (output, stderr_output) = proc.communicate(timeout=timeout) 152 if proc.returncode == 0: 157 os.killpg(os.getpgid(proc.pid), signal.SIGTERM) 158 (output, stderr_output) = proc.communicate()
|
/art/openjdkjvmti/ |
D | ti_thread.h | 111 jvmtiStartFunction proc,
|
D | ti_thread.cc | 758 jvmtiStartFunction proc; member 793 data->proc(data->jvmti_env, env, const_cast<void*>(data->arg)); in AgentCallback() 804 jvmtiStartFunction proc, in RunAgentThread() argument 817 if (proc == nullptr) { in RunAgentThread() 838 data->proc = proc; in RunAgentThread()
|
D | OpenjdkJvmTi.cc | 241 jvmtiStartFunction proc, in RunAgentThread() argument 245 return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); in RunAgentThread()
|
/art/tools/jvmti-agents/titrace/ |
D | README.md | 51 > 09-14 13:28:08.680 7584 8192 I ActivityManager: Start proc 17614:com.littleinc.orm_benchmark/u0…
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1058 jvmtiStartFunction proc, 1866 jvmtiStartFunction proc, in RunAgentThread() 1869 return functions->RunAgentThread(this, thread, proc, arg, priority); in RunAgentThread()
|