Home
last modified time | relevance | path

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

123

/developtools/hiperf/test/unittest/common/native/
H A Dreport_json_file_test.cpp111 OutputJsonKey(stdout, std::string()); in HWTEST_F()
115 OutputJsonKey(stdout, ""); in HWTEST_F()
120 OutputJsonKey(stdout, "keyname"); in HWTEST_F()
124 OutputJsonKey(stdout, static_cast<int>(1)); in HWTEST_F()
128 OutputJsonKey(stdout, static_cast<long>(1)); in HWTEST_F()
132 OutputJsonKey(stdout, static_cast<size_t>(2)); in HWTEST_F()
137 OutputJsonKey(stdout, std::string("keyname")); in HWTEST_F()
151 OutputJsonValue(stdout, std::string("value")); in HWTEST_F()
155 OutputJsonValue(stdout, int(1)); in HWTEST_F()
159 OutputJsonValue(stdout, uint64_ in HWTEST_F()
[all...]
H A Dperf_file_reader_test.cpp48 FILE *fp = stdout; in HWTEST_F()
74 FILE *fp = stdout; in HWTEST_F()
92 FILE *fp = stdout; in HWTEST_F()
109 FILE *fp = stdout; in HWTEST_F()
/developtools/hiperf/script/
H A Dloadlib_test.py33 sys.stdout.flush()
37 sys.stdout.flush()
41 sys.stdout.flush()
45 sys.stdout.flush()
49 sys.stdout.flush()
/developtools/integration_verification/tools/fotff/utils/
H A Dlog.go52 logrus.Info("now log to os stdout...")
82 stdout := filepath.Join("logs", fmt.Sprintf("%s_stdout.log", pkg))
83 if _, err = os.Stat(stdout); err == nil {
84 f, err = os.OpenFile(stdout, os.O_RDWR|os.O_APPEND, 0666)
86 f, err = os.Create(stdout)
89 logrus.Errorf("failed to open new stdout log file %s: %v", stdout, err)
96 logrus.Infof("re-directing stdout and stderr to %s...", stdout)
H A Dexec.go46 stdout, err := cmd.StdoutPipe()
58 go io.Copy(os.Stdout, stdout)
H A Dssh.go87 stdout, err := session.StdoutPipe()
100 go io.Copy(os.Stdout, stdout)
/developtools/hdc/hdc_rust/src/
H A Dutils.rs45 let mut stdout = ylong_runtime::io::stdout(); variables
46 let _ = stdout.write(&buf).await;
47 let _ = stdout.flush().await;
/developtools/ace_js2bundle/ace-loader/
H A Dnpm-install.js48 exec("npm install", { cwd: cwd }, function (err, stdout, stderr) {
49 console.log("", stdout, "");
/developtools/integration_verification/cases/daily/mini_system/
H A DL2_mini_system_test.py45 console = sys.stdout
46 sys.stdout = log_file
48 sys.stdout = console
60 p = subprocess.Popen(mycmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
78 sys.stdout.flush()
H A Drk3568_chipset_only_test.py45 console = sys.stdout
46 sys.stdout = log_file
48 sys.stdout = console
60 p = subprocess.Popen(mycmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
78 sys.stdout.flush()
H A DL0_mini_system_test.py51 console = sys.stdout
52 sys.stdout = log_file
54 sys.stdout = console
H A DL1_mini_system_test.py47 console = sys.stdout
48 sys.stdout = log_file
50 sys.stdout = console
/developtools/profiler/device/plugins/native_daemon/src/
H A Ddebug_logger.cpp105 ret = fprintf(stdout, "%s", buffer.data()); // to the stdout in Log()
140 if (fprintf(stdout, "change to use hilog\n") < 0) { in EnableHiLog()
246 fprintf(stdout, "unable save log file to '%s' because '%d:%s'\n", logPath_.c_str(), errno, buf); in OpenLog()
252 fprintf(stdout, "log will save at '%s'\n", logPath_.c_str()); in OpenLog()
/developtools/ace_ets2bundle/
H A Dinstall_arkguard_tsc.py43 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
47 stdout, stderr = proc.communicate(timeout=60)
/developtools/hdc/src/common/
H A Ddebug.cpp97 fflush(stdout); in PrintfHexBuf()
100 fflush(stdout); in PrintfHexBuf()
H A Dtask.cpp97 fprintf(stdout, "%s%s\n", logInfo.c_str(), log.c_str()); in LogMsg()
98 fflush(stdout); in LogMsg()
/developtools/integration_verification/DeployDevice/src/func/liteOsUpgrade/
H A DliteOsUpgrade_RK3568_app.py540 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding='utf-8', errors='ignore', universal_newlines=True)
541 # p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, errors='ignore', universal_newlines=True)
542 curline = p.stdout.readline()
546 curline = p.stdout.readline()
587 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding="gbk")
588 curline = p.stdout.readline()
591 curline = p.stdout.readline()
/developtools/hiperf/src/
H A Ddebug_logger.cpp105 ret = fprintf(stdout, "%s", buffer.data()); // to the stdout in Log()
141 if (fprintf(stdout, "change to use hilog\n") < 0) { in EnableHiLog()
271 fprintf(stdout, "unable save log file to '%s' because '%d'\n", logPath_.c_str(), errno); in OpenLog()
276 fprintf(stdout, "log will save at '%s'\n", logPath_.c_str()); in OpenLog()
/developtools/hdc/src/test/jdwp/
H A Dmain.cpp30 vfprintf(stdout, fmt, ap); in PrintMessage()
31 ret = fprintf(stdout, "\n"); in PrintMessage()
/developtools/smartperf_host/ide/
H A Dwebpack.config.js32 exec(command, (error, stdout, stderr) => {
36 resolve(stdout);
/developtools/integration_verification/tools/rom_ram_analyzer/standard/
H A Dram_analyzer.py47 stdout = str(cp.stdout)
49 return verify_str in stdout or verify_str in stderr
59 stdout = str(cp.stdout)
61 return device_num in stderr or device_num in stdout
64 def exec(cls, args: list, output_from: str = "stdout"):
66 if output_from == "stdout":
67 return cp.stdout.decode()
71 print("error: 'output_from' must be stdout o
[all...]
/developtools/profiler/timestamps/
H A Dtimestamps.cpp51 fflush(stdout); in main()
/developtools/smartperf_host/trace_streamer/src/base/
H A Dlog.h35 fprintf(stdout, "[-%c][%s][%d]: " fmt "\n", motify, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
/developtools/hdc/scripts/
H A Ddev_hdc_test.py841 p_list = [subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) for cmd in file_list]
846 stdout, stderr = p.communicate(timeout=512) # timeout wait 512s
849 if stdout:
850 print(f"{stdout.decode()}")
851 if stdout.decode().find("FileTransfer finish") == -1:
895 p_list = [subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE) for cmd in cmd_list]
900 stdout, stderr = p.communicate(timeout=512)
903 if stdout:
904 logging.info(f"{stdout.decode()}")
905 if assert_out is not None and stdout
[all...]
/developtools/hapsigner/autosign/
H A Dautosign.py118 command = Popen(cmd, stdout=PIPE, stderr=PIPE, stdin=PIPE, shell=False)
119 out = command.stdout.readlines()

Completed in 11 milliseconds

123