const os.O_RDONLY

5 uses

	os (current package)
		file.go#L80: 	O_RDONLY int = syscall.O_RDONLY // open the file read-only.
		file.go#L365: 	return OpenFile(name, O_RDONLY, 0)
		file_unix.go#L309: 		r, s, e = open(name, O_RDONLY|syscall.O_CLOEXEC, 0)
		getwd.go#L87: 		fd, err := openFileNolog(parent, O_RDONLY, 0)
		removeall_at.go#L172: 		r, e = unix.Openat(dirfd, name, O_RDONLY|syscall.O_CLOEXEC|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0)