HomeSort by relevance Sort by last modified time
    Searched refs:ReadAll (Results 76 - 100 of 220) sorted by null

1 2 34 5 6 7 8 9

  /prebuilts/go/darwin-x86/src/bytes/
reader_test.go 271 buf, err := ioutil.ReadAll(r)
273 t.Errorf("ReadAll: unexpected error: %v", err)
276 t.Errorf("ReadAll: got %q, want %q", got, want)
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader_test.go 400 out, err := r.ReadAll()
402 t.Errorf("ReadAll() error:\ngot %v\nwant %v", err, tt.Error)
404 t.Errorf("ReadAll() output:\ngot %q\nwant %q", out, tt.Output)
reader.go 101 // first call to Read or ReadAll.
193 // ReadAll reads all the remaining records from r.
195 // A successful call returns err == nil, not err == io.EOF. Because ReadAll is
198 func (r *Reader) ReadAll() (records [][]string, err error) {
  /prebuilts/go/linux-x86/src/bytes/
reader_test.go 271 buf, err := ioutil.ReadAll(r)
273 t.Errorf("ReadAll: unexpected error: %v", err)
276 t.Errorf("ReadAll: got %q, want %q", got, want)
  /prebuilts/go/linux-x86/src/encoding/csv/
reader_test.go 400 out, err := r.ReadAll()
402 t.Errorf("ReadAll() error:\ngot %v\nwant %v", err, tt.Error)
404 t.Errorf("ReadAll() output:\ngot %q\nwant %q", out, tt.Output)
reader.go 101 // first call to Read or ReadAll.
193 // ReadAll reads all the remaining records from r.
195 // A successful call returns err == nil, not err == io.EOF. Because ReadAll is
198 func (r *Reader) ReadAll() (records [][]string, err error) {
  /prebuilts/go/darwin-x86/src/compress/flate/
deflate_test.go 296 out, err = ioutil.ReadAll(r)
324 out, err := ioutil.ReadAll(r)
414 data, err := ioutil.ReadAll(r)
626 got, err := ioutil.ReadAll(r)
628 t.Errorf("i=%d, firstN=%d, flush=%t: ReadAll: %v", i, firstN, flush, err)
853 dst, err := ioutil.ReadAll(r)
856 report("ReadAll: ", err)
  /prebuilts/go/linux-x86/src/compress/flate/
deflate_test.go 296 out, err = ioutil.ReadAll(r)
324 out, err := ioutil.ReadAll(r)
414 data, err := ioutil.ReadAll(r)
626 got, err := ioutil.ReadAll(r)
628 t.Errorf("i=%d, firstN=%d, flush=%t: ReadAll: %v", i, firstN, flush, err)
853 dst, err := ioutil.ReadAll(r)
856 report("ReadAll: ", err)
  /prebuilts/go/darwin-x86/src/encoding/base32/
base32_test.go 364 decoded, err := ioutil.ReadAll(NewDecoder(StdEncoding, encoded))
366 t.Fatalf("ioutil.ReadAll(NewDecoder(...)): %v", err)
431 res1, err := ioutil.ReadAll(dec)
433 t.Errorf("ReadAll failed: %v", err)
438 res2, err = ioutil.ReadAll(dec)
440 t.Errorf("ReadAll failed: %v", err)
  /prebuilts/go/linux-x86/src/encoding/base32/
base32_test.go 364 decoded, err := ioutil.ReadAll(NewDecoder(StdEncoding, encoded))
366 t.Fatalf("ioutil.ReadAll(NewDecoder(...)): %v", err)
431 res1, err := ioutil.ReadAll(dec)
433 t.Errorf("ReadAll failed: %v", err)
438 res2, err = ioutil.ReadAll(dec)
440 t.Errorf("ReadAll failed: %v", err)
  /prebuilts/go/darwin-x86/src/net/http/
transport_test.go 170 body, err := ioutil.ReadAll(res.Body)
172 t.Fatalf("error in disableKeepAlive=%v, req #%d, ReadAll: %v", disableKeepAlive, n, err)
217 body, err := ioutil.ReadAll(res.Body)
219 t.Fatalf("error in connectionClose=%v, req #%d, ReadAll: %v", connectionClose, n, err)
270 body, err := ioutil.ReadAll(res.Body)
272 t.Fatalf("error in connectionClose=%v, req #%d, ReadAll: %v", connectionClose, n, err)
327 ioutil.ReadAll(resp.Body)
424 if _, err := ioutil.ReadAll(resp.Body); err != nil {
425 t.Errorf("ReadAll: %v", err)
490 slurp, err := ioutil.ReadAll(res.Body
    [all...]
fs_test.go 162 body, err := ioutil.ReadAll(part)
302 b, err := ioutil.ReadAll(res.Body)
350 b, err := ioutil.ReadAll(res.Body)
384 b, err := ioutil.ReadAll(res.Body)
386 t.Fatalf("ReadAll %s: %v", suffix, err)
570 b, err := ioutil.ReadAll(res.Body)
590 b, err := ioutil.ReadAll(res.Body)
691 b, err := ioutil.ReadAll(res.Body)
1155 b, err := ioutil.ReadAll(r.Body)
    [all...]
serve_test.go 513 slurp, _ := ioutil.ReadAll(res.Body)
660 got, err := ioutil.ReadAll(r.Body)
692 got, err = ioutil.ReadAll(r.Body)
1028 // The ReadAll will hang for a failing test, so use a Timer to
1031 got, _ := ioutil.ReadAll(conn)
1073 _, err = ioutil.ReadAll(r)
1209 body, err := ioutil.ReadAll(res.Body)
1211 t.Fatalf("ReadAll error: %v", err)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
transport_test.go 170 body, err := ioutil.ReadAll(res.Body)
172 t.Fatalf("error in disableKeepAlive=%v, req #%d, ReadAll: %v", disableKeepAlive, n, err)
217 body, err := ioutil.ReadAll(res.Body)
219 t.Fatalf("error in connectionClose=%v, req #%d, ReadAll: %v", connectionClose, n, err)
270 body, err := ioutil.ReadAll(res.Body)
272 t.Fatalf("error in connectionClose=%v, req #%d, ReadAll: %v", connectionClose, n, err)
327 ioutil.ReadAll(resp.Body)
424 if _, err := ioutil.ReadAll(resp.Body); err != nil {
425 t.Errorf("ReadAll: %v", err)
490 slurp, err := ioutil.ReadAll(res.Body
    [all...]
fs_test.go 162 body, err := ioutil.ReadAll(part)
302 b, err := ioutil.ReadAll(res.Body)
350 b, err := ioutil.ReadAll(res.Body)
384 b, err := ioutil.ReadAll(res.Body)
386 t.Fatalf("ReadAll %s: %v", suffix, err)
570 b, err := ioutil.ReadAll(res.Body)
590 b, err := ioutil.ReadAll(res.Body)
691 b, err := ioutil.ReadAll(res.Body)
1155 b, err := ioutil.ReadAll(r.Body)
    [all...]
serve_test.go 513 slurp, _ := ioutil.ReadAll(res.Body)
660 got, err := ioutil.ReadAll(r.Body)
692 got, err = ioutil.ReadAll(r.Body)
1028 // The ReadAll will hang for a failing test, so use a Timer to
1031 got, _ := ioutil.ReadAll(conn)
1073 _, err = ioutil.ReadAll(r)
1209 body, err := ioutil.ReadAll(res.Body)
1211 t.Fatalf("ReadAll error: %v", err)
    [all...]
  /prebuilts/go/darwin-x86/src/io/
multi_test.go 199 data, err := ioutil.ReadAll(r)
201 t.Errorf("ReadAll() = %q, %v, want %q, nil", data, err, "hello world")
279 got, err := ioutil.ReadAll(LimitReader(MultiReader(byteAndEOFReader('a'), byteAndEOFReader('b')), 10))
  /prebuilts/go/linux-x86/src/io/
multi_test.go 199 data, err := ioutil.ReadAll(r)
201 t.Errorf("ReadAll() = %q, %v, want %q, nil", data, err, "hello world")
279 got, err := ioutil.ReadAll(LimitReader(MultiReader(byteAndEOFReader('a'), byteAndEOFReader('b')), 10))
  /external/golang-protobuf/descriptor/
descriptor.go 57 b, err := ioutil.ReadAll(r)
  /prebuilts/go/darwin-x86/src/cmd/go/internal/web/
http.go 67 b, err := ioutil.ReadAll(resp.Body)
  /prebuilts/go/darwin-x86/src/os/exec/
example_test.go 131 slurp, _ := ioutil.ReadAll(stderr)
  /prebuilts/go/darwin-x86/src/time/
genzabbrs.go 74 data, err := ioutil.ReadAll(r.Body)
  /prebuilts/go/linux-x86/src/cmd/go/internal/web/
http.go 67 b, err := ioutil.ReadAll(resp.Body)
  /prebuilts/go/linux-x86/src/os/exec/
example_test.go 131 slurp, _ := ioutil.ReadAll(stderr)
  /prebuilts/go/linux-x86/src/time/
genzabbrs.go 74 data, err := ioutil.ReadAll(r.Body)

Completed in 812 milliseconds

1 2 34 5 6 7 8 9