Lines Matching refs:oflags
135 int iflags, oflags; in setup() local
170 oflags = fcntl(out.fd, F_GETFL); in setup()
171 if (oflags == -1) in setup()
173 oflags |= O_FSYNC; in setup()
174 if (fcntl(out.fd, F_SETFL, oflags) == -1) in setup()
178 oflags = O_CREAT; in setup()
180 oflags |= O_TRUNC; in setup()
182 oflags |= O_FSYNC; in setup()
184 oflags |= O_DIRECT; in setup()
186 out.fd = open(out.name, O_RDWR | oflags, DEFFILEMODE); in setup()
195 out.fd = open(out.name, O_WRONLY | oflags, DEFFILEMODE); in setup()