const syscall.O_WRONLY

6 uses

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

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