Home
last modified time | relevance | path

Searched refs:proc (Results 1 – 13 of 13) sorted by relevance

/art/tools/jfuzz/
Drun_jfuzz_test_nightly.py59 for proc in processes:
60 proc.wait()
62 for proc in processes:
63 proc.kill()
/art/test/063-process-manager/src/
DMain.java11 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/
Dcommon.py156 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/
Dtestrunner.py280 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/
Ddt_fds_forward.py144 proc = subprocess.Popen(full_cmd, close_fds=False)
147 proc.wait()
/art/tools/amm/models/
DSoCode.md4 sizes of all loaded `.so` files. It is calculated by reading `/proc/self/maps`.
DDexCode.md7 mapped `.vdex` file read from `/proc/self/maps`. Different Android platform
/art/dexlayout/
Ddexdiag.cc495 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/
Dti_thread.h81 jvmtiStartFunction proc,
Dti_thread.cc701 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()
DOpenjdkJvmTi.cc229 jvmtiStartFunction proc, in RunAgentThread() argument
233 return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); in RunAgentThread()
/art/tools/titrace/
DREADME.md51 > 09-14 13:28:08.680 7584 8192 I ActivityManager: Start proc 17614:com.littleinc.orm_benchmark/u0…
/art/openjdkjvmti/include/
Djvmti.h1058 jvmtiStartFunction proc,
1866 jvmtiStartFunction proc, in RunAgentThread()
1869 return functions->RunAgentThread(this, thread, proc, arg, priority); in RunAgentThread()