| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/services/memory/nativeservice/ |
| D | NativeDataExternalInterface.java | 134 String[] split = line.split(";"); in executeParseFile() local 135 String freeAddr = split[3]; in executeParseFile() 172 String[] split = string.split(";"); in createInstance() local 173 String addr = split[3]; in createInstance() 174 String mallocSize = split[4]; in createInstance() 184 String[] split = string.split(";"); in createNativeFrame() local 185 String pc = split[0]; in createNativeFrame() 186 if (split.length < 6) { in createNativeFrame() 189 String functionName = split[2]; in createNativeFrame() 190 String fileName = split[3]; in createNativeFrame() [all …]
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/monitorconfig/entity/ |
| D | NativeHookConfigInfo.java | 106 String[] split = size.split(":"); in convertToValue() local 108 String unit = split[1]; in convertToValue() 111 value = Integer.parseInt(split[0]) * 1024 * 1024; in convertToValue() 114 value = Integer.parseInt(split[0]) * 1024; in convertToValue()
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/trace/metrics/strategy/ |
| D | DistributeTermStrategy.java | 49 String[] threadIds = item.getThreadId().split(","); in handleDistributeTermInfo() 50 String[] threadNames = item.getThreadName().split(","); in handleDistributeTermInfo() 51 String[] processIds = item.getProcessId().split(","); in handleDistributeTermInfo() 53 … item.getProcessName() == null ? new String[threadIds.length] : item.getProcessName().split(","); in handleDistributeTermInfo() 54 String[] funNames = item.getFunName().split(","); in handleDistributeTermInfo() 55 String[] durations = item.getDur().split(","); in handleDistributeTermInfo() 56 String[] times = item.getTime().split(","); in handleDistributeTermInfo() 57 String[] flags = item.getFlag().split(","); in handleDistributeTermInfo()
|
| D | CpuStrategy.java | 69 String[] avgFrequency = item.getAvgFrequency().split(SEPARATOR); in handleCpuInfo() 70 String[] cpuIds = item.getCpu().split(SEPARATOR); in handleCpuInfo() 71 String[] durations = item.getDuration().split(SEPARATOR); in handleCpuInfo() 72 String[] minFreq = item.getMinFreq().split(SEPARATOR); in handleCpuInfo() 73 String[] maxFreq = item.getMaxFreq().split(SEPARATOR); in handleCpuInfo()
|
| D | MemAggStrategy.java | 51 String[] names = item.getName().split(","); in handleMemoryInfo() 52 String[] values = item.getValue().split(","); in handleMemoryInfo() 53 String[] times = item.getTime().split(","); in handleMemoryInfo()
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/distributed/statistics/ |
| D | CpuStrategy.java | 69 String[] avgFrequency = item.getAvgFrequency().split(SEPARATOR); in handleCpuInfo() 70 String[] cpuIds = item.getCpu().split(SEPARATOR); in handleCpuInfo() 71 String[] durations = item.getDuration().split(SEPARATOR); in handleCpuInfo() 72 String[] minFreq = item.getMinFreq().split(SEPARATOR); in handleCpuInfo() 73 String[] maxFreq = item.getMaxFreq().split(SEPARATOR); in handleCpuInfo()
|
| D | MemAggStrategy.java | 55 String[] names = item.getName().split(","); in handleMemoryInfo() 56 String[] values = item.getValue().split(","); in handleMemoryInfo() 57 String[] times = item.getTime().split(","); in handleMemoryInfo()
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/transport/hdc/ |
| D | IoStreamConsumer.java | 75 String[] split = stringBuilder.toString().split("\r\n"); in run() local 76 resultList = new ArrayList<>(Arrays.asList(split)); in run()
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/hilog/ |
| D | HiLogFilter.java | 102 String[] lineStr = wholeBuilder.toString().split(System.lineSeparator()); in filterLog() 105 String[] lineStrs = str.split(" "); in filterLog() 159 String[] lines = logTextArea.getText().split(System.lineSeparator()); in lineFilter() 169 String[] lineStrs = str.split(" "); in lineFilter() 195 String[] lines = line.split(" "); in isErrorLog()
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/trace/base/ |
| D | ColorUtils.ts | 101 let l = str.toString().split("").reverse(); 106 return t.split("").reverse().join("")
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/layout/chartview/memory/nativehook/ |
| D | NativeConfigDialog.java | 230 String[] split = size.split(":"); in addParameterComponent() local 247 textField.setText(split[0]); in addParameterComponent() 249 unitIndex = split[1]; in addParameterComponent() 260 textField.setText(split[0]); in addParameterComponent() 262 unitIndex = split[1]; in addParameterComponent()
|
| /developtools/ace-ets2bundle/compiler/src/ |
| D | pre_process.ts | 154 visualMap.set(0, mediaQueryImport.split('\n').length - 1); 194 const originEtsFileLineNumber: number = contentBeforePos.split('\n').length; 195 const visualLines: number = visualContent.split('\n').length - 1; 216 const originEtsFileLineNumber: number = contentBeforePos.split('\n').length; 217 const visualLines: number = visualContent.split('\n').length - 1; 240 const lines: Array<string> = content.split('\n');
|
| D | gen_abc_plugin.ts | 114 let buildDirArr: string[] = buildPathInfo.split(path.sep); 201 const currentNodeVersion = parseInt(process.version.split('.')[0]); 307 let buildDirArr: string[] = buildPathInfo.split(path.sep); 317 const dataTmps = buildPath.split(ARK);
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/utils/ |
| D | Template.ts | 71 const [keys, obj] = strFor.match(reg) ? strFor.split(reg) : ["item", strFor]; 73 const params = keys.split(/[\(|\)|,\s?]/g).filter(Boolean);
|
| /developtools/profiler/device/plugins/ftrace_plugin/tools/ |
| D | ftrace_format_parser.py | 191 fields = [f.strip().split(':') for f in self.line.split(';')] 212 event_format.name = self.line.split(':')[1].strip() 215 event_format.event_id = int(self.line.split(':')[1]) 257 class_type = tuple(i.split('/')) # event class and event type 267 parts = path.split(os.path.sep)
|
| /developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/device/service/ |
| D | MultiDeviceManager.java | 675 String[] split = str.split(":"); in buildDeviceName() local 676 devName = devName + "-" + split[1]; in buildDeviceName() 679 String[] split = str.split(":"); in buildDeviceName() local 680 devName = split[1] + devName; in buildDeviceName() 683 String[] split = str.split(":"); in buildDeviceName() local 684 devName = devName + split[1]; in buildDeviceName()
|
| /developtools/hiperf/script/ |
| D | recv_binary_cache.py | 27 ABS_PATH = os.path.split(os.path.realpath(__file__))[0] 56 dso_list = dso_build_id.split('],[') 61 group = i.split(',')
|
| D | make_report_sample.py | 32 dirname, _ = os.path.split(os.path.abspath(sys.argv[0]))
|
| D | make_report.py | 42 dirname, _ = os.path.split(os.path.abspath(sys.argv[0]))
|
| /developtools/profiler/host/smartperf/ide/server/ |
| D | main.go | 159 split := SplitLines(string(readFile)) 160 fmt.Println(split) 161 if len(split) > 1 { 162 if strings.HasSuffix(split[0], ":0") {
|
| /developtools/hiperf/interfaces/kits/js/napi/ |
| D | hiperf_client_napi.cpp | 37 static std::vector<std::string> StringSplit(std::string source, std::string split = ",") in StringSplit() argument 43 while ((pos = source.find(split)) != std::string::npos) { in StringSplit() 49 source.erase(0, pos + split.length()); in StringSplit() 58 static std::vector<int> StringSplitToInt(std::string source, std::string split = ",") in StringSplitToInt() argument 64 while ((pos = source.find(split)) != std::string::npos) { in StringSplitToInt() 70 source.erase(0, pos + split.length()); in StringSplitToInt() 453 const std::string split = ","; in GetOptionVecString() local 456 result.append(split); in GetOptionVecString()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/rpc/ |
| D | http_server.cpp | 429 …::vector<std::string_view> HttpServer::StringSplit(std::string_view source, std::string_view split) in StringSplit() argument 432 if (!split.empty()) { in StringSplit() 434 while ((pos = source.find(split)) != std::string_view::npos) { in StringSplit() 440 source = source.substr(pos + split.size(), source.size() - token.size() - split.size()); in StringSplit()
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/java/com/ohos/hapsigntoolcmd/ |
| D | CmdUtil.java | 168 String[] types = inputType.split(","); in verifyType() 169 List<String> supportList = Arrays.asList(supportTypes.split(",")); in verifyType()
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | utilities.h | 101 const std::string split = ","; in VectorToString() local 104 itemsString.append(split); in VectorToString() 123 std::vector<std::string> StringSplit(std::string source, std::string split = ",");
|
| /developtools/hiperf/include/ |
| D | utilities.h | 133 const std::string split = ","; in VectorToString() local 136 itemsString.append(split); in VectorToString() 155 std::vector<std::string> StringSplit(std::string source, std::string split = ",");
|