Lines Matching refs:rxHeader
180 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppDispatchWifiResponse() local
185 if (rxHeader->command > CHPP_WIFI_CLIENT_REQUEST_MAX) { in chppDispatchWifiResponse()
190 &wifiClientContext->rRState[rxHeader->command], rxHeader)) { in chppDispatchWifiResponse()
194 switch (rxHeader->command) { in chppDispatchWifiResponse()
252 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppDispatchWifiNotification() local
257 switch (rxHeader->command) { in chppDispatchWifiNotification()
403 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppWifiGetCapabilitiesResult() local
404 CHPP_LOGE("GetCapabilities resp. too short. err=%" PRIu8, rxHeader->error); in chppWifiGetCapabilitiesResult()
439 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppWifiConfigureScanMonitorResult() local
440 CHPP_LOGE("ScanMonitor resp. too short. err=%" PRIu8, rxHeader->error); in chppWifiConfigureScanMonitorResult()
442 if (rxHeader->error == CHPP_APP_ERROR_NONE) { in chppWifiConfigureScanMonitorResult()
443 rxHeader->error = CHPP_APP_ERROR_INVALID_LENGTH; in chppWifiConfigureScanMonitorResult()
446 false, chppAppErrorToChreError(rxHeader->error)); in chppWifiConfigureScanMonitorResult()
488 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppWifiRequestScanResult() local
489 CHPP_LOGE("ScanRequest resp. too short. err=%" PRIu8, rxHeader->error); in chppWifiRequestScanResult()
491 if (rxHeader->error == CHPP_APP_ERROR_NONE) { in chppWifiRequestScanResult()
492 rxHeader->error = CHPP_APP_ERROR_INVALID_LENGTH; in chppWifiRequestScanResult()
495 chppAppErrorToChreError(rxHeader->error)); in chppWifiRequestScanResult()
533 struct ChppAppHeader *rxHeader = (struct ChppAppHeader *)buf; in chppWifiRequestRangingResult() local
535 if (rxHeader->error != CHPP_APP_ERROR_NONE) { in chppWifiRequestRangingResult()
536 CHPP_LOGE("RangingRequest failed at service err=%" PRIu8, rxHeader->error); in chppWifiRequestRangingResult()
537 gCallbacks->rangingEventCallback(chppAppErrorToChreError(rxHeader->error), in chppWifiRequestRangingResult()