func bufio.NewScanner

41 uses

	bufio (current package)
		scan.go#L87: func NewScanner(r io.Reader) *Scanner {

	github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds
		ec2_role_provider.go#L148: 	s := bufio.NewScanner(strings.NewReader(resp))

	github.com/go-git/go-git/v5/plumbing/transport/internal/common
		common.go#L152: 		s := bufio.NewScanner(r)

	github.com/go-git/go-git/v5/storage/filesystem
		shallow.go#L48: 	scn := bufio.NewScanner(f)

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		dotgit.go#L660: 	s := bufio.NewScanner(f)
		dotgit.go#L827: 	s := bufio.NewScanner(pr)
		dotgit.go#L1057: 	scanner := bufio.NewScanner(f)

	github.com/google/pprof/profile
		legacy_profile.go#L80: 	s := bufio.NewScanner(bytes.NewBuffer(b))
		legacy_profile.go#L465: 	s := bufio.NewScanner(bytes.NewBuffer(b))
		legacy_profile.go#L680: 	s := bufio.NewScanner(bytes.NewBuffer(b))
		legacy_profile.go#L837: 	s := bufio.NewScanner(bytes.NewBuffer(b))
		legacy_profile.go#L970: 	s := bufio.NewScanner(rd)
		legacy_profile.go#L1021: 	return p.ParseMemoryMapFromScanner(bufio.NewScanner(rd))

	github.com/jackc/pgpassfile
		pgpass.go#L41: 	scanner := bufio.NewScanner(r)

	github.com/jackc/pgservicefile
		pgservicefile.go#L48: 	scanner := bufio.NewScanner(r)

	github.com/lib/pq
		conn.go#L210: 	scanner := bufio.NewScanner(io.Reader(file))

	github.com/prometheus/procfs
		buddyinfo.go#L48: 		scanner     = bufio.NewScanner(r)
		cpuinfo.go#L69: 	scanner := bufio.NewScanner(bytes.NewReader(info))
		ipvs.go#L140: 		scanner      = bufio.NewScanner(file)
		meminfo.go#L163: 	s := bufio.NewScanner(r)
		mountinfo.go#L58: 	scanner := bufio.NewScanner(bytes.NewReader(info))
		mountstats.go#L248: 	s := bufio.NewScanner(r)
		net_dev.go#L69: 	s := bufio.NewScanner(f)
		net_sockstat.go#L82: 	s := bufio.NewScanner(r)
		net_unix.go#L116: 	scanner := bufio.NewScanner(reader)
		proc_fdinfo.go#L56: 	scanner := bufio.NewScanner(bytes.NewReader(data))
		proc_limits.go#L97: 		s = bufio.NewScanner(f)
		proc_psi.go#L72: 	scanner := bufio.NewScanner(r)
		schedstat.go#L68: 	scanner := bufio.NewScanner(file)
		stat.go#L176: 	scanner := bufio.NewScanner(bytes.NewReader(data))
		xfrm.go#L108: 		s = bufio.NewScanner(file)

	golang.org/x/crypto/ssh/knownhosts
		knownhosts.go#L393: 	scanner := bufio.NewScanner(r)

	golang.org/x/oauth2/google
		sdk.go#L154: 	scanner := bufio.NewScanner(ini)

	golang.org/x/pkgsite/cmd/worker
		main.go#L250: 	scan := bufio.NewScanner(f)

	golang.org/x/pkgsite/devtools/cmd/css
		main.go#L53: 	scanner := bufio.NewScanner(resp.Body)

	golang.org/x/pkgsite/internal/godoc/codec
		generate.go#L56: 	scan := bufio.NewScanner(f)

	golang.org/x/pkgsite/internal/proxy
		client.go#L229: 		scanner := bufio.NewScanner(body)

	golang.org/x/pkgsite/internal/symbol
		apigodoc.go#L132: 	sc := bufio.NewScanner(f)

	golang.org/x/pkgsite/internal/worker
		memory.go#L56: 	scan := bufio.NewScanner(f)
		memory.go#L170: 	scan := bufio.NewScanner(f)

	mime
		type_unix.go#L33: 	scanner := bufio.NewScanner(f)