Home
last modified time | relevance | path

Searched refs:destDir (Results 1 - 7 of 7) sorted by relevance

/developtools/packing_tool/adapter/ohos/
H A DScan.java155 File destDir = new File(copyPath); in getAllInputFileList()
156 if (!destDir.exists()) { in getAllInputFileList()
157 destDir.mkdirs(); in getAllInputFileList()
182 File destDir = new File(outPath); in unpackHap()
183 if (!destDir.exists()) { in unpackHap()
184 destDir.mkdirs(); in unpackHap()
H A DFileUtils.java199 * @param destDir path after unzip file
201 public static void unzip(final String hapPath, final String destDir) { in unzip() argument
202 File file = new File(destDir); in unzip()
221 String filePath = destDir + File.separator + entry.getName(); in unzip()
530 File destDir = new File(destDirPath); in unzipFile()
531 if (!destDir.exists()) { in unzipFile()
532 destDir.mkdirs(); in unzipFile()
H A DScanStatSuffix.java497 File destDir = new File(outPath); in unpackHap()
498 if (!destDir.exists()) { in unpackHap()
499 destDir.mkdirs(); in unpackHap()
H A DCompressor.java3462 File destDir = new File(outPath); in unpackHap()
3463 if (!destDir.exists()) { in unpackHap()
3464 destDir.mkdirs(); in unpackHap()
/developtools/profiler/device/plugins/cpu_plugin/src/
H A Dcpu_data_plugin.cpp545 DIR* destDir = nullptr; in OpenDestDir() local
547 destDir = opendir(dirPath.c_str()); in OpenDestDir()
548 CHECK_NOTNULL(destDir, nullptr, "%s:failed to opendir(%s), errno=%d", __func__, dirPath.c_str(), errno); in OpenDestDir()
550 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/process_plugin/src/
H A Dprocess_data_plugin.cpp105 DIR* destDir = nullptr; in OpenDestDir() local
107 destDir = opendir(dirPath); in OpenDestDir()
108 if (destDir == nullptr) { in OpenDestDir()
112 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/memory_plugin/src/
H A Dmemory_data_plugin.cpp511 DIR* destDir = nullptr; in OpenDestDir() local
513 destDir = opendir(dirPath); in OpenDestDir()
514 if (destDir == nullptr) { in OpenDestDir()
521 return destDir; in OpenDestDir()

Completed in 13 milliseconds