Lines Matching refs:reportInfo

250 void HRilManager::OnReport(std::vector<std::unique_ptr<T>> &subModules, int32_t slotId, const ReportInfo *reportInfo,
253 if (reportInfo == nullptr) {
254 TELEPHONY_LOGE("OnReport reportInfo is null!!!");
261 switch (reportInfo->type) {
263 ReportResponse(subModules, slotId, reportInfo, response, responseLen);
266 ReportNotification(subModules, slotId, reportInfo, response, responseLen);
275 const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
277 ReqDataInfo *reqInfo = (ReqDataInfo *)reportInfo->requestInfo;
290 responseInfo.error = (HDI::Ril::V1_1::RilErrType)reportInfo->error;
292 if (HRIL_NEED_ACK == reportInfo->ack) {
303 const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
306 auto iter = notificationMap_.find(reportInfo->notifyId);
307 auto event = notificationEventMap_.find(reportInfo->notifyId);
309 if (reportInfo->notifyId == HNOTI_NETWORK_CS_REG_STATUS_UPDATED ||
310 reportInfo->notifyId == HNOTI_NETWORK_SIGNAL_STRENGTH_UPDATED ||
311 reportInfo->notifyId == HNOTI_CALL_EMERGENCY_NUMBER_REPORT ||
312 reportInfo->notifyId == HNOTI_MODEM_DSDS_MODE_UPDATED) {
313 TELEPHONY_LOGD("notifyId:%{public}d, event:%{public}s", reportInfo->notifyId, event->second.c_str());
315 TELEPHONY_LOGI("notifyId:%{public}d, event:%{public}s", reportInfo->notifyId, event->second.c_str());
322 subModules[slotId]->template ProcessNotify<T>(notifyType, reportInfo, response, responseLen);
326 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
328 OnReport(hrilCall_, slotId, reportInfo, response, responseLen);
332 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
334 OnReport(hrilData_, slotId, reportInfo, response, responseLen);
338 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
340 OnReport(hrilModem_, slotId, reportInfo, response, responseLen);
344 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
346 OnReport(hrilNetwork_, slotId, reportInfo, response, responseLen);
349 void HRilManager::OnSimReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
351 OnReport(hrilSim_, slotId, reportInfo, response, responseLen);
354 void HRilManager::OnSmsReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
356 OnReport(hrilSms_, slotId, reportInfo, response, responseLen);
1145 void OnCallReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t responseLen)
1151 g_manager->OnCallReport(slotId, &reportInfo, response, responseLen);
1154 void OnDataReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t responseLen)
1160 g_manager->OnDataReport(slotId, &reportInfo, response, responseLen);
1163 void OnModemReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t responseLen)
1169 g_manager->OnModemReport(slotId, &reportInfo, response, responseLen);
1172 void OnNetworkReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t responseLen)
1178 g_manager->OnNetworkReport(slotId, &reportInfo, response, responseLen);
1181 void OnSimReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t responseLen)
1187 g_manager->OnSimReport(slotId, &reportInfo, response, responseLen);
1190 void OnSmsReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t responseLen)
1196 g_manager->OnSmsReport(slotId, &reportInfo, response, responseLen);