Lines Matching refs:open
29 int fd = open(filename, O_RDWR | O_CREAT, 0644); in TestAccessReadable()
36 fd = open(filename, O_RDONLY, 0644); in TestAccessReadable()
65 int fd = open(filename, O_RDWR | O_CREAT, 0644); in TestAccessWritable()
72 fd = open(filename, O_WRONLY, 0644); in TestAccessWritable()
97 int fd = open(filename, O_RDWR | O_CREAT, 0644); in TestAccessBadflags()
102 ASSERT_LT(open(filename, O_RDONLY | O_TRUNC | O_CREAT, 0644), 0); in TestAccessBadflags()
117 int fd = open(filename, O_RDWR, 0644); in TestAccessDirectory()
120 fd = open(filename, O_WRONLY, 0644); in TestAccessDirectory()
125 fd = open(filename, O_RDONLY, 0644); in TestAccessDirectory()
143 fd = open(filename, O_CREAT | O_RDWR | O_PATH); in TestAccessOpath()
149 fd = open(filename, O_CREAT | O_RDWR); in TestAccessOpath()
155 fd = open(filename, O_RDWR | O_PATH); in TestAccessOpath()
174 fd = open(filename, O_RDWR | O_CREAT | O_EXCL | O_TRUNC | O_PATH); in TestAccessOpath()
204 ASSERT_LT(open(filename, O_PATH | O_DIRECTORY), 0); in TestAccessOpath()
207 fd = open(dirname, O_PATH | O_DIRECTORY); in TestAccessOpath()
252 ASSERT_GE((fd = open(dirname, O_PATH | O_DIRECTORY)), 0); in TestOpathFdcount()
260 ASSERT_GE((fd = open(dirname, O_PATH | O_DIRECTORY)), 0); in TestOpathFdcount()