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

  /external/boringssl/src/tool/
file.cc 23 bool ReadAll(std::vector<uint8_t> *out, FILE *file) {
  /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) {
40 // ReadAll reads from r until an error or EOF and returns the data it read.
41 // A successful call returns err == nil, not err == EOF. Because ReadAll is
44 func ReadAll(r io.Reader) ([]byte, error) {
45 return readAll(r, bytes.MinRead)
63 // As initial capacity for readAll, use Size + a little extra in case Size
65 // buffer. The readAll call will read into its allocated internal buffer
73 return readAll(f, n)
  /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) {
40 // ReadAll reads from r until an error or EOF and returns the data it read.
41 // A successful call returns err == nil, not err == EOF. Because ReadAll is
44 func ReadAll(r io.Reader) ([]byte, error) {
45 return readAll(r, bytes.MinRead)
63 // As initial capacity for readAll, use Size + a little extra in case Size
65 // buffer. The readAll call will read into its allocated internal buffer
73 return readAll(f, n)
  /prebuilts/go/darwin-x86/src/encoding/csv/
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/encoding/csv/
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) {
  /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/tensorflow/tensorflow/core/lib/io/
buffered_inputstream.cc 170 Status BufferedInputStream::ReadAll(string* result) {
  /external/tensorflow/tensorflow/core/platform/hadoop/
hadoop_file_system_test.cc 48 Status ReadAll(const string& fname, string* content) {
103 TF_EXPECT_OK(ReadAll(fname, &content));
167 TF_EXPECT_OK(ReadAll(fname2, &content));
181 TF_EXPECT_OK(ReadAll(fname2, &content));
  /external/tensorflow/tensorflow/core/platform/s3/
s3_file_system_test.cc 49 Status ReadAll(const string& fname, string* content) {
105 TF_EXPECT_OK(ReadAll(fname, &content));
207 TF_EXPECT_OK(ReadAll(fname2, &content));
221 TF_EXPECT_OK(ReadAll(fname2, &content));
  /external/bsdiff/
bspatch.cc 89 bool ReadAll(const std::unique_ptr<FileInterface>& file,
162 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 112 std::string ReadAll(int fd) {
363 std::string error_message = ReadAll(parent_error_sfd);
  /external/webrtc/webrtc/base/
stream.cc 60 StreamResult StreamInterface::ReadAll(void* buffer, size_t buffer_len,
  /frameworks/native/cmds/installd/tests/
installd_dexopt_test.cpp     [all...]
  /system/update_engine/common/
utils.cc 197 bool ReadAll(
    [all...]

Completed in 378 milliseconds