• Home
  • Raw
  • Download

Lines Matching refs:reportInfo

220 …OnReport(std::vector<std::unique_ptr<T>> &subModules, int32_t slotId, const ReportInfo *reportInfo,  in OnReport()  argument
223 if (reportInfo == nullptr) { in OnReport()
231 TELEPHONY_LOGI("OnReport notifyId:%{public}d", reportInfo->notifyId); in OnReport()
232 switch (reportInfo->type) { in OnReport()
234 ReqDataInfo *reqInfo = (ReqDataInfo *)reportInfo->requestInfo; in OnReport()
242 responseInfo.error = (HRilErrType)reportInfo->error; in OnReport()
244 if (HRIL_NEED_ACK == reportInfo->ack) { in OnReport()
255 auto iter = notificationMap_.find(reportInfo->notifyId); in OnReport()
257 …TELEPHONY_LOGI("OnReport notifyId:%{public}d, value:%{public}d", reportInfo->notifyId, iter->secon… in OnReport()
263 … subModules[slotId]->template ProcessNotify<T>(notifyType, reportInfo, response, responseLen); in OnReport()
272 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnCallReport() argument
274 OnReport(hrilCall_, slotId, reportInfo, response, responseLen); in OnCallReport()
278 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnDataReport() argument
280 OnReport(hrilData_, slotId, reportInfo, response, responseLen); in OnDataReport()
284 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnModemReport() argument
286 OnReport(hrilModem_, slotId, reportInfo, response, responseLen); in OnModemReport()
290 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnNetworkReport() argument
292 OnReport(hrilNetwork_, slotId, reportInfo, response, responseLen); in OnNetworkReport()
295 void HRilManager::OnSimReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response… in OnSimReport() argument
297 OnReport(hrilSim_, slotId, reportInfo, response, responseLen); in OnSimReport()
300 void HRilManager::OnSmsReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response… in OnSmsReport() argument
302 OnReport(hrilSms_, slotId, reportInfo, response, responseLen); in OnSmsReport()
999 void OnCallReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t res… in OnCallReport() argument
1005 g_manager->OnCallReport(slotId, &reportInfo, response, responseLen); in OnCallReport()
1008 void OnDataReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t res… in OnDataReport() argument
1014 g_manager->OnDataReport(slotId, &reportInfo, response, responseLen); in OnDataReport()
1017 void OnModemReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t re… in OnModemReport() argument
1023 g_manager->OnModemReport(slotId, &reportInfo, response, responseLen); in OnModemReport()
1026 void OnNetworkReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t … in OnNetworkReport() argument
1032 g_manager->OnNetworkReport(slotId, &reportInfo, response, responseLen); in OnNetworkReport()
1035 void OnSimReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t resp… in OnSimReport() argument
1041 g_manager->OnSimReport(slotId, &reportInfo, response, responseLen); in OnSimReport()
1044 void OnSmsReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t resp… in OnSmsReport() argument
1050 g_manager->OnSmsReport(slotId, &reportInfo, response, responseLen); in OnSmsReport()