Lines Matching refs:reportInfo
239 …OnReport(std::vector<std::unique_ptr<T>> &subModules, int32_t slotId, const ReportInfo *reportInfo, in OnReport() argument
242 if (reportInfo == nullptr) { in OnReport()
250 switch (reportInfo->type) { in OnReport()
252 ReqDataInfo *reqInfo = (ReqDataInfo *)reportInfo->requestInfo; in OnReport()
260 responseInfo.error = (HRilErrType)reportInfo->error; in OnReport()
262 if (HRIL_NEED_ACK == reportInfo->ack) { in OnReport()
273 auto iter = notificationMap_.find(reportInfo->notifyId); in OnReport()
275 …TELEPHONY_LOGI("OnReport notifyId:%{public}d, value:%{public}d", reportInfo->notifyId, iter->secon… in OnReport()
281 … subModules[slotId]->template ProcessNotify<T>(notifyType, reportInfo, response, responseLen); in OnReport()
290 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnCallReport() argument
292 OnReport(hrilCall_, slotId, reportInfo, response, responseLen); in OnCallReport()
296 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnDataReport() argument
298 OnReport(hrilData_, slotId, reportInfo, response, responseLen); in OnDataReport()
302 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnModemReport() argument
304 OnReport(hrilModem_, slotId, reportInfo, response, responseLen); in OnModemReport()
308 int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen) in OnNetworkReport() argument
310 OnReport(hrilNetwork_, slotId, reportInfo, response, responseLen); in OnNetworkReport()
313 void HRilManager::OnSimReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response… in OnSimReport() argument
315 OnReport(hrilSim_, slotId, reportInfo, response, responseLen); in OnSimReport()
318 void HRilManager::OnSmsReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response… in OnSmsReport() argument
320 OnReport(hrilSms_, slotId, reportInfo, response, responseLen); in OnSmsReport()
1048 void OnCallReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t res… in OnCallReport() argument
1054 g_manager->OnCallReport(slotId, &reportInfo, response, responseLen); in OnCallReport()
1057 void OnDataReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t res… in OnDataReport() argument
1063 g_manager->OnDataReport(slotId, &reportInfo, response, responseLen); in OnDataReport()
1066 void OnModemReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t re… in OnModemReport() argument
1072 g_manager->OnModemReport(slotId, &reportInfo, response, responseLen); in OnModemReport()
1075 void OnNetworkReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t … in OnNetworkReport() argument
1081 g_manager->OnNetworkReport(slotId, &reportInfo, response, responseLen); in OnNetworkReport()
1084 void OnSimReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t resp… in OnSimReport() argument
1090 g_manager->OnSimReport(slotId, &reportInfo, response, responseLen); in OnSimReport()
1093 void OnSmsReport(int32_t slotId, struct ReportInfo reportInfo, const uint8_t *response, size_t resp… in OnSmsReport() argument
1099 g_manager->OnSmsReport(slotId, &reportInfo, response, responseLen); in OnSmsReport()