Home
last modified time | relevance | path

Searched refs:bytes_ (Results 1 – 2 of 2) sorted by relevance

/system/update_engine/
Dfake_file_writer.h48 bytes_.insert(bytes_.end(), char_bytes, char_bytes + count); in Write()
59 const brillo::Blob& bytes() { return bytes_; } in bytes()
63 brillo::Blob bytes_;
/system/core/fastboot/
Dudp.cpp70 uint8_t id() const { return bytes_[kIndexId]; } in id()
71 const uint8_t* bytes() const { return bytes_; } in bytes()
79 uint8_t bytes_[kHeaderSize]; member in udp::Header
87 bytes_[kIndexId] = id; in Set()
88 bytes_[kIndexFlags] = flag; in Set()
89 bytes_[kIndexSeqH] = sequence >> 8; in Set()
90 bytes_[kIndexSeqL] = sequence; in Set()
96 return bytes_[kIndexSeqH] == response[kIndexSeqH] && in Matches()
97 bytes_[kIndexSeqL] == response[kIndexSeqL] && in Matches()
98 (bytes_[kIndexId] == response[kIndexId] || response[kIndexId] == kIdError); in Matches()