Lines Matching defs:oflags
412 int SysOpen(const char *path, int oflags, ...)
432 if (oflags & O_CLOEXEC) {
436 if ((unsigned int)oflags & O_DIRECTORY) {
437 ret = do_opendir(pathRet, oflags);
441 va_start(ap, oflags);
446 ret = do_open(AT_FDCWD, pathRet, oflags, mode);
1781 int SysOpenat(int dirfd, const char *path, int oflags, ...)
1790 va_start(ap, oflags);
1810 if (oflags & O_CLOEXEC) {
1819 ret = do_open(dirfd, (path ? pathRet : NULL), oflags, mode);