Lines Matching refs:pdus
270 std::shared_ptr<vector<string>> pdus = make_shared<vector<string>>();
271 if ((indexer == nullptr) || (pdus == nullptr)) {
272 TELEPHONY_LOGE("indexer or pdus is nullptr");
282 pdus->push_back(pdu);
284 if (!CombineMultiPageMessage(indexer, pdus, reliabilityHandler)) {
300 reliabilityHandler->SendBroadcast(indexer, pdus);
304 std::shared_ptr<std::vector<std::string>> pdus, std::shared_ptr<SmsReceiveReliabilityHandler> reliabilityHandler)
306 pdus->assign(MAX_SEGMENT_NUM, "");
325 pdus->at(v.GetMsgSeqId() - PDU_POS_OFFSET) = pdu;
330 if ((count != msgSeg) || (pdus->empty()) || (notNullPart != msgSeg)) {
333 UpdateMultiPageMessage(indexer, pdus);
338 const std::shared_ptr<SmsReceiveIndexer> &indexer, std::shared_ptr<std::vector<std::string>> pdus)
340 if ((indexer == nullptr) || (pdus == nullptr) || (pdus->empty())) {
341 TELEPHONY_LOGE("indexer or pdus is null");
347 for (const auto &pdu : *pdus) {