Home
last modified time | relevance | path

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

/aosp12/system/incremental_delivery/incfs/
H A Dincfs.cpp880 static IncFsErrorCode makeDir(const char* commandPath, int32_t mode, bool allowExisting) { in makeDir() argument
888 return (allowExisting && errno == EEXIST) ? 0 : -errno; in makeDir()
/aosp12/frameworks/base/services/incremental/
H A DIncrementalService.cpp130 bool mkdirOrLog(std::string_view name, int mode = 0770, bool allowExisting = true) { in mkdirOrLog() argument
133 if (!allowExisting || errno != EEXIST) { in mkdirOrLog()