Home
last modified time | relevance | path

Searched refs:stdout (Results 1 - 25 of 1425) sorted by relevance

12345678910>>...57

/test/xts/acts/kernel_lite/utils/
H A Dlog.h40 #define LOGD(format, ...) fprintf(stdout, "[%.06f] " format "\n", GetCurTime(), ##__VA_ARGS__)
41 #define LOG(format, ...) fprintf(stdout, "[%.06f] " format "\n", GetCurTime(), ##__VA_ARGS__)
44 #define LOG(format, ...) fprintf(stdout, format "\n", ##__VA_ARGS__)
47 #define LOGE(format, ...) fprintf(stdout, "\n%s:%d: " format "\n", __FILE__, __LINE__, ##__VA_ARGS__)
/test/xts/hats/kernel/posix_interface/interface_gn/utils/
H A Dlog.h36 #define LOGD(format, ...) fprintf(stdout, "[%.06f] " format "\n", GetCurTime(), ##__VA_ARGS__)
37 #define LOG(format, ...) fprintf(stdout, "[%.06f] " format "\n", GetCurTime(), ##__VA_ARGS__)
40 #define LOG(format, ...) fprintf(stdout, format "\n", ##__VA_ARGS__)
43 #define LOGE(format, ...) fprintf(stdout, "\n%s:%d: " format "\n", __FILE__, __LINE__, ##__VA_ARGS__)
/drivers/peripheral/camera/hal_c/hdi_cif/include/
H A Dcamera.h51 fflush(stdout); \
60 fflush(stdout); \
69 fflush(stdout); \
78 fflush(stdout); \
87 fflush(stdout); \
/test/testfwk/xdevice/src/xdevice/_core/
H A Dutils.py83 process = subprocess.Popen(cmd, stdout=pipe, shell=False,
89 rev = process.stdout.read()
125 stdout=subprocess.PIPE,
128 stdin=proc_sub.stdout,
129 stdout=subprocess.PIPE, shell=False)
133 stdout=subprocess.PIPE,
136 stdin=proc_sub.stdout,
137 stdout=subprocess.PIPE,
140 stdin=proc_v_sub.stdout,
141 stdout
[all...]
/test/xts/tools/build/
H A DjudgePart.py46 sys.stdout.write(str(res))
48 sys.stdout.write("test")
H A Dutils.py165 sys.stdout.write(subsystem_name)
177 sys.stdout.write(module)
H A Dtest_package_select.py69 sys.stdout.write('\n'.join(main_selected_packages))
/test/testfwk/developer_test/libs/fuzzlib/
H A Dfuzzer_helper.py101 #log run stdout to fuzzlog dir
169 def make(args, stdout=None):
209 if stdout:
211 stdout=stdout)
220 file=sys.stdout
/vendor/hisilicon/hispark_pegasus/demo/oledplayer_demo/
H A Dvideo2bin.py40 sys.stdout.write('=')
41 sys.stdout.flush()
/drivers/peripheral/audio/test/sample/tools/get_trace_loop/
H A Dget_trace_loop.py49 output = subprocess.run(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, text=True,
50 check=True).stdout
/test/xts/tools/lite/reliability/
H A Dutils.py45 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
49 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
H A Dconstants.py242 self.jar_process = subprocess.Popen(self.command, stdout=subprocess.PIPE,
247 for line in iter(self.jar_process.stdout.readline, b''):
252 self.jar_process.stdout.close()
272 stdout=subprocess.PIPE,
/drivers/peripheral/audio/test/sample/tools/gen_cr_by_pr/
H A Dgen_cr_by_pr.py74 output = subprocess.run(cmd, cwd=path_to_work_in, shell=False, stdout=subprocess.PIPE,
77 check=True).stdout
/test/testfwk/developer_test/local_coverage/resident_service/
H A Dpublic_method.py52 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
53 strout = proc.stdout.read()
/test/testfwk/xdevice/plugins/devicetest/utils/
H A Dutil.py303 first_process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=False)
306 findstr_process = subprocess.Popen(findstr_command, stdin=first_process.stdout,
308 stdout=subprocess.PIPE,
/drivers/peripheral/audio/test/sample/tools/get_mem_excel/
H A Dget_mem_excel.py47 output = subprocess.run(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, text=True,
48 check=True).stdout
/test/testfwk/developer_test/aw/python/distributed/common/
H A Ddevices.py144 stdout=subprocess.PIPE,
154 proc.stdout.close()
/test/xts/acts/kernel_lite/util_posix/src/
H A DXtsActsUtil.h32 ret = vfprintf(stdout, format, ap); in LogPrint()
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/
H A Dhdf_tool_daemon_server.py25 self.write_obj = sys.stdout.buffer
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
H A Ddevice.py364 stdout = self.execute_shell_command(command, timeout=5 * 1000,
368 if stdout:
369 LOG.debug(stdout)
370 return stdout
380 stdout = self.execute_shell_command(command, timeout=5 * 1000,
384 if "fail" in stdout:
386 return stdout
538 stdout = self.execute_shell_command(command, timeout=5 * 1000,
541 LOG.debug("device recover status: {}".format(stdout))
542 return stdout
[all...]
/test/xts/dcts/common/
H A Dshm_utils.h47 fprintf(stdout, "[shm-utils] %s " format "\n", strTime, ##__VA_ARGS__); \
/test/xts/acts/kernel_lite/io_posix/src/
H A DIoTestWchar.cpp359 fputws(str, stdout); in FormatVswprintf()
414 FILE *fp = freopen(IOTEST_TEMPFILE, "w", stdout); in HWTEST_F()
497 FILE *fp = freopen(IOTEST_TEMPFILE, "w", stdout); in HWTEST_F()
/drivers/hdf_core/framework/tools/hc-gen/
H A Dhcs_build_info.py249 sys.stdout.write(parser.get_hcs_info())
250 sys.stdout.flush()
/test/testfwk/developer_test/aw/cxx/hwext/
H A Dperf.cpp37 #define INF_MSG(...) fprintf(stdout, __VA_ARGS__)
38 #define DBG_MSG(...) fprintf(stdout, __VA_ARGS__)
/test/testfwk/xdevice/src/xdevice/_core/testkit/
H A Dkit.py265 sub_process = subprocess.Popen(cmd, stdout=subprocess.PIPE,
270 output = sub_process.stdout.readline()

Completed in 10 milliseconds

12345678910>>...57