Home
last modified time | relevance | path

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

/base/telephony/sms_mms/test/gtest/
Dzero_branch_cdma_sms_test.cpp29 const uint16_t PDU_BUFFER_MAX_SIZE = 0xFF; variable
323 std::string s1(PDU_BUFFER_MAX_SIZE * 2, '0');
326 std::string s2((PDU_BUFFER_MAX_SIZE + 1) * 2, '0');
329 std::string s3((PDU_BUFFER_MAX_SIZE + 2) * 2, '0');
341 uint16_t pduLen = PDU_BUFFER_MAX_SIZE + 1;
382 uint16_t pduLen = PDU_BUFFER_MAX_SIZE + 1;
441 uint16_t pduLen = PDU_BUFFER_MAX_SIZE + 1;
635 wBuffer.SetIndex(PDU_BUFFER_MAX_SIZE);
640 wBuffer.SetIndex(PDU_BUFFER_MAX_SIZE);
703 wBuffer.SetIndex(PDU_BUFFER_MAX_SIZE);
[all …]
/base/telephony/sms_mms/services/sms/
Dsms_pdu_buffer.cpp23 static constexpr uint16_t PDU_BUFFER_MAX_SIZE = 0xFF; variable
132 if (len < PDU_BUFFER_MIN_SIZE || len > PDU_BUFFER_MAX_SIZE + 1) { in SmsReadBuffer()
244 length_ = PDU_BUFFER_MAX_SIZE + 1; in SmsWriteBuffer()
/base/telephony/sms_mms/test/fuzztest/cdmasmsdecode_fuzzer/
Dcdmasmsdecode_fuzzer.cpp27 static constexpr uint16_t PDU_BUFFER_MAX_SIZE = 0xFF; variable
674 if (data == nullptr || size == 0 || size > PDU_BUFFER_MAX_SIZE) { in DoSomethingInterestingWithMyAPI()