Home
last modified time | relevance | path

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

/developtools/packing_tool/adapter/ohos/
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()
DCompressor.java1109 public static void unzip(final String hapPath, final String destDir) { in unzip() argument
1110 File file = new File(destDir); in unzip()
1129 new File(destDir + File.separator + entry.getName()).mkdirs(); in unzip()
1133 File newFile = new File(destDir + File.separator + entry.getName()); in unzip()
/developtools/profiler/device/plugins/process_plugin/src/
Dprocess_data_plugin.cpp96 DIR* destDir = nullptr; in OpenDestDir() local
98 destDir = opendir(dirPath); in OpenDestDir()
99 if (destDir == nullptr) { in OpenDestDir()
103 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/cpu_plugin/src/
Dcpu_data_plugin.cpp517 DIR* destDir = nullptr; in OpenDestDir() local
519 destDir = opendir(dirPath.c_str()); in OpenDestDir()
520 if (destDir == nullptr) { in OpenDestDir()
524 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/memory_plugin/src/
Dmemory_data_plugin.cpp533 DIR* destDir = nullptr; in OpenDestDir() local
535 destDir = opendir(dirPath); in OpenDestDir()
536 if (destDir == nullptr) { in OpenDestDir()
543 return destDir; in OpenDestDir()