Home
last modified time | relevance | path

Searched refs:ReadFully (Results 1 – 12 of 12) sorted by relevance

/art/compiler/linker/
Doutput_stream_test.cc75 bool readSuccess = in->ReadFully(&actual[0], actual.size()); in TEST_F()
90 bool readSuccess = in->ReadFully(&actual[0], actual.size()); in TEST_F()
/art/dt_fd_forward/
Ddt_fd_forward.cc199 IOResult FdForwardTransport::ReadFully(void* data, size_t ndata) { in ReadFully() function in dt_fd_forward::FdForwardTransport
470 bool ReadFully() { in ReadFully() function in dt_fd_forward::PacketReader
549 IOResult res = transport_->ReadFully(out, rem); in ReadRemaining()
563 IOResult res = transport_->ReadFully(&out, sizeof(out)); in ReadByte()
572 IOResult res = transport_->ReadFully(&out, sizeof(out)); in ReadInt16()
581 IOResult res = transport_->ReadFully(&out, sizeof(out)); in ReadInt32()
596 if (reader.ReadFully()) { in ReadPacket()
Ddt_fd_forward.h114 IOResult ReadFully(void* data, size_t ndata); // REQUIRES(!state_mutex_);
/art/libartbase/base/unix_file/
Dfd_file.h108 bool ReadFully(void* buffer, size_t byte_count) WARN_UNUSED;
Dfd_file.cc437 bool FdFile::ReadFully(void* buffer, size_t byte_count) { in ReadFully() function in unix_file::FdFile
510 if (!input_file->ReadFully(buffer.get(), chunk_size) || in Copy()
Dfd_file_test.cc96 EXPECT_FALSE(file.ReadFully(&buffer, 4)); in TEST_F()
/art/dex2oat/linker/
Dimage_write_read_test.cc36 ASSERT_EQ(file->ReadFully(&image_header, sizeof(image_header)), true); in TestWriteRead()
Dimage_test.h145 CHECK_EQ(file->ReadFully(&image_header, sizeof(image_header)), true); in GetImageObjectSectionSizes()
/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc153 CHECK(input_file->ReadFully(elf.data(), elf.size())) << "Failed to read input file"; in Main()
/art/runtime/
Ddex2oat_environment_test.h246 ASSERT_TRUE(vdex_file->ReadFully(data.data(), data.size())); in CreateDexMetadata()
/art/compiler/utils/
Dassembler_test_base.h194 bool success = file->ReadFully(&data[0], data.size()); in ReadFile()
/art/dex2oat/
Ddex2oat_test.cc682 const bool success = file->ReadFully(&image_header, sizeof(image_header)); in GetImageObjectSectionSize()
822 bool success = file->ReadFully(&image_header, sizeof(image_header)); in CheckResult()
1807 ASSERT_TRUE(file->ReadFully(&bytes[0], file->GetLength())); in TEST_F()