Home
last modified time | relevance | path

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

/cts/tests/tests/graphics/src/android/graphics/fonts/
DDataDirPermissionTest.java21 import static android.system.OsConstants.S_IRWXU;
52 Os.open(FONT_DATA_DIR + "/test.txt", O_CREAT | O_RDWR, S_IRWXU); in testDataFontDirNotOpenableForWrite()
65 Os.open(FONT_DATA_FILES_DIR + "/test.txt", O_CREAT | O_RDWR, S_IRWXU); in testDataFontFilesDirNotOpenableForWrite()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DFileUtils.java41 public static final int S_IRWXU = 00700; field in FileUtils
82 if (((S_IRWXU | S_IRWXG | S_IRWXO) & flag) != flag) { in hasModeFlag()
/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/
DFileUtils.java45 public static final int S_IRWXU = 00700; field in FileUtils
86 if (((S_IRWXU | S_IRWXG | S_IRWXO) & flag) != flag) { in hasModeFlag()
/cts/hostsidetests/scopedstorage/general/src/android/scopedstorage/cts/general/
DScopedStorageDeviceTest.java109 import static android.system.OsConstants.S_IRWXU;
706 FileDescriptor fd = Os.open(filePath, createExclFlags, S_IRWXU); in testLowLevelFileIO()
710 Os.open(filePath, createExclFlags, S_IRWXU); in testLowLevelFileIO()
713 fd = Os.open(filePath, createFlags, S_IRWXU); in testLowLevelFileIO()
722 fd = Os.open(filePath, createFlags | O_APPEND, S_IRWXU); in testLowLevelFileIO()
732 fd = Os.open(filePath, createFlags | O_TRUNC, S_IRWXU); in testLowLevelFileIO()