const syscall.O_WRONLY

6 uses

	syscall (current package)
		exec_linux.go#L405: 			if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&psetgroups[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
		exec_linux.go#L416: 			if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&pgid[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
		exec_linux.go#L430: 			if fd1, _, err1 = RawSyscall6(SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(&puid[0])), uintptr(O_WRONLY), 0, 0, 0); err1 != 0 {
		syscall_linux.go#L117: 	return Open(path, O_CREAT|O_WRONLY|O_TRUNC, mode)
		zerrors_linux_amd64.go#L643: 	O_WRONLY                         = 0x1

	os
		file.go#L75: 	O_WRONLY int = syscall.O_WRONLY // open the file write-only.