| /developtools/packing_tool/adapter/ohos/ |
| D | UncompressEntrance.java | 140 …public static boolean unpack(String appPath, String outPath, String deviceType, boolean unpackApk)… in unpack() argument 146 if (outPath == null || outPath.isEmpty()) { in unpack() 155 utility.setOutPath(outPath); in unpack() 181 public static boolean unpackHap(String hapPath, String outPath, boolean unpackApk) { in unpackHap() argument 187 if (outPath == null || outPath.isEmpty()) { in unpackHap() 196 utility.setOutPath(outPath); in unpackHap() 229 String outPath) { in parseApp() argument 270 String outPath) { in parseApp() argument
|
| D | CompressEntrance.java | 40 public static boolean pack(String hapPath, String packInfoPath, String outPath) { in pack() argument 51 if (outPath == null || outPath.isEmpty()) { in pack() 60 utility.setOutPath(outPath); in pack()
|
| D | Scan.java | 165 String outPath = path + LINUX_FILE_SEPARATOR + fileName; in getAllInputFileList() local 166 File outDir = new File(outPath); in getAllInputFileList() 170 unpackHap(targetPath, outPath); in getAllInputFileList() 179 private static void unpackHap(String srcPath, String outPath) throws BundleException { in unpackHap() argument 182 File destDir = new File(outPath); in unpackHap() 186 unpackEntryToFile(zipInputStream, outPath); in unpackHap() 193 private static void unpackEntryToFile(ZipInputStream zipInputStream, String outPath) in unpackEntryToFile() argument 198 File entryFile = new File(outPath, entryName); in unpackEntryToFile()
|
| D | ScanStatSuffix.java | 226 String outPath = currentDir + File.separator + TMP_FOLDER_NAME; in statSuffix() local 228 unpackHap(packageName, outPath); in statSuffix() 230 suffixResult.setPathList(getPathListData(outPath, packageName, soList)); in statSuffix() 231 List<ParamModelSuffix> resulList = setMapData(outPath, fileList, soList); in statSuffix() 232 File deleteFile = new File(outPath); in statSuffix() 249 …private List<String> getPathListData(String outPath, String packageName, ArrayList<String> soList)… in getPathListData() argument 251 FileUtils.getFileList(outPath, soList); in getPathListData() 262 …private List<ParamModelSuffix> setMapData(String outPath, List<String> fileList, ArrayList<String>… in setMapData() argument 292 File deleteFile = new File(outPath); in setMapData() 494 private static void unpackHap(String srcPath, String outPath) throws BundleException { in unpackHap() argument [all …]
|
| D | Utility.java | 65 private String outPath = ""; field in Utility 387 return outPath; in getOutPath() 390 public void setOutPath(String outPath) { in setOutPath() argument 391 if (!outPath.startsWith(CMD_PREFIX)) { in setOutPath() 392 this.outPath = getFormattedPath(outPath); in setOutPath()
|
| D | UncompressVerify.java | 114 File outPath = new File(utility.getOutPath(), RPCID_SC); in rpcidCommandVerify() local 115 if (outPath.exists() && FALSE.equals(utility.getForceRewrite())) { in rpcidCommandVerify()
|
| D | Uncompress.java | 104 File outPath = new File(utility.getOutPath()); in unpackageProcess() local 105 deleteFile(outPath); in unpackageProcess() 106 outPath.mkdirs(); in unpackageProcess()
|
| D | Compressor.java | 3051 private static void writeVersionRecord(List<VersionNormalizeUtil> utils, String outPath) { in writeVersionRecord() argument 3053 … try (FileWriter fileWriter = new FileWriter(outPath + LINUX_FILE_SEPARATOR + VERSION_RECORD)) { in writeVersionRecord() 3077 private static void unpackHap(String srcPath, String outPath) throws BundleException { in unpackHap() argument 3080 File destDir = new File(outPath); in unpackHap() 3088 File entryFile = new File(outPath, entryName); in unpackHap()
|
| /developtools/smartperf_host/ide/ |
| D | webpack.config.js | 83 let outPath = path.normalize(path.join(__dirname, '/', 'dist')); variable 86 clearDirectory(outPath); 87 cpFile(binPath, outPath); 92 rs = childProcess.spawnSync('go', ['build', '-o', outPath, serverSrc], { 96 rs = childProcess.spawnSync('go', ['build', '-o', outPath + '/main', serverSrc], {
|
| /developtools/ace_ets2bundle/compiler/ |
| D | uglify-source.js | 41 function uglifyCode(code, outPath) { argument 43 fs.writeFileSync(outPath, uglifyCode)
|
| /developtools/ace_js2bundle/ace-loader/ |
| D | uglify-source.js | 41 function uglifyCode(code, outPath) { argument 43 fs.writeFileSync(outPath, uglifyCode)
|
| /developtools/profiler/host/smartperf/client/client_command/include/ |
| D | smartperf_command.h | 81 std::string outPath = "/data/local/tmp/data.csv"; variable
|
| /developtools/global_resource_tool/src/ |
| D | resource_append.cpp | 260 FileEntry::FilePath outPath(outputPath); in ScanFile() local 261 … return ResourceUtil::CopyFleInner(fileInfo.filePath, outPath.Append(ID_DEFINED_FILE).GetPath()); in ScanFile() 547 FileEntry::FilePath outPath(packageParser_.GetOutput()); in LoadResourceItemFromMem() local 548 if (ResourceUtil::FileExist(outPath.Append(data).GetPath())) { in LoadResourceItemFromMem() 551 if (!ResourceUtil::CreateDirs(outPath.Append(data).GetParent().GetPath())) { in LoadResourceItemFromMem() 559 if (!ResourceUtil::CopyFleInner(filePathStr, outPath.Append(data).GetPath())) { in LoadResourceItemFromMem()
|
| /developtools/profiler/device/plugins/hiebpf_plugin/tools/include/ |
| D | ebpf_converter.h | 28 EbpfConverter(const std::string& inputPath, const std::string& outPath);
|
| /developtools/profiler/host/smartperf/client/client_command/ |
| D | smartperf_command.cpp | 103 outPath = outPathParam + std::string(".csv"); in HandleCommand() 163 SpCsvUtil::WriteCsv(std::string(outPath.c_str()), vmap); in ExecCommand()
|
| /developtools/hdc/src/daemon/ |
| D | daemon_usb.cpp | 177 string outPath = basePath + "/ep1"; in ConnectEPPoint() local 178 if ((hUSB->bulkOut = open(outPath.c_str(), O_RDWR)) < 0) { in ConnectEPPoint() 179 WRITE_LOG(LOG_WARN, "%s: cannot open bulk-out ep: errno=%d", outPath.c_str(), errno); in ConnectEPPoint()
|
| /developtools/profiler/device/plugins/hiebpf_plugin/tools/src/ |
| D | ebpf_converter.cpp | 52 EbpfConverter::EbpfConverter(const std::string& inputPath, const std::string& outPath) in EbpfConverter() argument 53 : inputPath_(inputPath), outputPath_(outPath) {} in EbpfConverter()
|
| /developtools/packing_tool/ |
| D | README_zh.md | 319 …putStream input,String parseMode,String deviceType,String hapName,String outPath) | Java接口 | 接口功能:…
|