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.cpp49 auto pdu_total_length = pdu.size(); in DecodePDU() local
50 if (pdu_total_length < 8) { in DecodePDU()
66 pdu_type_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
70 message_reference_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
74 temp = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
81 originator_address_ = pdu_view.substr(std::min(pos, pdu_total_length), (oa_length + 4)); in DecodePDU()
85 protocol_id_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
89 data_code_scheme_ = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
93 temp = pdu_view.substr(std::min(pos, pdu_total_length), 2); in DecodePDU()
97 user_data_ = pdu_view.substr(std::min(pos, pdu_total_length)); in DecodePDU()
[all …]