/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/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 498 const std::vector<Vma>& maps = proc.Maps(); in DexDiagMain() 514 if (!DisplayMappingIfFromVdexFile(proc, vma, &printer)) { in DexDiagMain() 519 if (!DisplayMappingIfFromOatFile(proc, vma, &printer)) { in DexDiagMain()
|
/art/tools/ |
D | teardown-buildbot-device.sh | 106 remove_filesystem_from_chroot proc proc true
|
D | setup-buildbot-device.sh | 162 || adb shell mount -t proc proc "$ART_TEST_CHROOT/proc"
|
D | dt_fds_forward.py | 144 proc = subprocess.Popen(full_cmd, close_fds=False) 147 proc.wait()
|
D | run-libjdwp-tests.sh | 104 …args+=(-Djpda.settings.debuggeeAgentExtraOptions=directlog=y,logfile=/proc/self/fd/2,logflags=$ver…
|
/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/test/testrunner/ |
D | testrunner.py | 265 proc = subprocess.Popen(['adb', 'shell', 'getprop', 'ro.product.name'], 270 output = proc.communicate(timeout = 2)[0] 271 success = not proc.wait() 563 proc = subprocess.Popen(command.split(), stderr=subprocess.STDOUT, universal_newlines=True) 565 proc = subprocess.Popen(command.split(), stderr=subprocess.STDOUT, stdout = subprocess.PIPE, 567 script_output = proc.communicate(timeout=timeout)[0] 568 test_passed = not proc.wait()
|
/art/tools/amm/models/ |
D | DexCode.md | 7 mapped `.vdex` file read from `/proc/self/maps`. Different Android platform
|
D | SoCode.md | 4 sizes of all loaded `.so` files. It is calculated by reading `/proc/self/maps`.
|
/art/openjdkjvmti/ |
D | ti_thread.h | 107 jvmtiStartFunction proc,
|
D | ti_thread.cc | 755 jvmtiStartFunction proc; member 790 data->proc(data->jvmti_env, env, const_cast<void*>(data->arg)); in AgentCallback() 801 jvmtiStartFunction proc, in RunAgentThread() argument 814 if (proc == nullptr) { in RunAgentThread() 835 data->proc = proc; in RunAgentThread()
|
D | OpenjdkJvmTi.cc | 239 jvmtiStartFunction proc, in RunAgentThread() argument 243 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()
|