Home
last modified time | relevance | path

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

/developtools/packing_tool/adapter/ohos/
DScan.java155 File destDir = new File(copyPath); in getAllInputFileList() local
156 if (!destDir.exists()) { in getAllInputFileList()
157 destDir.mkdirs(); in getAllInputFileList()
182 File destDir = new File(outPath); in unpackHap() local
183 if (!destDir.exists()) { in unpackHap()
184 destDir.mkdirs(); in unpackHap()
DFileUtils.java201 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()
529 File destDir = new File(destDirPath); in unzipFile() local
530 if (!destDir.exists()) { in unzipFile()
531 destDir.mkdirs(); in unzipFile()
DScanStatSuffix.java497 File destDir = new File(outPath); in unpackHap() local
498 if (!destDir.exists()) { in unpackHap()
499 destDir.mkdirs(); in unpackHap()
DCompressor.java3080 File destDir = new File(outPath); in unpackHap() local
3081 if (!destDir.exists()) { in unpackHap()
3082 destDir.mkdirs(); in unpackHap()
/developtools/profiler/device/plugins/process_plugin/src/
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/cpu_plugin/src/
Dcpu_data_plugin.cpp530 DIR* destDir = nullptr; in OpenDestDir() local
532 destDir = opendir(dirPath.c_str()); in OpenDestDir()
533 …CHECK_NOTNULL(destDir, nullptr, "%s:failed to opendir(%s), errno=%d", __func__, dirPath.c_str(), e… in OpenDestDir()
535 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/memory_plugin/src/
Dmemory_data_plugin.cpp528 DIR* destDir = nullptr; in OpenDestDir() local
530 destDir = opendir(dirPath); in OpenDestDir()
531 if (destDir == nullptr) { in OpenDestDir()
538 return destDir; in OpenDestDir()