Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/commands/modem_simulator/
Dpdu_parser.cpp50 auto pdu_total_length = pdu.size(); in DecodePDU() local
51 if (pdu_total_length < 8) { in DecodePDU()
67 pdu_type_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
71 message_reference_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
75 temp = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
80 originator_address_ = pdu_view.substr(std::min(pos, pdu_total_length), (oa_length + 4)); in DecodePDU()
84 protocol_id_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
88 data_code_scheme_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
92 temp = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
96 user_data_ = pdu_view.substr(std::min(pos, pdu_total_length)); in DecodePDU()
[all …]