Home
last modified time | relevance | path

Searched refs:proc (Results 1 – 16 of 16) 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/
Drun-libcore-tests.py212 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()
Dbuildbot-teardown-device.sh112 remove_filesystem_from_chroot proc proc true
Dbuildbot-setup-device.sh164 || adb shell mount -t proc proc "$ART_TEST_CHROOT/proc"
Ddt_fds_forward.py147 proc = subprocess.Popen(full_cmd, close_fds=False)
150 proc.wait()
Drun-libjdwp-tests.sh124 …args+=(-Djpda.settings.debuggeeAgentExtraOptions=directlog=y,logfile=/proc/self/fd/2,logflags=$ver…
/art/test/testrunner/
Dtestrunner.py165 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/
Ddexdiag.cc326 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/
DREADME.md23 …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/
Dcommon.py148 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/
Dti_thread.h111 jvmtiStartFunction proc,
Dti_thread.cc758 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()
DOpenjdkJvmTi.cc241 jvmtiStartFunction proc, in RunAgentThread() argument
245 return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); in RunAgentThread()
/art/tools/jvmti-agents/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()