Lines Matching defs:responseLen

251     const uint8_t *response, size_t responseLen)
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)
298 subModules[slotId]->template ProcessResponse<T>(requestId, responseInfo, response, responseLen);
303 const ReportInfo *reportInfo, const uint8_t *response, size_t responseLen)
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);