/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/device/entity/ |
D | DeviceProcessInfo.java | 32 private String deviceType; field in DeviceProcessInfo 78 return deviceType; in getDeviceType() 86 public void setDeviceType(String deviceType) { in setDeviceType() argument 87 this.deviceType = deviceType; in setDeviceType() 151 … return Objects.hash(deviceName, processName, localSessionId, deviceType, startTime, endTime); in hashCode() 165 + ", deviceType='" + deviceType + '\'' in toString()
|
D | DeviceIPPortInfo.java | 35 private DeviceType deviceType; field in DeviceIPPortInfo 43 return deviceType; in getDeviceType() 46 public void setDeviceType(DeviceType deviceType) { in setDeviceType() argument 47 this.deviceType = deviceType; in setDeviceType() 135 ….hash(deviceID, deviceName, ip, port, deviceType, connectType, forwardPort, deviceStatus, retryNum… in hashCode()
|
/developtools/packing_tool/adapter/ohos/ |
D | UncompressEntrance.java | 98 …public static boolean unpack(String appPath, String outPath, String deviceType, boolean unpackApk)… in unpack() argument 112 utility.setDeviceType(deviceType == null ? "" : deviceType); in unpack() 184 …public static UncomperssResult parseApp(String appPath, String parseMode, String deviceType, Strin… in parseApp() argument 206 utility.setDeviceType(deviceType == null ? "" : deviceType); in parseApp() 238 …public static UncomperssResult parseApp(InputStream input, String parseMode, String deviceType, St… in parseApp() argument 259 utility.setDeviceType(deviceType == null ? "" : deviceType); in parseApp()
|
D | Utility.java | 67 private String deviceType = ""; field in Utility 392 return deviceType; in getDeviceType() 395 public void setDeviceType(String deviceType) { in setDeviceType() argument 396 if (!deviceType.startsWith(CMD_PREFIX)) { in setDeviceType() 397 this.deviceType = deviceType; in setDeviceType()
|
D | PackInfo.java | 44 public List<String> deviceType = new ArrayList<String>(); field in PackInfo
|
D | JsonUtil.java | 63 … static List<PackInfo> parseHapList(String deviceType, String jsonString) throws BundleException { in parseHapList() argument 83 deviceType.toLowerCase(Locale.ENGLISH))) { in parseHapList() 90 packInfo.deviceType = JSONArray.parseArray(deviceTypes, String.class); in parseHapList() 166 hapInfo.deviceType = JSONArray.parseArray(deviceTypes in parseDeviceTypeToHapInfo() 206 …profileInfo.deviceConfig = parseDeviceConfigInfo(deviceConfigJson, profileInfo.hapInfo.deviceType); in parseProfileInfo() 302 for (String deviceType : deviceTypes) { in parseDeviceConfigInfo() 303 getTargetDeviceConfig(deviceConfigs, deviceConfigInfoJson, defaultConfig, deviceType); in parseDeviceConfigInfo() 425 hapInfo.deviceType = JSONArray.parseArray(getJsonString(hapJson, "deviceType") in parseHapInfo()
|
D | HapInfo.java | 74 public List<String> deviceType = new ArrayList<String>(); field in HapInfo
|
D | Uncompress.java | 637 private static UncomperssResult uncompress(String deviceType, String srcPath, String fileName) in uncompress() argument 648 uncompressPackInfo(deviceType, hapZipInfo, result); in uncompress() 659 …private static void uncompressPackInfo(String deviceType, HapZipInfo hapZipInfo, UncomperssResult … in uncompressPackInfo() argument 661 … List<PackInfo> packInfos = JsonUtil.parseHapList(deviceType, hapZipInfo.getPackInfoJsonStr()); in uncompressPackInfo() 728 …private static UncomperssResult uncompressByInput(String deviceType, InputStream input, String fil… in uncompressByInput() argument 734 uncompressPackInfo(deviceType, hapZipInfo, result); in uncompressByInput() 782 …private static UncomperssResult getProfileInfoByInput(String deviceType, InputStream input, String… in getProfileInfoByInput() argument 800 UncomperssResult compressResult = uncompress(deviceType, srcPath, HARMONY_PROFILE); in getProfileInfoByInput()
|
D | Compressor.java | 782 …String deviceType = thirdLevelDirectoryName.substring(forthDelimiterIndex + 1, fifthDelimiterIndex… in isThirdLevelDirectoryNameValid() local 783 if (!checkOrientation(orientation) || !checkDeviceType(deviceType)) { in isThirdLevelDirectoryNameValid() 842 private boolean checkDeviceType(String deviceType) { in checkDeviceType() argument 843 if (!Pattern.compile(REGEX_DEVICE_TYPE).matcher(deviceType).matches()) { in checkDeviceType() 844 LOG.error("Compressor::compressProcess deviceType " + deviceType + in checkDeviceType()
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/common/customcomp/ |
D | CustomJLabel.java | 68 public void setOnline(boolean deviceType) { in setOnline() argument 69 this.isOnline = deviceType; in setOnline()
|
/developtools/profiler/host/ohosprofiler/src/main/resources/ohosresource/ |
D | init.sql | 23 deviceType varchar(100) not null, field
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/device/dao/ |
D | DeviceDao.java | 167 String deviceType = rs.getString("deviceType"); in addDeviceIPPortInfoList() local 171 if (deviceType.equals(FULL_HOS_DEVICE.getCpuAbi())) { in addDeviceIPPortInfoList() 448 String deviceType = rs.getString("deviceType"); in getAllDeviceIPPortInfos() local 452 if (deviceType.equals(FULL_HOS_DEVICE.getCpuAbi())) { in getAllDeviceIPPortInfos() 506 String deviceType = rs.getString("deviceType"); in getOnlineDeviceInfoList() local 510 if (deviceType.equals(FULL_HOS_DEVICE.getCpuAbi())) { in getOnlineDeviceInfoList() 563 String deviceType = rs.getString("deviceType"); in getDeviceIPPortInfo() local 567 if (deviceType.equals(FULL_HOS_DEVICE.getCpuAbi())) { in getDeviceIPPortInfo()
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/plugin/service/ |
D | PlugManager.java | 83 …public List<PluginConf> getPluginConfig(DeviceType deviceType, PluginMode pluginMode, AnalysisType… in getPluginConfig() argument 95 if (Objects.isNull(deviceType)) { in getPluginConfig() 103 … return supportDeviceTypes.contains(deviceType) && hiProfilerPluginConf.isEnable(); in getPluginConfig() 112 return supportDeviceTypes.contains(deviceType) && hiProfilerPluginConf.isEnable() in getPluginConfig()
|
/developtools/ace-js2bundle/ace-loader/plugin/templater/ |
D | lite_component_map.js | 307 function select(deviceType) { argument 312 return tag[deviceType];
|
/developtools/profiler/host/smartperf/ide/test/trace/component/setting/utils/ |
D | PluginConvertUtils.test.ts | 68 deviceType: Type.HI3516,
|
/developtools/ace-js2bundle/ace-loader/ |
D | webpack.lite.config.js | 195 if (env.deviceType) { 196 const deviceArr = env.deviceType.split(/,/);
|
D | webpack.rich.config.js | 244 if (env.deviceType) { 245 let deviceArr = env.deviceType.split(/,/)
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/process/service/ |
D | ProcessManager.java | 141 DeviceType deviceType) { in processListCreateSession() argument
|
/developtools/profiler/host/smartperf/ide/src/trace/component/ |
D | SpRecordTrace.ts | 283 deviceType: Type.HI3516,
|
/developtools/profiler/host/smartperf/ide/src/trace/component/setting/bean/ |
D | ProfilerServiceTypes.ts | 799 deviceType: Type; property
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/utils/device/service/ |
D | MultiDeviceManager.java | 622 private DeviceIPPortInfo buildDeviceInfo(List<String> deviceInfo, DeviceType deviceType) { in buildDeviceInfo() argument 628 info.setDeviceType(deviceType); in buildDeviceInfo()
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/datasources/transport/grpc/ |
D | HiProfilerClient.java | 204 DeviceType deviceType) { in processListCreateSession() argument
|
/developtools/profiler/host/ohosprofiler/src/main/java/ohos/devtools/views/layout/chartview/memory/ |
D | MemoryItemView.java | 1085 … DeviceType deviceType = SessionManager.getInstance().getDeviceType(bottomPanel.getSessionId()); in initNativeBtn() local 1086 if (deviceType == DeviceType.FULL_HOS_DEVICE) { in initNativeBtn()
|