Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hiview/base/utility/include/
H A Dfile_util.h52 constexpr mode_t DEFAULT_FILE_MODE = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH; // -rw-rw-r-- variable
72 int32_t CreateFile(const std::string &path, mode_t mode = DEFAULT_FILE_MODE);
H A Dcommon_utils.h27 static constexpr mode_t DEFAULT_FILE_MODE = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH; // -rw… variable
/ohos5.0/base/hiviewdfx/hiview/framework/native/unified_collection/collector/
H A Dmemory_collector_impl.cpp81 if (fd = creat(savePath.c_str(), FileUtil::DEFAULT_FILE_MODE); fd == -1) { in GetSavePath()