Home
last modified time | relevance | path

Searched refs:S_IRWXU (Results 1 – 6 of 6) 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/tests/tests/permission/src/android/permission/cts/
DFileUtils.java42 public static final int S_IRWXU = 00700; field in FileUtils
78 if (((S_IRWXU | S_IRWXG | S_IRWXO) & flag) != flag) { in hasModeFlag()
/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/suite/audio_quality/lib/src/
DFileUtil.cpp53 int result = mkdir(reportTopDir, S_IRWXU); in prepare()
68 result = mkdir(path.string(), S_IRWXU); in prepare()
/cts/suite/audio_quality/lib/src/task/
DTaskSave.cpp72 int result = mkdir(dirName.string(), S_IRWXU); in handleFile()
/cts/hostsidetests/scopedstorage/device/src/android/scopedstorage/cts/device/
DScopedStorageDeviceTest.java102 import static android.system.OsConstants.S_IRWXU;
685 FileDescriptor fd = Os.open(filePath, createExclFlags, S_IRWXU); in testLowLevelFileIO()
689 Os.open(filePath, createExclFlags, S_IRWXU); in testLowLevelFileIO()
692 fd = Os.open(filePath, createFlags, S_IRWXU); in testLowLevelFileIO()
701 fd = Os.open(filePath, createFlags | O_APPEND, S_IRWXU); in testLowLevelFileIO()
711 fd = Os.open(filePath, createFlags | O_TRUNC, S_IRWXU); in testLowLevelFileIO()