Searched refs:proc (Results 1 – 13 of 13) sorted by relevance
/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/common/ |
D | common.py | 156 proc = Popen(cmd, stdout=stdout, stderr=stderr, env=env, 159 (output, stderr_output) = proc.communicate(timeout=timeout) 160 if proc.returncode == 0: 165 os.killpg(os.getpgid(proc.pid), signal.SIGTERM) 166 (output, stderr_output) = proc.communicate()
|
/art/test/testrunner/ |
D | testrunner.py | 280 proc = subprocess.Popen(['adb', 'shell', 'getprop', 'ro.product.name'], 285 output = proc.communicate(timeout = 2)[0] 286 success = not proc.wait() 555 proc = subprocess.Popen(command.split(), stderr=subprocess.STDOUT, universal_newlines=True) 557 proc = subprocess.Popen(command.split(), stderr=subprocess.STDOUT, stdout = subprocess.PIPE, 559 script_output = proc.communicate(timeout=timeout)[0] 560 test_passed = not proc.wait()
|
/art/tools/ |
D | dt_fds_forward.py | 144 proc = subprocess.Popen(full_cmd, close_fds=False) 147 proc.wait()
|
/art/tools/amm/models/ |
D | SoCode.md | 4 sizes of all loaded `.so` files. It is calculated by reading `/proc/self/maps`.
|
D | DexCode.md | 7 mapped `.vdex` file read from `/proc/self/maps`. Different Android platform
|
/art/dexlayout/ |
D | dexdiag.cc | 495 pm_process_t* proc; in DexDiagMain() local 496 if (pm_process_create(ker, pid, &proc) != 0) { in DexDiagMain() 507 if (pm_process_maps(proc, &maps, &num_maps) != 0) { in DexDiagMain()
|
/art/openjdkjvmti/ |
D | ti_thread.h | 81 jvmtiStartFunction proc,
|
D | ti_thread.cc | 701 jvmtiStartFunction proc; member 736 data->proc(data->jvmti_env, env, const_cast<void*>(data->arg)); in AgentCallback() 747 jvmtiStartFunction proc, in RunAgentThread() argument 760 if (proc == nullptr) { in RunAgentThread() 781 data->proc = proc; in RunAgentThread()
|
D | OpenjdkJvmTi.cc | 229 jvmtiStartFunction proc, in RunAgentThread() argument 233 return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); in RunAgentThread()
|
/art/tools/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()
|