github.com/prometheus/common/expfmt.TextParser.buf (field)

11 uses

	github.com/prometheus/common/expfmt (current package)
		text_parse.go#L53: 	buf                  *bufio.Reader // Where the parsed input is read through.
		text_parse.go#L123: 	if p.buf == nil {
		text_parse.go#L124: 		p.buf = bufio.NewReader(in)
		text_parse.go#L126: 		p.buf.Reset(in)
		text_parse.go#L180: 			if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil {
		text_parse.go#L529: 		if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil || !isBlankOrTab(p.currentByte) {
		text_parse.go#L551: 		p.currentByte, p.err = p.buf.ReadByte()
		text_parse.go#L586: 		p.currentByte, p.err = p.buf.ReadByte()
		text_parse.go#L601: 		p.currentByte, p.err = p.buf.ReadByte()
		text_parse.go#L619: 		p.currentByte, p.err = p.buf.ReadByte()
		text_parse.go#L635: 		if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil {