Lines Matching defs:curStatisticsMsgPtr
85 std::shared_ptr<ComponmentStatisticsMsg> curStatisticsMsgPtr = std::make_shared<ComponmentStatisticsMsg>();
89 DEBUG_LOG_STR("use inited curStatisticsMsgPtr by bundleName{%s}", srcData["bundleName"].c_str());
90 curStatisticsMsgPtr = componmentStatisticsMsg_[srcData["bundleName"]];
95 uint32_t index = curStatisticsMsgPtr->ComponmentTypesIndex(srcData["componment"]);
96 uint32_t curComponmentTypeTotal = curStatisticsMsgPtr->componmentTypeTotal_;
97 if (index != curStatisticsMsgPtr->componmentTypes_.size()) {
98 curComponmentStatisticsRecordPtr = curStatisticsMsgPtr->componmentTypeRecord_[index];
108 if (curStatisticsMsgPtr->componmentTypeRecord_.size() > index) {
109 curStatisticsMsgPtr->componmentTypeRecord_[index] = curComponmentStatisticsRecordPtr;
110 curStatisticsMsgPtr->componmentTypes_[index] = srcData["componment"];
112 curStatisticsMsgPtr->componmentTypeRecord_.push_back(curComponmentStatisticsRecordPtr);
113 curStatisticsMsgPtr->componmentTypes_.push_back(srcData["componment"]);
118 curStatisticsMsgPtr->componmentTypeTotal_ = curComponmentTypeTotal;
119 componmentStatisticsMsg_[srcData["bundleName"]] = curStatisticsMsgPtr;