HomeSort by relevance Sort by last modified time
    Searched refs:Buffered (Results 1 - 25 of 34) sorted by null

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5089.go 13 func (b *bufio.Reader) Buffered() int { // ERROR "non-local|redefinition"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5089.go 13 func (b *bufio.Reader) Buffered() int { // ERROR "non-local|redefinition"
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
buf.go 14 // Reader implements a seekable buffered io.Reader.
20 // Writer implements a seekable buffered io.Writer.
47 offset -= int64(r.Buffered())
73 off -= int64(r.Buffered())
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
buf.go 14 // Reader implements a seekable buffered io.Reader.
20 // Writer implements a seekable buffered io.Writer.
47 offset -= int64(r.Buffered())
73 off -= int64(r.Buffered())
  /external/ltp/lib/
tst_res.c 110 static int Buffered = FALSE; /* TRUE if condensed output is currently */
111 /* buffered (i.e. not yet printed) */
220 if (Buffered == TRUE) {
245 Buffered = TRUE;
257 if (Buffered == TRUE && T_mode == NOPASS) {
259 Buffered = FALSE;
  /prebuilts/go/darwin-x86/src/bufio/
bufio.go 5 // Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer
28 // Buffered input.
68 // Reset discards any buffered data, resets all state, and switches
69 // the buffered reader to read from r.
155 // If 0 <= n <= b.Buffered(), Discard is guaranteed to succeed without
166 skip := b.Buffered()
169 skip = b.Buffered()
303 // Buffered returns the number of bytes that can be read from the current buffer.
304 func (b *Reader) Buffered() int { return b.w - b.r }
334 if b.Buffered() >= len(b.buf)
    [all...]
bufio_test.go     [all...]
  /prebuilts/go/linux-x86/src/bufio/
bufio.go 5 // Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer
28 // Buffered input.
68 // Reset discards any buffered data, resets all state, and switches
69 // the buffered reader to read from r.
155 // If 0 <= n <= b.Buffered(), Discard is guaranteed to succeed without
166 skip := b.Buffered()
169 skip = b.Buffered()
303 // Buffered returns the number of bytes that can be read from the current buffer.
304 func (b *Reader) Buffered() int { return b.w - b.r }
334 if b.Buffered() >= len(b.buf)
    [all...]
bufio_test.go     [all...]
  /art/compiler/linker/
output_stream_test.cc 81 TEST_F(OutputStreamTest, Buffered) {
132 BufferedOutputStream buffered(std::move(cos));
134 bool flush_result = buffered.Flush();
  /prebuilts/go/darwin-x86/src/debug/dwarf/
buf.go 5 // Buffered reading and decoding of DWARF data streams.
  /prebuilts/go/linux-x86/src/debug/dwarf/
buf.go 5 // Buffered reading and decoding of DWARF data streams.
  /prebuilts/go/darwin-x86/src/net/http/internal/
chunked.go 62 n := cr.r.Buffered()
73 if n > 0 && cr.r.Buffered() < 2 {
  /prebuilts/go/linux-x86/src/net/http/internal/
chunked.go 62 n := cr.r.Buffered()
73 if n > 0 && cr.r.Buffered() < 2 {
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 81 // Buffered returns a reader of the data remaining in the Decoder's
83 func (dec *Decoder) Buffered() io.Reader {
stream_test.go 171 rest, err := ioutil.ReadAll(d.Buffered())
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 81 // Buffered returns a reader of the data remaining in the Decoder's
83 func (dec *Decoder) Buffered() io.Reader {
stream_test.go 171 rest, err := ioutil.ReadAll(d.Buffered())
  /prebuilts/go/darwin-x86/src/net/textproto/
reader.go 133 // avoid copying that buffered data around in memory and skipping over
135 if r.R.Buffered() > 1 {
546 s := r.R.Buffered()
  /prebuilts/go/linux-x86/src/net/textproto/
reader.go 133 // avoid copying that buffered data around in memory and skipping over
135 if r.R.Buffered() > 1 {
546 s := r.R.Buffered()
  /prebuilts/go/darwin-x86/src/mime/multipart/
multipart.go 173 peek, _ := br.Peek(br.Buffered())
176 // Force buffered I/O to read more into buffer.
  /prebuilts/go/linux-x86/src/mime/multipart/
multipart.go 173 peek, _ := br.Peek(br.Buffered())
176 // Force buffered I/O to read more into buffer.
  /prebuilts/go/darwin-x86/src/cmd/internal/goobj/
read.go 322 // Since the data is so small, a just reading from the buffered
325 } else if n <= int64(r.b.Buffered()) {
334 // Seek, giving up buffered data.
  /prebuilts/go/linux-x86/src/cmd/internal/goobj/
read.go 322 // Since the data is so small, a just reading from the buffered
325 } else if n <= int64(r.b.Buffered()) {
334 // Seek, giving up buffered data.
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal.go 223 if t.Target == "xml" && p.Buffered() != 0 {
293 // Flush flushes any buffered XML to the underlying writer.

Completed in 944 milliseconds

1 2