Home
last modified time | relevance | path

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

/ohos5.0/base/update/sys_installer/services/module_update/util/src/
H A Dmodule_utils.cpp53 struct stat statData; in CreateDirIfNeeded() local
55 if (stat(path.c_str(), &statData) != 0) { in CreateDirIfNeeded()
66 if (!S_ISDIR(statData.st_mode)) { in CreateDirIfNeeded()
219 struct stat statData; in Revert() local
221 int ret = stat(activePath.c_str(), &statData); in Revert()
237 if (ret == 0 && chmod(activePath.c_str(), statData.st_mode & ALL_PERMISSIONS) != 0) { in Revert()