Searched refs:proc (Results 1 - 15 of 15) sorted by relevance
/test/xts/acts/commonlibrary/ets_utils/util_lib_standard/entry/src/ohosTest/js/test/ |
H A D | util.test.js | 4148 let proc = new util.RationalNumber(3, 4) 4149 let res = pro.compareTo(proc) 4163 let proc = new util.RationalNumber(0, 0) 4164 let res = pro.compareTo(proc) 4178 let proc = new util.RationalNumber(8, 3) 4179 let res = pro.compareTo(proc) 4193 let proc = new util.RationalNumber(2, 1) 4194 let res = pro.compareTo(proc) 4208 let proc = new util.RationalNumber(2, 1) 4209 let res = pro.compareTo(proc) [all...] |
/test/xts/tools/lite/reliability/ |
H A D | utils.py | 45 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 49 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 53 (out, err) = proc.communicate(timeout=timeout) 67 os.killpg(proc.pid, signal.SIGTERM) 69 os.kill(proc.pid, signal.SIGINT)
|
H A D | NativePressTest.py | 66 cmdRet = exec_cmd(hdcPath + " shell \"cat /proc/" + pid + "/cmdline\"", waitOut=True)
|
/test/testfwk/developer_test/local_coverage/automate_execute/ |
H A D | install_coverage_tools.py | 24 proc = subprocess.Popen(command, shell=True) 26 proc.communicate() 28 proc.kill() 29 proc.terminate()
|
/test/testfwk/developer_test/local_coverage/ |
H A D | utils.py | 124 proc = subprocess.Popen(command, shell=True) 126 proc.communicate() 128 proc.kill() 129 proc.terminate()
|
/test/testfwk/developer_test/aw/python/distributed/common/ |
H A D | devices.py | 143 proc = subprocess.Popen(command, 150 data, _ = proc.communicate() 154 proc.stdout.close() 155 proc.stderr.close()
|
/test/testfwk/xdevice/src/xdevice/_core/ |
H A D | utils.py | 127 proc = subprocess.Popen(["C:\\Windows\\System32\\findstr", "/B", "%s" % pid], 139 proc = subprocess.Popen(["/bin/grep", "-w", "%s" % pid], 150 proc = subprocess.Popen(["/usr/bin/grep", "-w", "%s" % pid], 156 (out, _) = proc.communicate(timeout=60) 158 LOG.debug("Check %s proc running output: %s", pid, out) 189 proc = subprocess.Popen(cmd, stdout=fileno, 193 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 198 proc = subprocess.Popen(cmd, stdout=fileno, 201 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, 204 (out, err) = proc [all...] |
/test/testfwk/xdevice/src/xdevice/_core/testkit/ |
H A D | kit.py | 294 def timeout_callback(proc): 297 LOG.error(proc.pid) 299 os.killpg(proc.pid, signal.SIGKILL) 303 str(proc.pid)], shell=False)
|
/test/xts/tools/build/ |
H A D | utils.py | 191 proc = subprocess.Popen(cmd) 192 proc.wait() 193 ret_code = proc.returncode
|
/test/testfwk/developer_test/local_coverage/resident_service/ |
H A D | public_method.py | 51 proc = subprocess.Popen(command, shell=True, stdin=subprocess.PIPE, 53 strout = proc.stdout.read()
|
/test/testfwk/xdevice/plugins/devicetest/controllers/tools/ |
H A D | screen_agent.py | 40 self.proc = None 237 if self.proc is not None: 238 stop_standing_subprocess(self.proc)
|
/test/xts/tools/lite/build/ |
H A D | utils.py | 355 proc = subprocess.Popen(cmd) 356 proc.wait() 357 ret_code = proc.returncode
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | constants.py | 265 def kill_proc_and_subproc(self, proc): 270 cmd = "taskkill /T /F /PID {}".format(str(proc.pid))
|
H A D | oh_jsunit_driver.py | 956 proc = subprocess.Popen(" ".join(run_command), 959 proc = subprocess.Popen(run_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False) 961 args=(proc, timeout, stop_event)) 965 output = proc.stdout.readline() 966 if output == b'' and proc.poll() is not None: 990 def kill_proc(proc, timeout, stop_event): 995 if proc.poll() is None: 996 proc.kill()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
H A D | device.py | 1342 _, proc = self.start_catch_device_log(hilog_file_pipe=hilog_file_pipe) 1343 self.restart_proc.append(proc) 1346 # when device free stop restart log proc 1347 for _, proc in enumerate(self.restart_proc): 1348 self.stop_catch_device_log(proc) 1397 def stop_catch_device_log(self, proc): 1401 if proc: 1403 stop_standing_subprocess(proc)
|
Completed in 12 milliseconds