Searched defs:Read (Results 26 - 39 of 39) sorted by relevance

12

/system/update_engine/scripts/update_payload/
H A Dcommon.py107 def Read(file_obj, length, offset=None, hasher=None): function
/system/core/fastboot/
H A Dudp.cpp109 ssize_t Read(void* data, size_t length) override;
327 ssize_t UdpTransport::Read(void* data, size_t length) { function in class:udp::UdpTransport
328 // Read from the target by sending an empty packet.
H A Dusb_osx.cpp73 ssize_t Read(void* data, size_t len) override;
475 ssize_t OsxUsbTransport::Read(void* data, size_t len) { function in class:OsxUsbTransport
H A Dusb_windows.cpp74 ssize_t Read(void* data, size_t len) override;
193 ssize_t WindowsUsbTransport::Read(void* data, size_t len) { function in class:WindowsUsbTransport
H A Dusb_linux.cpp99 ssize_t Read(void* data, size_t len) override;
174 /* Read device serial number (if there is one).
422 ssize_t LinuxUsbTransport::Read(void* _data, size_t len) function in class:LinuxUsbTransport
/system/core/libunwindstack/
H A DMemory.cpp148 size_t rc = Read(addr, dst, size);
177 size_t MemoryBuffer::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryBuffer
248 size_t MemoryFileAtOffset::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryFileAtOffset
261 size_t MemoryRemote::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryRemote
292 size_t MemoryLocal::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryLocal
300 size_t MemoryRange::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryRange
316 return memory_->Read(read_addr, dst, read_length);
340 size_t MemoryOffline::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryOffline
345 return memory_->Read(addr, dst, size);
357 size_t MemoryOfflineBuffer::Read(uint64_ function in class:unwindstack::MemoryOfflineBuffer
373 size_t MemoryOfflineParts::Read(uint64_t addr, void* dst, size_t size) { function in class:unwindstack::MemoryOfflineParts
[all...]
/system/extras/perfprofd/
H A Dconfigreader.cc283 return Read(contents, /* fail_on_error */ false);
286 bool ConfigReader::Read(const std::string& content, bool fail_on_error) { function in class:ConfigReader
/system/extras/simpleperf/
H A Drecord_file_reader.cpp109 if (!Read(&header_, sizeof(header_))) {
135 if (!Read(buf.data(), buf.size())) {
187 if (!Read(&desc, sizeof(desc))) {
202 if (!Read(ids->data(), attr.ids.size)) {
274 if (!Read(header_buf, Record::header_size())) {
280 // Read until meeting a RECORD_SPLIT_END record.
287 if (!Read(&buf[cur_size], bytes_to_read)) {
292 if (!Read(header_buf, Record::header_size())) {
309 if (!Read(p.get() + Record::header_size(), header.size - Record::header_size())) {
341 bool RecordFileReader::Read(voi function in class:RecordFileReader
[all...]
H A Drecord_file_writer.cpp179 bool RecordFileWriter::Read(void* buf, size_t len) { function in class:RecordFileWriter
195 if (!Read(record_buf.data(), Record::header_size())) {
202 if (!Read(record_buf.data() + Record::header_size(), header.size - Record::header_size())) {
/system/tpm/attestation/server/
H A Dpkcs11_key_store.cc94 bool Pkcs11KeyStore::Read(const std::string& username, function in class:attestation::Pkcs11KeyStore
/system/tpm/trunks/ftdi/
H A Dmpsse.c266 /* Read and write commands need to include endianess */
722 /* Read in the ACK bit and store it in mpsse->rack */
740 /* Performs a read. For internal use only; see Read() and ReadBits(). */
789 swig_string_data Read(struct mpsse_context* mpsse, int size) function
791 uint8_t* Read(struct mpsse_context* mpsse, int size)
/system/core/adb/
H A Dtransport.cpp68 bool FdConnection::Read(apacket* packet) { function in class:FdConnection
267 if (!t->connection->Read(p)) {
/system/chre/external/flatbuffers/include/flatbuffers/
H A Dflatbuffers.h259 static return_type Read(const uint8_t *p, uoffset_t i) { function in struct:flatbuffers::IndirectHelper
267 static return_type Read(const uint8_t *p, uoffset_t i) { function in struct:flatbuffers::IndirectHelper
276 static return_type Read(const uint8_t *p, uoffset_t i) { function in struct:flatbuffers::IndirectHelper
320 return IndirectHelper<T>::Read(data_, 0);
324 return IndirectHelper<T>::Read(data_, 0);
390 return IndirectHelper<T>::Read(Data(), i);
432 return const_cast<mutable_return_type>(IndirectHelper<T>::Read(Data(), i));
458 return IndirectHelper<T>::Read(element, 0);
472 auto table = IndirectHelper<T>::Read(data, 0);
/system/update_engine/common/
H A Dutils.cc301 ssize_t rc = fd->Read(c_buf + bytes_read, count - bytes_read);
332 static bool Read(FILE* fp, off_t size, T* out_p) { function in namespace:chromeos_update_engine::utils
378 return Read(fp.get(), size, out_p);
382 // Read<string>() defined here. Expose Read<string>() or move to base/ version.
387 bool success = Read(fp, -1, out_p);

Completed in 307 milliseconds

12