Home
last modified time | relevance | path

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

/base/telephony/sms_mms/test/gtest/
Dzero_branch_cdma_sms_test.cpp57 string pduHex = ""; variable
79 EXPECT_FALSE(cdmaSmsMessage->PduAnalysis(pduHex));
96 EXPECT_FALSE(cdmaSmsMessage->PduAnalysis(pduHex));
97 pduHex = "12";
98 EXPECT_FALSE(cdmaSmsMessage->PduAnalysis(pduHex));
184 std::string pduHex = "0000021002"; variable
185 std::string pdu = StringUtils::HexToString(pduHex);
228 std::string pduHex = "00000210020000021002"; variable
229 std::string pdu = StringUtils::HexToString(pduHex);
262 std::string pduHex = "00000210020000021002"; variable
[all …]
Dcdma_sms_gtest.cpp161 std::string pduHex = "00000210020000021002"; variable
162 std::string pdu = StringUtils::HexToString(pduHex);
219 …std::string pduHex = "0000021002040702C48D159E268406010408260003200640011910D61C58F265CD9F469D5AF6… variable
221 std::string pdu = StringUtils::HexToString(pduHex);
278 std::string pduHex = "0101020004081300031008d00106102c2870e1420801c00c01c0"; variable
279 std::string pdu = StringUtils::HexToString(pduHex);
/base/telephony/sms_mms/services/sms/include/cdma/
Dcdma_sms_message.h64 bool PduAnalysis(const std::string &pduHex);
/base/telephony/sms_mms/services/sms/cdma/
Dcdma_sms_message.cpp170 bool CdmaSmsMessage::PduAnalysis(const std::string &pduHex) in PduAnalysis() argument
172 if (transMsg_ == nullptr || pduHex.empty()) { in PduAnalysis()
177 std::string pdu = StringUtils::HexToString(pduHex); in PduAnalysis()