Searched refs:Read (Results 51 - 75 of 130) sorted by relevance

123456

/system/core/adb/
H A Dshell_service.h84 // If a packet is too big to fit in the buffer then Read() will split the
89 bool Read();
/system/core/libziparchive/
H A Dzip_archive_stream_entry.cc19 // Read-only stream access to Zip Archive entries.
52 const std::vector<uint8_t>* Read() override;
79 const std::vector<uint8_t>* ZipArchiveStreamEntryUncompressed::Read() { function in class:ZipArchiveStreamEntryUncompressed
116 const std::vector<uint8_t>* Read() override;
194 const std::vector<uint8_t>* ZipArchiveStreamEntryCompressed::Read() { function in class:ZipArchiveStreamEntryCompressed
/system/tpm/attestation/server/
H A Dkey_store.h36 virtual bool Read(const std::string& username,
H A Dmock_key_store.h34 MOCK_METHOD3(Read,
H A Ddatabase_impl.cc92 if (!io_->Read(&buffer)) {
98 bool DatabaseImpl::Read(std::string* data) { function in class:attestation::DatabaseImpl
H A Dpkcs11_key_store.h51 bool Read(const std::string& username,
/system/update_engine/payload_consumer/
H A Dfake_file_descriptor.cc21 ssize_t FakeFileDescriptor::Read(void* buf, size_t count) { function in class:chromeos_update_engine::FakeFileDescriptor
H A Dfake_file_descriptor.h51 ssize_t Read(void* buf, size_t count) override;
54 // Read-only block device.
98 // Return the list of ranges of bytes requested with a Read() as (offset,
99 // length), regardless of the Read() return value.
H A Dextent_reader.cc64 bool DirectExtentReader::Read(void* buffer, size_t count) { function in class:chromeos_update_engine::DirectExtentReader
H A Dfile_descriptor_utils.cc56 TEST_AND_RETURN_FALSE(reader.Read(buf.data(), read_blocks * block_size));
H A Dmtd_file_descriptor.cc138 ssize_t MtdFileDescriptor::Read(void* buf, size_t count) { function in class:chromeos_update_engine::MtdFileDescriptor
217 ssize_t UbiFileDescriptor::Read(void* buf, size_t count) { function in class:chromeos_update_engine::UbiFileDescriptor
219 return EintrSafeFileDescriptor::Read(buf, count);
H A Dfile_descriptor.cc41 ssize_t EintrSafeFileDescriptor::Read(void* buf, size_t count) { function in class:chromeos_update_engine::EintrSafeFileDescriptor
/system/core/fastboot/
H A Dtcp.cpp64 ssize_t Read(void* data, size_t length) override;
127 ssize_t TcpTransport::Read(void* data, size_t length) { function in class:tcp::TcpTransport
/system/tpm/tpm_manager/server/
H A Dtpm2_initializer_impl.cc69 if (!local_data_store_->Read(&local_data)) {
145 if (!local_data_store_->Read(&local_data)) {
H A Dlocal_data_store_impl.cc38 bool LocalDataStoreImpl::Read(LocalData* data) { function in class:tpm_manager::LocalDataStoreImpl
H A Dtpm_manager_service_test.cc152 EXPECT_CALL(mock_local_data_store_, Read(_))
172 EXPECT_CALL(mock_local_data_store_, Read(_)).WillRepeatedly(Return(false));
245 EXPECT_CALL(mock_local_data_store_, Read(_)).WillRepeatedly(Return(false));
273 EXPECT_CALL(mock_local_data_store_, Read(_))
298 EXPECT_CALL(mock_local_data_store_, Read(_))
321 EXPECT_CALL(mock_local_data_store_, Read(_))
H A Dtpm_manager_service.cc77 if (local_data_store_ && local_data_store_->Read(&local_data)) {
128 if (!local_data_store_->Read(&local_data)) {
308 if (local_data_store_ && local_data_store_->Read(&local_data)) {
/system/bt/vendor_libs/test_vendor_lib/src/
H A Ddevice_properties.cc87 base::JSONReader::Read(properties_raw);
/system/core/libappfuse/include/libappfuse/
H A DFuseBuffer.h44 bool Read(int fd);
/system/extras/simpleperf/
H A DOfflineUnwinder.cpp55 return unwindstack::RegsArm::Read(&arm_user_regs);
68 return unwindstack::RegsArm64::Read(&arm64_user_regs);
82 return unwindstack::RegsX86::Read(&x86_user_regs);
104 return unwindstack::RegsX86_64::Read(&x86_64_user_regs);
/system/update_engine/payload_generator/
H A Dxz_android.cc34 Read = &BlobReaderStream::ReadStatic;
/system/core/libappfuse/tests/
H A DFuseBufferTest.cc50 EXPECT_FALSE(packet->Read(fd));
84 ASSERT_TRUE(request.Read(fd));
202 ASSERT_TRUE(request.Read(fds[1]));
/system/core/libbacktrace/
H A DUnwindStack.cpp190 size_t UnwindStackPtrace::Read(uint64_t addr, uint8_t* buffer, size_t bytes) { function in class:UnwindStackPtrace
191 return memory_.Read(addr, buffer, bytes);
232 size_t UnwindStackOffline::Read(uint64_t, uint8_t*, size_t) { function in class:UnwindStackOffline
H A DBacktracePtrace.cpp65 size_t BacktracePtrace::Read(uint64_t addr, uint8_t* buffer, size_t bytes) { function in class:BacktracePtrace
/system/update_engine/scripts/update_payload/
H A Dcommon.py107 def Read(file_obj, length, offset=None, hasher=None): function

Completed in 317 milliseconds

123456