Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/sms_mms/services/sms/cdma/
H A Dcdma_sms_sub_parameter.cpp694 uint8_t udBytes = data_.userData.length * BIT7 / BIT8; in DecodeGsm7Bit() local
696 udBytes++; in DecodeGsm7Bit()
698 if (udBytes > MAX_USER_DATA_LEN + 1) { in DecodeGsm7Bit()
702 std::unique_ptr<uint8_t[]> dest = std::make_unique<uint8_t[]>(udBytes); in DecodeGsm7Bit()
707 for (uint8_t i = 0; i < udBytes; i++) { in DecodeGsm7Bit()
714 …dest.get(), udBytes, 0x00, reinterpret_cast<uint8_t *>(data_.userData.data), MAX_USER_DATA_LEN + 1… in DecodeGsm7Bit()