Home
last modified time | relevance | path

Searched refs:raw_bytes (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/bt/gd/packet/
H A Dendian_inserter.h44 uint8_t* raw_bytes = (uint8_t*)&value; in insert() local
47 it.insert_byte(raw_bytes[i]); in insert()
49 it.insert_byte(raw_bytes[sizeof(FixedWidthPODType) - i - 1]); in insert()
59 auto* raw_bytes = value.data(); in insert() local
62 it.insert_byte(raw_bytes[i]); in insert()
64 it.insert_byte(raw_bytes[CustomFieldFixedSizeInterface<T>::length() - i - 1]); in insert()
/aosp12/system/bt/vendor_libs/test_vendor_lib/scripts/
H A Dlink_layer_socket.py93 raw_bytes = b''
94 while len(raw_bytes) < size and not self.done_:
95 more_raw_bytes = self._socket.recv(min(size - len(raw_bytes), 2048))
97 raw_bytes += more_raw_bytes
98 return raw_bytes
H A Dhci_socket.py230 raw_bytes = b''
231 while len(raw_bytes) < size and not self.done_:
232 more_raw_bytes = self.ins.recv(min(size - len(raw_bytes), 2048))
234 raw_bytes += more_raw_bytes
235 return raw_bytes
/aosp12/system/vold/
H A Dvdc.cpp70 std::string raw_bytes; in bindkeys() local
79 android::status_t status = android::vold::HexToStr(seed_value, raw_bytes); in bindkeys()
85 std::vector<uint8_t> seed{raw_bytes.begin(), raw_bytes.end()}; in bindkeys()