Home
last modified time | relevance | path

Searched refs:ss (Results 1 – 25 of 37) sorted by relevance

12

/developtools/profiler/hiebpf/src/
Dhhlog.cpp98 std::stringstream ss; in GetLogFileName() local
101 ss << "/data/local/tmp/"; in GetLogFileName()
102 ss << std::to_string(tmPtr->tm_year + yearStart) << "."; in GetLogFileName()
103 ss << std::to_string(tmPtr->tm_mon + monthStart) << "."; in GetLogFileName()
104 ss << std::to_string(tmPtr->tm_mday) << "_"; in GetLogFileName()
105 ss << std::to_string(tmPtr->tm_hour) << "."; in GetLogFileName()
106 ss << std::to_string(tmPtr->tm_min) << "."; in GetLogFileName()
107 ss << std::to_string(tmPtr->tm_sec) << ".hhlog"; in GetLogFileName()
108 return ss.str(); in GetLogFileName()
120 std::stringstream ss; in GetFormatTime() local
[all …]
Dlibbpf_logger.cpp95 std::stringstream ss; in GetLogFileName() local
98 ss << std::to_string(tmPtr->tm_year + yearStart) << "."; in GetLogFileName()
99 ss << std::to_string(tmPtr->tm_mon + monthStart) << "."; in GetLogFileName()
100 ss << std::to_string(tmPtr->tm_mday) << "_"; in GetLogFileName()
101 ss << std::to_string(tmPtr->tm_hour) << "."; in GetLogFileName()
102 ss << std::to_string(tmPtr->tm_min) << "."; in GetLogFileName()
103 ss << std::to_string(tmPtr->tm_sec) << ".libbpf.log"; in GetLogFileName()
104 return ss.str(); in GetLogFileName()
Dbpf_log_reader.cpp71 std::stringstream ss; in GetLogFileName() local
74 ss << "/data/local/tmp/"; in GetLogFileName()
75 ss << std::to_string(tmPtr->tm_year + yearStart) << "."; in GetLogFileName()
76 ss << std::to_string(tmPtr->tm_mon + monthStart) << "."; in GetLogFileName()
77 ss << std::to_string(tmPtr->tm_mday) << "_"; in GetLogFileName()
78 ss << std::to_string(tmPtr->tm_hour) << "."; in GetLogFileName()
79 ss << std::to_string(tmPtr->tm_min) << "."; in GetLogFileName()
80 ss << std::to_string(tmPtr->tm_sec) << ".bpf.log"; in GetLogFileName()
81 return ss.str(); in GetLogFileName()
/developtools/smartperf_host/trace_streamer/test/unittest/
Dhisys_event_parser_test.cpp62 std::stringstream ss; variable
63 ss << jsMessage;
64 ss >> jMessage;
103 std::stringstream ss; variable
104 ss << jsMessage;
105 ss >> jMessage;
152 std::stringstream ss; variable
153 ss << *i;
154 ss >> jMessage;
DREADME.md29 在start.sh启动的交互式窗口执行:run -t ut -ss developtools -ts hiprofiler_ts_ut
/developtools/profiler/device/plugins/ftrace_plugin/src/
Dkernel_symbols_parser.cpp78 std::stringstream ss; in Parse() local
84 ss.clear(); in Parse()
85 ss.str(line); in Parse()
86 if (ss >> addrStr >> info.type >> info.name) { in Parse()
Dftrace_parser.cpp488 std::stringstream ss(line.substr(pos + sep.size())); in ParsePerCpuStatus() local
491 ss >> stats.entries; in ParsePerCpuStatus()
494 ss >> stats.overrun; in ParsePerCpuStatus()
497 ss >> stats.commitOverrun; in ParsePerCpuStatus()
500 ss >> stats.bytes; in ParsePerCpuStatus()
503 ss >> stats.oldestEventTs; in ParsePerCpuStatus()
506 ss >> stats.nowTs; in ParsePerCpuStatus()
509 ss >> stats.droppedEvents; in ParsePerCpuStatus()
512 ss >> stats.readEvents; in ParsePerCpuStatus()
/developtools/profiler/host/smartperf/trace_streamer/src/base/
Dstring_to_numerical.h41 std::stringstream ss; variable
43 ss << std::dec << value;
45 ss << std::hex << value;
47 return ss.str();
/developtools/smartperf_host/trace_streamer/src/base/
Dstring_to_numerical.h41 std::stringstream ss; variable
43 ss << std::dec << value;
45 ss << std::hex << value;
47 return ss.str();
/developtools/smartperf_host/ide/test/trace/component/chart/
DSpFileSystemChart.test.ts41 let ss = new SpChartManager(); variable
42 let spFileSystemChart = new SpFileSystemChart(ss);
DSpCpuChart.test.ts52 let ss = new SpChartManager(); variable
53 let trace = new SpCpuChart(ss);
DSpHiPerf.test.ts127 let ss = new SpChartManager(); variable
128 let spHiPerf = new SpHiPerf(ss);
DSpHiSysEventChart.test.ts50 let ss = new SpChartManager(); variable
51 let spHiSysEventChart = new SpHiSysEventChart(ss);
/developtools/profiler/device/plugins/native_daemon/include/
Dhook_common.h118 std::stringstream ss; in ToString() local
119 ss << "filterSize:" << filterSize << ", shareMemroySize:" << shareMemroySize in ToString()
124 return ss.str(); in ToString()
Dutilities.h227 std::stringstream ss; variable
229 ss << "0x";
231 ss << std::hex << std::setw(BYTE_PRINT_WIDTH * size) << std::setfill('0') << (uint64_t)source;
232 return ss.str();
/developtools/smartperf_host/trace_streamer/test/test_fuzzer/
DREADME.md18 run -t FUZZ -ss developtools -ts hiprofiler_ts_bytrace_fuzz_test
19 run -t FUZZ -ss developtools -ts hiprofiler_ts_htrace_fuzz_test
20 run -t FUZZ -ss developtools -ts hiprofiler_ts_selector_fuzz_test
/developtools/integration_verification/tools/rom_ram_analyzer/standard/
Dram_analyzer.py101 …def __parse_hidumper_mem(cls, content: typing.Text, device_num: str, ss: str = "Pss") -> typing.Di…
125 if ss not in cls.__ss_dict.keys():
126 print("error: {} is not a valid parameter".format(ss))
143 size = int(processed[cls.__ss_dict.get(ss)]) * \
154 def process_hidumper_info(cls, device_num: str, ss: str) -> typing.Dict[str, int]:
162 name_size_dict = cls.__parse_hidumper_mem(stdout, device_num, ss)
273 …def __save_result_as_excel(cls, data_dict: dict, filename: str, ss: str, baseline_file: str, unit_…
426 … output_file: str, ss: str, output_excel: bool, baseline_file: str, unit_adapt: bool):
445 device_num, ss)
531 refactored_result, output_file + ".xls", ss, baseline_file, unit_adapt)
[all …]
/developtools/smartperf_host/ide/test/trace/component/setting/
DSpSdkConfig.test.ts96 ss: {
129 ss: 'strsadsa',
/developtools/profiler/host/smartperf/trace_streamer/src/filter/
Dtask_pool_filter.cpp41 for (base::PartingString ss(taskPoolStr, ','); ss.Next();) { in TaskPoolFieldSegmentation() local
44 for (base::PartingString inner(ss.GetCur(), ':'); inner.Next();) { in TaskPoolFieldSegmentation()
/developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_hisysevent_parser.cpp110 static std::stringstream ss; variable
133 ss << hisyseventLine.raw_content().ToStdString(); in Parse()
134 ss >> jMessage; in Parse()
/developtools/smartperf_host/trace_streamer/src/filter/
Dtask_pool_filter.cpp50 for (base::PartingString ss(taskPoolStr, ','); ss.Next();) { in TaskPoolFieldSegmentation() local
53 for (base::PartingString inner(ss.GetCur(), ':'); inner.Next();) { in TaskPoolFieldSegmentation()
/developtools/hiperf/include/
Dutilities.h249 std::stringstream ss; variable
251 ss << "0x";
253 ss << std::hex << std::setw(BYTE_PRINT_WIDTH * size) << std::setfill('0') << (uint64_t)source;
254 return ss.str();
/developtools/profiler/host/smartperf/trace_streamer/src/parser/htrace_pbreader_parser/
Dhtrace_hisysevent_parser.cpp153 static std::stringstream ss; variable
176 ss << hisyseventLine.raw_content().ToStdString(); in Parse()
177 ss >> jMessage; in Parse()
/developtools/profiler/device/plugins/native_daemon/src/
Dutilities.cpp491 std::stringstream ss; in BufferToHexString() local
492 ss << size << ":"; in BufferToHexString()
494 ss << " 0x" << std::setfill('0') << std::setw(BYTE_PRINT_WIDTH) << std::hex in BufferToHexString()
497 return ss.str(); in BufferToHexString()
/developtools/smartperf_host/trace_streamer/src/parser/bytrace_parser/
Dbytrace_parser.cpp193 std::stringstream ss; in ParseJsonData() local
195 ss << buffer; in ParseJsonData()
196 ss >> jMessage; in ParseJsonData()

12