const syscall.O_WRONLY
6 uses
syscall (current package)
exec_linux.go#L307: if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&psetgroups[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
exec_linux.go#L318: if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&pgid[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
exec_linux.go#L332: if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&puid[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
syscall_linux.go#L38: return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
zerrors_linux_amd64.go#L665: O_WRONLY = 0x1
os
file.go#L76: O_WRONLY int = syscall.O_WRONLY // open the file write-only.