Home
last modified time | relevance | path

Searched refs:proc (Results 1 – 20 of 20) 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.py479 universal_newlines=True) as proc:
480 assert(proc.wait() == 0) # Check the exit code.
481 match = re.match(r'\d*-(\d*)', proc.stdout.read())
511 universal_newlines=True) as proc:
512 return test_name, cmd, proc.communicate()[0], proc.wait()
Dcheck_cfi.py91 proc = subprocess.run([args.objdump, "--file-headers", lib],
96 m = re.search("^architecture: *(.*)$", proc.stdout, re.MULTILINE)
106 proc = subprocess.run([args.dwarfdump, "--debug-line", lib],
117 for section in section_re.split(proc.stdout):
130 proc = subprocess.run([args.dwarfdump, "--debug-frame", lib],
139 for section in section_re.split(proc.stdout):
152 proc = subprocess.run(
169 for section in section_re.split(proc.stdout):
Dbuildbot-teardown-device.sh113 remove_filesystem_from_chroot proc proc true
Dbuildbot-setup-device.sh198 || 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.sh141 …args+=(-Djpda.settings.debuggeeAgentExtraOptions=directlog=y,logfile=/proc/self/fd/2,logflags=$ver…
/art/test/testrunner/
Dtestrunner.py168 def wait(self, proc, timeout): argument
179 self.procs[proc.pid] = proc
181 os.killpg(proc.pid, signal.SIGKILL) # kill_all has already been called.
183 output = proc.communicate(timeout=timeout)[0]
184 return_value = proc.wait()
189 del self.procs[proc.pid]
359 proc = subprocess.Popen(['adb', 'shell', 'getprop', 'ro.product.name'],
370 output = proc.communicate(timeout = timeout_val)[0]
371 success = not proc.wait()
646 proc = _popen(
[all …]
/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/dexopt_chroot_setup/
DREADME.md27 | |-- proc
49 #### `/mnt/pre_reboot_dexopt/chroot/{data,mnt/expand,dev,proc,sys,metadata}`
/art/openjdkjvmti/
Dti_thread.h111 jvmtiStartFunction proc,
Dti_thread.cc772 jvmtiStartFunction proc; member
807 data->proc(data->jvmti_env, env, const_cast<void*>(data->arg)); in AgentCallback()
818 jvmtiStartFunction proc, in RunAgentThread() argument
839 if (proc == nullptr) { in RunAgentThread()
859 data->proc = proc; in RunAgentThread()
DOpenjdkJvmTi.cc235 jvmtiStartFunction proc, in RunAgentThread() argument
239 return ThreadUtil::RunAgentThread(env, thread, proc, arg, priority); in RunAgentThread()
/art/test/
Drun-test135 proc = subprocess.run([cmdline],
139 if (check and proc.returncode != 0):
144 return proc
Ddefault_run.py1094 proc = run('gdb --eval-command="quit"', check=False, save_cmd=False)
1095 if proc.returncode != 0:
Drun_test_build.py588 proc = run([android_build_top / args.soong_zip, "-o", android_build_top / args.out,
/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()