Home
last modified time | relevance | path

Searched refs:destDir (Results 1 – 4 of 4) 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()
/developtools/profiler/device/plugins/cpu_plugin/src/
Dcpu_data_plugin.cpp503 DIR* destDir = nullptr; in OpenDestDir() local
505 destDir = opendir(dirPath.c_str()); in OpenDestDir()
506 …CHECK_NOTNULL(destDir, nullptr, "%s:failed to opendir(%s), errno=%d", __func__, dirPath.c_str(), e… in OpenDestDir()
508 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/process_plugin/src/
Dprocess_data_plugin.cpp92 DIR* destDir = nullptr; in OpenDestDir() local
94 destDir = opendir(dirPath); in OpenDestDir()
95 if (destDir == nullptr) { in OpenDestDir()
99 return destDir; in OpenDestDir()
/developtools/profiler/device/plugins/memory_plugin/src/
Dmemory_data_plugin.cpp517 DIR* destDir = nullptr; in OpenDestDir() local
519 destDir = opendir(dirPath); in OpenDestDir()
520 if (destDir == nullptr) { in OpenDestDir()
527 return destDir; in OpenDestDir()