func os.ReadFile

11 uses

	os (current package)
		file.go#L669: func ReadFile(name string) ([]byte, error) {

	crypto/tls
		tls.go#L231: 	certPEMBlock, err := os.ReadFile(certFile)
		tls.go#L235: 	keyPEMBlock, err := os.ReadFile(keyFile)

	crypto/x509
		root_unix.go#L42: 		data, err := os.ReadFile(file)
		root_unix.go#L70: 			data, err := os.ReadFile(directory + "/" + fi.Name())

	go/parser
		interface.go#L42: 	return os.ReadFile(filename)

	google.golang.org/grpc/credentials
		tls.go#L169: 	b, err := os.ReadFile(certFile)

	html/template
		template.go#L526: 	b, err = os.ReadFile(file)

	io/ioutil
		ioutil.go#L37: 	return os.ReadFile(filename)

	runtime/pprof
		proto.go#L583: 	data, _ := os.ReadFile("/proc/self/maps")

	text/template
		helper.go#L167: 	b, err = os.ReadFile(file)