Home
last modified time | relevance | path

Searched refs:dirPath (Results 1 – 21 of 21) sorted by relevance

/base/update/updater/services/applypatch/
Dstore.cpp47 int32_t Store::FreeStore(const std::string &dirPath, const std::string &fileName) in FreeStore() argument
49 if (dirPath.empty() || fileName.empty()) { in FreeStore()
52 std::string path = dirPath + "/" + fileName; in FreeStore()
65 std::string dirPath = path + '/'; in CreateNewSpace() local
67 LOG(INFO) << "Create dir " << dirPath; in CreateNewSpace()
68 if (stat(dirPath.c_str(), &fileStat) == -1) { in CreateNewSpace()
73 if (MkdirRecursive(dirPath, S_IRWXU) != 0) { in CreateNewSpace()
82 if (GetFilesFromDirectory(dirPath, files) < 0) { in CreateNewSpace()
100 int32_t Store::WriteDataToStore(const std::string &dirPath, const std::string &fileName, in WriteDataToStore() argument
103 if (dirPath.empty()) { in WriteDataToStore()
[all …]
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/
Dhiappevent_write.cpp78 std::string dirPath = GetStorageDirPath(); in WriteEvent() local
79 if (dirPath.empty()) { in WriteEvent()
87 if (!FileUtil::IsFileExists(dirPath) && !FileUtil::ForceCreateDirectory(dirPath)) { in WriteEvent()
91 CheckStorageSpace(dirPath); in WriteEvent()
92 std::string filePath = FileUtil::GetFilePathByDir(dirPath, GetStorageFileName()); in WriteEvent()
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/
Dos_event_listener.cpp104 bool OsEventListener::InitDir(const std::string& dirPath) in InitDir() argument
106 if (!FileUtil::IsFileExists(dirPath) && !FileUtil::ForceCreateDirectory(dirPath)) { in InitDir()
107 HiLog::Error(LABEL, "failed to create dir=%{public}s", dirPath.c_str()); in InitDir()
110 if (OHOS::StorageDaemon::AclSetAccess(dirPath, "g:1201:rwx") != 0) { in InitDir()
111 HiLog::Error(LABEL, "failed to set acl access dir=%{public}s", dirPath.c_str()); in InitDir()
117 bool OsEventListener::RegisterDirListener(const std::string& dirPath) in RegisterDirListener() argument
122 … HiLog::Error(LABEL, "failed to inotify init : %s(%s).\n", strerror(errno), dirPath.c_str()); in RegisterDirListener()
125 inotifyWd_ = inotify_add_watch(inotifyFd_, dirPath.c_str(), IN_MOVED_TO | IN_CLOSE_WRITE); in RegisterDirListener()
127 … HiLog::Error(LABEL, "failed to add watch entry : %s(%s).\n", strerror(errno), dirPath.c_str()); in RegisterDirListener()
132 HiLog::Info(LABEL, "inotify add watch dir=%{public}s successfully", dirPath.c_str()); in RegisterDirListener()
/base/update/updater/services/include/applypatch/
Dstore.h30 static int32_t FreeStore(const std::string &dirPath, const std::string &fileName);
32 static int32_t WriteDataToStore(const std::string &dirPath, const std::string &fileName,
35 static int32_t LoadDataFromStore(const std::string &dirPath, const std::string &fileName,
/base/hiviewdfx/hiview/adapter/plugins/eventservice/service/idl/include/
Ddata_share_store.h31 DataShareStore(std::string dirPath): dbStore_(nullptr), dirPath_(dirPath){}; in DataShareStore() argument
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/include/
Dos_event_listener.h38 bool InitDir(const std::string& dirPath);
39 bool RegisterDirListener(const std::string& dirPath);
/base/hiviewdfx/hiview/adapter/service/idl/src/
Dhiview_service_agent.cpp181 bool HiviewServiceAgent::CreateAndGrantAclPermission(const std::string& dirPath) in CreateAndGrantAclPermission() argument
183 if (!FileUtil::FileExists(dirPath) && !FileUtil::ForceCreateDirectory(dirPath)) { in CreateAndGrantAclPermission()
187 if (OHOS::StorageDaemon::AclSetAccess(dirPath, "g:1201:rwx") != 0) { in CreateAndGrantAclPermission()
Dhiview_service_ability.cpp170 void HiviewServiceAbility::GetFileInfoUnderDir(const std::string& dirPath, std::vector<HiviewFileIn… in GetFileInfoUnderDir() argument
172 DIR* dir = opendir(dirPath.c_str()); in GetFileInfoUnderDir()
182 std::string filePath(dirPath + ent->d_name); in GetFileInfoUnderDir()
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
Dcm_event_process.c128 static int32_t RemoveDir(const char *dirPath) in RemoveDir() argument
131 int32_t ret = stat(dirPath, &fileStat); in RemoveDir()
140 DIR *dir = opendir(dirPath); in RemoveDir()
148 ret = CmFileRemove(dirPath, dire->d_name); in RemoveDir()
156 (void)remove(dirPath); in RemoveDir()
/base/startup/init/services/utils/
Dinit_utils.c529 int ReadFileInDir(const char *dirPath, const char *includeExt, in ReadFileInDir() argument
532 INIT_CHECK_RETURN_VALUE(dirPath != NULL && processFile != NULL, -1); in ReadFileInDir()
533 DIR *pDir = opendir(dirPath); in ReadFileInDir()
534 INIT_ERROR_CHECK(pDir != NULL, return -1, "Read dir :%s failed.%d", dirPath, errno); in ReadFileInDir()
537 return -1, "Failed to malloc for %s", dirPath); in ReadFileInDir()
554 … int ret = snprintf_s(fileName, MAX_BUF_SIZE, MAX_BUF_SIZE - 1, "%s/%s", dirPath, dp->d_name); in ReadFileInDir()
565 INIT_LOGV("ReadFileInDir dirPath %s %d", dirPath, count); in ReadFileInDir()
/base/security/huks/utils/file_operator/
Dhks_file_operator_lite.c287 int32_t HksRemoveDir(const char *dirPath) in HksRemoveDir() argument
290 int32_t ret = stat(dirPath, &fileStat); in HksRemoveDir()
301 DIR *dir = opendir(dirPath); in HksRemoveDir()
307 ret = HksFileRemove(dirPath, dire->d_name); in HksRemoveDir()
Dhks_file_operator.h104 int32_t HksRemoveDir(const char *dirPath);
Dhks_file_operator.c341 int32_t HksRemoveDir(const char *dirPath) in HksRemoveDir() argument
344 int32_t ret = stat(dirPath, &fileStat); in HksRemoveDir()
355 DIR *dir = opendir(dirPath); in HksRemoveDir()
361 ret = HksFileRemove(dirPath, dire->d_name); in HksRemoveDir()
/base/hiviewdfx/hiview/adapter/service/idl/include/
Dhiview_service_agent.h46 bool CreateAndGrantAclPermission(const std::string& dirPath);
Dhiview_service_ability.h80 void GetFileInfoUnderDir(const std::string& dirPath, std::vector<HiviewFileInfo>& fileInfos);
/base/hiviewdfx/hiview/framework/native/unified_collection/collector/utils/
Dtrace_utils.cpp244 bool CreateMultiDirectory(const std::string &dirPath) in CreateMultiDirectory() argument
246 uint32_t dirPathLen = dirPath.length(); in CreateMultiDirectory()
252 tmpDirPath[i] = dirPath[i]; in CreateMultiDirectory()
/base/hiviewdfx/hiview/framework/native/unified_collection/collector/inner_include/
Dtrace_utils.h46 bool CreateMultiDirectory(const std::string &dirPath);
/base/startup/init/interfaces/innerkits/include/
Dinit_utils.h81 int ReadFileInDir(const char *dirPath, const char *includeExt,
/base/telephony/core_service/services/sim/src/
Doperator_file_parser.cpp68 std::filesystem::path dirPath = std::string(DEFAULT_OPERATE_CONFIG_DIR); in DeleteFiles() local
70 std::filesystem::remove_all(dirPath, errorCode); in DeleteFiles()
/base/hiviewdfx/hiview/plugins/eventlogger/include/
Devent_logger.h95 void CreateAndPublishEvent(std::string& dirPath, std::string& fileName);
/base/hiviewdfx/hiview/framework/native/unified_collection/collector/
Dmemory_collector_impl.cpp479 static std::string GetSnapshotPath(const std::string& dirPath, const std::string& pidStr) in GetSnapshotPath() argument
481 std::string fileName = GetNewestSnapshotPath(dirPath); in GetSnapshotPath()