| /developtools/profiler/hiebpf/src/ |
| D | hhlog.cpp | 98 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 …]
|
| D | libbpf_logger.cpp | 95 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()
|
| D | bpf_log_reader.cpp | 71 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/ |
| D | hisys_event_parser_test.cpp | 62 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;
|
| D | README.md | 29 在start.sh启动的交互式窗口执行:run -t ut -ss developtools -ts hiprofiler_ts_ut
|
| /developtools/profiler/device/plugins/ftrace_plugin/src/ |
| D | kernel_symbols_parser.cpp | 78 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()
|
| D | ftrace_parser.cpp | 488 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/ |
| D | string_to_numerical.h | 41 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/ |
| D | string_to_numerical.h | 41 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/ |
| D | SpFileSystemChart.test.ts | 41 let ss = new SpChartManager(); variable 42 let spFileSystemChart = new SpFileSystemChart(ss);
|
| D | SpCpuChart.test.ts | 52 let ss = new SpChartManager(); variable 53 let trace = new SpCpuChart(ss);
|
| D | SpHiPerf.test.ts | 127 let ss = new SpChartManager(); variable 128 let spHiPerf = new SpHiPerf(ss);
|
| D | SpHiSysEventChart.test.ts | 50 let ss = new SpChartManager(); variable 51 let spHiSysEventChart = new SpHiSysEventChart(ss);
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | hook_common.h | 118 std::stringstream ss; in ToString() local 119 ss << "filterSize:" << filterSize << ", shareMemroySize:" << shareMemroySize in ToString() 124 return ss.str(); in ToString()
|
| D | utilities.h | 227 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/ |
| D | README.md | 18 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/ |
| D | ram_analyzer.py | 101 …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/ |
| D | SpSdkConfig.test.ts | 96 ss: { 129 ss: 'strsadsa',
|
| /developtools/profiler/host/smartperf/trace_streamer/src/filter/ |
| D | task_pool_filter.cpp | 41 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/ |
| D | htrace_hisysevent_parser.cpp | 110 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/ |
| D | task_pool_filter.cpp | 50 for (base::PartingString ss(taskPoolStr, ','); ss.Next();) { in TaskPoolFieldSegmentation() local 53 for (base::PartingString inner(ss.GetCur(), ':'); inner.Next();) { in TaskPoolFieldSegmentation()
|
| /developtools/hiperf/include/ |
| D | utilities.h | 249 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/ |
| D | htrace_hisysevent_parser.cpp | 153 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/ |
| D | utilities.cpp | 491 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/ |
| D | bytrace_parser.cpp | 193 std::stringstream ss; in ParseJsonData() local 195 ss << buffer; in ParseJsonData() 196 ss >> jMessage; in ParseJsonData()
|