Lines Matching refs:open_flags
122 long open_flags = 0; in openfile() local
124 open_flags = O_CREAT | O_APPEND; in openfile()
126 open_flags |= O_RDWR; in openfile()
128 open_flags |= O_WRONLY; in openfile()
130 open_flags = O_CREAT | O_TRUNC; in openfile()
132 open_flags |= O_RDWR; in openfile()
134 open_flags |= O_WRONLY; in openfile()
137 open_flags |= O_RDWR; in openfile()
139 open_flags |= O_RDONLY; in openfile()
147 int fd = __llvm_libc::syscall(SYS_open, path, open_flags, OPEN_MODE); in openfile()
150 __llvm_libc::syscall(SYS_openat, AT_FDCWD, path, open_flags, OPEN_MODE); in openfile()