Home
last modified time | relevance | path

Searched refs:outPath (Results 1 – 18 of 18) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DUncompressEntrance.java140 …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
DCompressEntrance.java40 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()
DScan.java165 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()
DScanStatSuffix.java226 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 …]
DUtility.java65 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()
DUncompressVerify.java114 File outPath = new File(utility.getOutPath(), RPCID_SC); in rpcidCommandVerify() local
115 if (outPath.exists() && FALSE.equals(utility.getForceRewrite())) { in rpcidCommandVerify()
DUncompress.java104 File outPath = new File(utility.getOutPath()); in unpackageProcess() local
105 deleteFile(outPath); in unpackageProcess()
106 outPath.mkdirs(); in unpackageProcess()
DCompressor.java3051 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/
Dwebpack.config.js83 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/
Duglify-source.js41 function uglifyCode(code, outPath) { argument
43 fs.writeFileSync(outPath, uglifyCode)
/developtools/ace_js2bundle/ace-loader/
Duglify-source.js41 function uglifyCode(code, outPath) { argument
43 fs.writeFileSync(outPath, uglifyCode)
/developtools/profiler/host/smartperf/client/client_command/include/
Dsmartperf_command.h81 std::string outPath = "/data/local/tmp/data.csv"; variable
/developtools/global_resource_tool/src/
Dresource_append.cpp260 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/
Debpf_converter.h28 EbpfConverter(const std::string& inputPath, const std::string& outPath);
/developtools/profiler/host/smartperf/client/client_command/
Dsmartperf_command.cpp103 outPath = outPathParam + std::string(".csv"); in HandleCommand()
163 SpCsvUtil::WriteCsv(std::string(outPath.c_str()), vmap); in ExecCommand()
/developtools/hdc/src/daemon/
Ddaemon_usb.cpp177 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/
Debpf_converter.cpp52 EbpfConverter::EbpfConverter(const std::string& inputPath, const std::string& outPath) in EbpfConverter() argument
53 : inputPath_(inputPath), outputPath_(outPath) {} in EbpfConverter()
/developtools/packing_tool/
DREADME_zh.md319 …putStream input,String parseMode,String deviceType,String hapName,String outPath) | Java接口 | 接口功能:…