HomeSort by relevance Sort by last modified time
    Searched defs:ReadAll (Results 1 - 11 of 11) sorted by null

  /prebuilts/go/darwin-x86/src/encoding/csv/
reader.go 87 // first call to Read or ReadAll.
172 // ReadAll reads all the remaining records from r.
174 // A successful call returns err == nil, not err == io.EOF. Because ReadAll is
177 func (r *Reader) ReadAll() (records [][]string, err error) {
  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil.go 16 // readAll reads from r until an error or EOF and returns the data it read
18 func readAll(r io.Reader, capacity int64) (b []byte, err error) {
37 // ReadAll reads from r until an error or EOF and returns the data it read.
38 // A successful call returns err == nil, not err == EOF. Because ReadAll is
41 func ReadAll(r io.Reader) ([]byte, error) {
42 return readAll(r, bytes.MinRead)
65 // As initial capacity for readAll, use n + a little extra in case Size is zero,
66 // and to avoid another allocation after Read has filled the buffer. The readAll
70 return readAll(f, n+bytes.MinRead)
  /prebuilts/go/linux-x86/src/encoding/csv/
reader.go 87 // first call to Read or ReadAll.
172 // ReadAll reads all the remaining records from r.
174 // A successful call returns err == nil, not err == io.EOF. Because ReadAll is
177 func (r *Reader) ReadAll() (records [][]string, err error) {
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil.go 16 // readAll reads from r until an error or EOF and returns the data it read
18 func readAll(r io.Reader, capacity int64) (b []byte, err error) {
37 // ReadAll reads from r until an error or EOF and returns the data it read.
38 // A successful call returns err == nil, not err == EOF. Because ReadAll is
41 func ReadAll(r io.Reader) ([]byte, error) {
42 return readAll(r, bytes.MinRead)
65 // As initial capacity for readAll, use n + a little extra in case Size is zero,
66 // and to avoid another allocation after Read has filled the buffer. The readAll
70 return readAll(f, n+bytes.MinRead)
  /development/tools/axl/
axl.py 183 class ReadAll(BaseProtocol):
243 Redirect, DataDrop, DropOnce, NoCR, PipeDrop, RedirectLoop, ReadAll, \
  /external/boringssl/src/ssl/test/
packeted_bio.cc 56 // ReadAll reads |len| bytes from |bio| into |out|. It returns 1 on success and
58 static int ReadAll(BIO *bio, uint8_t *out, size_t len) {
114 int ret = ReadAll(bio->next_bio, &opcode, sizeof(opcode));
129 ret = ReadAll(bio->next_bio, buf, sizeof(buf));
166 ret = ReadAll(bio->next_bio, len_bytes, sizeof(len_bytes));
178 ret = ReadAll(bio->next_bio, buf, len);
  /external/bsdiff/
bspatch.cc 121 bool ReadAll(const std::unique_ptr<FileInterface>& file,
197 if (!ReadAll(patch_file, patch.data(), patch_size)) {
  /frameworks/native/libs/vr/libpdx/private/pdx/
service.h 121 inline Status<void> ReadAll(void* buffer, size_t length) {
  /system/core/adb/
shell_service.cpp 110 std::string ReadAll(int fd) {
344 std::string error_message = ReadAll(parent_error_sfd);
  /external/webrtc/webrtc/base/
stream.cc 60 StreamResult StreamInterface::ReadAll(void* buffer, size_t buffer_len,
  /system/update_engine/common/
utils.cc 198 bool ReadAll(
    [all...]

Completed in 365 milliseconds