/test/xts/acts/kernel_lite/utils/ |
H A D | log.h | 40 #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 D | log.h | 36 #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__)
|
/test/testfwk/xdevice/src/xdevice/_core/ |
H A D | utils.py | 83 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/testfwk/developer_test/libs/fuzzlib/ |
H A D | fuzzer_helper.py | 101 #log run stdout to fuzzlog dir 169 def make(args, stdout=None): 209 if stdout: 211 stdout=stdout) 220 file=sys.stdout
|
/test/xts/tools/build/ |
H A D | judgePart.py | 46 sys.stdout.write(str(res)) 48 sys.stdout.write("test")
|
H A D | utils.py | 165 sys.stdout.write(subsystem_name) 177 sys.stdout.write(module)
|
H A D | test_package_select.py | 69 sys.stdout.write('\n'.join(main_selected_packages))
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | constants.py | 242 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,
|
/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,
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
H A D | mk_prim_xml_step1.py | 196 last_print_target = sys.stdout
197 sys.stdout = log_file_fp
210 sys.stdout = last_print_target
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libc/musl/include/ |
H A D | stdio.h | 84 extern FILE *const stdout; 88 #define stdout (stdout) macro 719 * The printf() function shall place output on the stdout stream. 794 * The vprintf() function shall format output of a stdarg argument list to the stdout.
|
/test/testfwk/developer_test/local_coverage/resident_service/ |
H A D | public_method.py | 52 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 53 strout = proc.stdout.read()
|
/test/testfwk/xdevice/plugins/devicetest/utils/ |
H A D | util.py | 303 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,
|
/test/testfwk/developer_test/aw/python/distributed/common/ |
H A D | devices.py | 144 stdout=subprocess.PIPE, 154 proc.stdout.close()
|
/test/xts/acts/kernel_lite/util_posix/src/ |
H A D | XtsActsUtil.h | 32 ret = vfprintf(stdout, format, ap);
in LogPrint()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
H A D | device.py | 364 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 D | shm_utils.h | 47 fprintf(stdout, "[shm-utils] %s " format "\n", strTime, ##__VA_ARGS__); \
|
/test/xts/acts/kernel_lite/io_posix/src/ |
H A D | IoTestWchar.cpp | 359 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()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/ |
H A D | coap_debug.h | 23 #define COAP_DEBUG_FD stdout
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/ |
H A D | kit.py | 962 stdout = None 983 stdout = device.execute_shell_command(command) 993 stdout = device.execute_shell_command(command) 995 stdout = device.execute_shell_command(command) 996 LOG.debug("Run command result: %s" % (stdout if stdout else "")) 997 return stdout 1078 process = subprocess.Popen(cmd_list, stdout=subprocess.PIPE, 1081 rev = process.stdout.read()
|
/test/testfwk/developer_test/aw/cxx/hwext/ |
H A D | perf.cpp | 37 #define INF_MSG(...) fprintf(stdout, __VA_ARGS__) 38 #define DBG_MSG(...) fprintf(stdout, __VA_ARGS__)
|
/test/testfwk/xdevice/src/xdevice/_core/testkit/ |
H A D | kit.py | 265 sub_process = subprocess.Popen(cmd, stdout=subprocess.PIPE, 270 output = sub_process.stdout.readline()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/platform/common/ |
H A D | sample_comm_audio.c | 478 (HI_VOID)fflush(stdout); in AoSetVolumeProc() 488 (HI_VOID)fflush(stdout); in AoSetVolumeProc() 498 (HI_VOID)fflush(stdout); in AoSetVolumeProc() 522 (HI_VOID)fflush(stdout); in SAMPLE_COMM_AUDIO_AoVolProc() 530 (HI_VOID)fflush(stdout); in SAMPLE_COMM_AUDIO_AoVolProc()
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/ |
H A D | typedefs.h | 338 #define stderr stdout
|
/test/testfwk/developer_test/local_coverage/ |
H A D | utils.py | 90 process = Popen(command_list, stdout=PIPE, stderr=STDOUT)
|