• Home
  • Raw
  • Download

Lines Matching refs:response

92 void convertRilHardwareConfigListToHal(void *response, size_t responseLen,
95 void convertRilRadioCapabilityToHal(void *response, size_t responseLen, RadioCapability& rc);
97 void convertRilLceDataInfoToHal(void *response, size_t responseLen, LceDataInfo& lce);
99 void convertRilSignalStrengthToHal(void *response, size_t responseLen,
105 void convertRilDataCallListToHal(void *response, size_t responseLen,
108 void convertRilCellInfoListToHal(void *response, size_t responseLen, hidl_vec<CellInfo>& records);
2925 void *response, size_t responseLen) { in responseIntOrEmpty() argument
2929 if (response == NULL && responseLen == 0) { in responseIntOrEmpty()
2933 } else if (response == NULL || responseLen != sizeof(int)) { in responseIntOrEmpty()
2937 int *p_int = (int *) response; in responseIntOrEmpty()
2944 void *response, size_t responseLen) { in responseInt() argument
2948 if (response == NULL || responseLen != sizeof(int)) { in responseInt()
2952 int *p_int = (int *) response; in responseInt()
2960 void *response, size_t responseLen) { in getIccCardStatusResponse() argument
2965 RIL_CardStatus_v6 *p_cur = ((RIL_CardStatus_v6 *) response); in getIccCardStatusResponse()
2966 if (response == NULL || responseLen != sizeof(RIL_CardStatus_v6) in getIccCardStatusResponse()
3010 void *response, size_t responseLen) { in supplyIccPinForAppResponse() argument
3017 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in supplyIccPinForAppResponse()
3032 void *response, size_t responseLen) { in supplyIccPukForAppResponse() argument
3039 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in supplyIccPukForAppResponse()
3053 void *response, size_t responseLen) { in supplyIccPin2ForAppResponse() argument
3060 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in supplyIccPin2ForAppResponse()
3074 void *response, size_t responseLen) { in supplyIccPuk2ForAppResponse() argument
3081 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in supplyIccPuk2ForAppResponse()
3095 void *response, size_t responseLen) { in changeIccPinForAppResponse() argument
3102 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in changeIccPinForAppResponse()
3116 void *response, size_t responseLen) { in changeIccPin2ForAppResponse() argument
3123 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in changeIccPin2ForAppResponse()
3137 void *response, size_t responseLen) { in supplyNetworkDepersonalizationResponse() argument
3144 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in supplyNetworkDepersonalizationResponse()
3158 void *response, size_t responseLen) { in getCurrentCallsResponse() argument
3168 if ((response == NULL && responseLen != 0) in getCurrentCallsResponse()
3177 RIL_Call *p_cur = ((RIL_Call **) response)[i]; in getCurrentCallsResponse()
3215 int responseType, int serial, RIL_Errno e, void *response, in dialResponse() argument
3234 int responseType, int serial, RIL_Errno e, void *response, in getIMSIForAppResponse() argument
3244 responseInfo, convertCharPtrToHidlString((char *) response)); in getIMSIForAppResponse()
3256 void *response, size_t responseLen) { in hangupConnectionResponse() argument
3277 void *response, size_t responseLen) { in hangupWaitingOrBackgroundResponse() argument
3298 RIL_Errno e, void *response, in hangupForegroundResumeBackgroundResponse() argument
3320 RIL_Errno e, void *response, in switchWaitingOrHoldingAndActiveResponse() argument
3342 int serial, RIL_Errno e, void *response, size_t responseLen) { in conferenceResponse() argument
3362 int serial, RIL_Errno e, void *response, size_t responseLen) { in rejectCallResponse() argument
3382 int responseType, int serial, RIL_Errno e, void *response, in getLastCallFailCauseResponse() argument
3394 if (response == NULL) { in getLastCallFailCauseResponse()
3398 int *pInt = (int *) response; in getLastCallFailCauseResponse()
3401 RIL_LastCallFailCauseInfo *pFailCauseInfo = (RIL_LastCallFailCauseInfo *) response; in getLastCallFailCauseResponse()
3422 void *response, size_t responseLen) { in getSignalStrengthResponse() argument
3431 if (response == NULL || responseLen != sizeof(RIL_SignalStrength_v10)) { in getSignalStrengthResponse()
3435 convertRilSignalStrengthToHal(response, responseLen, signalStrength); in getSignalStrengthResponse()
3598 int convertResponseStringEntryToInt(char **response, int index, int numStrings) { in convertResponseStringEntryToInt() argument
3599 if ((response != NULL) && (numStrings > index) && (response[index] != NULL)) { in convertResponseStringEntryToInt()
3600 return atoi(response[index]); in convertResponseStringEntryToInt()
3606 int convertResponseHexStringEntryToInt(char **response, int index, int numStrings) { in convertResponseHexStringEntryToInt() argument
3608 if ((response != NULL) && (numStrings > index) && (response[index] != NULL)) { in convertResponseHexStringEntryToInt()
3609 return strtol(response[index], NULL, hexBase); in convertResponseHexStringEntryToInt()
3621 int numStrings, char** response) { in fillCellIdentityFromVoiceRegStateResponseString() argument
3626 rilCellIdentity.cellInfoType = getCellInfoTypeRadioTechnology(response[3]); in fillCellIdentityFromVoiceRegStateResponseString()
3632 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3636 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3643 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3647 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3649 convertResponseStringEntryToInt(response, 14, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3656 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3660 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3666 convertResponseStringEntryToInt(response, 4, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3669 convertResponseStringEntryToInt(response, 5, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3671 convertResponseStringEntryToInt(response, 6, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3673 convertResponseStringEntryToInt(response, 8, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3675 convertResponseStringEntryToInt(response, 9, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3682 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3686 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromVoiceRegStateResponseString()
3704 int numStrings, char** response) { in fillCellIdentityFromDataRegStateResponseString() argument
3709 rilCellIdentity.cellInfoType = getCellInfoTypeRadioTechnology(response[3]); in fillCellIdentityFromDataRegStateResponseString()
3714 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3718 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3722 convertResponseStringEntryToInt(response, 11, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3725 convertResponseStringEntryToInt(response, 12, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3732 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3736 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3740 convertResponseStringEntryToInt(response, 11, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3743 convertResponseStringEntryToInt(response, 12, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3750 convertResponseHexStringEntryToInt(response, 1, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3754 convertResponseHexStringEntryToInt(response, 2, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3758 convertResponseStringEntryToInt(response, 11, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3761 convertResponseStringEntryToInt(response, 12, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3767 convertResponseStringEntryToInt(response, 6, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3769 convertResponseStringEntryToInt(response, 7, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3771 convertResponseStringEntryToInt(response, 8, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3775 convertResponseStringEntryToInt(response, 11, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3778 convertResponseStringEntryToInt(response, 12, numStrings); in fillCellIdentityFromDataRegStateResponseString()
3792 void *response, size_t responseLen) { in getVoiceRegistrationStateResponse() argument
3803 if (response == NULL) { in getVoiceRegistrationStateResponse()
3811 char **resp = (char **) response; in getVoiceRegistrationStateResponse()
3824 (RIL_VoiceRegistrationStateResponse *)response; in getVoiceRegistrationStateResponse()
3856 void *response, size_t responseLen) { in getDataRegistrationStateResponse() argument
3865 if (response == NULL) { in getDataRegistrationStateResponse()
3874 char **resp = (char **) response; in getDataRegistrationStateResponse()
3884 (RIL_DataRegistrationStateResponse *)response; in getDataRegistrationStateResponse()
3911 int responseType, int serial, RIL_Errno e, void *response, in getOperatorResponse() argument
3924 if (response == NULL || numStrings != 3) { in getOperatorResponse()
3929 char **resp = (char **) response; in getOperatorResponse()
3946 int responseType, int serial, RIL_Errno e, void *response, in setRadioPowerResponse() argument
3965 int responseType, int serial, RIL_Errno e, void *response, in sendDtmfResponse() argument
3986 RIL_Errno e, void *response, size_t responseLen) { in makeSendSmsResult() argument
3990 if (response == NULL || responseLen != sizeof(RIL_SMS_Response)) { in makeSendSmsResult()
3995 RIL_SMS_Response *resp = (RIL_SMS_Response *) response; in makeSendSmsResult()
4004 int responseType, int serial, RIL_Errno e, void *response, in sendSmsResponse() argument
4012 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response, in sendSmsResponse()
4026 int responseType, int serial, RIL_Errno e, void *response, in sendSMSExpectMoreResponse() argument
4034 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response, in sendSMSExpectMoreResponse()
4048 int responseType, int serial, RIL_Errno e, void *response, in setupDataCallResponse() argument
4059 if (response == NULL || (responseLen % sizeof(RIL_Data_Call_Response_v11)) != 0) { in setupDataCallResponse()
4060 if (response != NULL) { in setupDataCallResponse()
4072 convertRilDataCallToHal((RIL_Data_Call_Response_v11 *) response, result); in setupDataCallResponse()
4086 RIL_Errno e, void *response, size_t responseLen) { in responseIccIo() argument
4090 if (response == NULL || responseLen != sizeof(RIL_SIM_IO_Response)) { in responseIccIo()
4095 RIL_SIM_IO_Response *resp = (RIL_SIM_IO_Response *) response; in responseIccIo()
4104 int responseType, int serial, RIL_Errno e, void *response, in iccIOForAppResponse() argument
4112 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response, in iccIOForAppResponse()
4126 int responseType, int serial, RIL_Errno e, void *response, in sendUssdResponse() argument
4147 int responseType, int serial, RIL_Errno e, void *response, in cancelPendingUssdResponse() argument
4168 int responseType, int serial, RIL_Errno e, void *response, in getClirResponse() argument
4179 if (response == NULL || numInts != 2) { in getClirResponse()
4183 int *pInt = (int *) response; in getClirResponse()
4198 int responseType, int serial, RIL_Errno e, void *response, in setClirResponse() argument
4219 void *response, size_t responseLen) { in getCallForwardStatusResponse() argument
4229 if ((response == NULL && responseLen != 0) in getCallForwardStatusResponse()
4237 RIL_CallForwardInfo *resp = ((RIL_CallForwardInfo **) response)[i]; in getCallForwardStatusResponse()
4259 int responseType, int serial, RIL_Errno e, void *response, in setCallForwardResponse() argument
4279 int responseType, int serial, RIL_Errno e, void *response, in getCallWaitingResponse() argument
4291 if (response == NULL || numInts != 2) { in getCallWaitingResponse()
4295 int *pInt = (int *) response; in getCallWaitingResponse()
4310 int responseType, int serial, RIL_Errno e, void *response, in setCallWaitingResponse() argument
4331 void *response, size_t responseLen) { in acknowledgeLastIncomingGsmSmsResponse() argument
4353 void *response, size_t responseLen) { in acceptCallResponse() argument
4374 void *response, size_t responseLen) { in deactivateDataCallResponse() argument
4395 void *response, size_t responseLen) { in getFacilityLockForAppResponse() argument
4402 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getFacilityLockForAppResponse()
4416 void *response, size_t responseLen) { in setFacilityLockForAppResponse() argument
4423 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen); in setFacilityLockForAppResponse()
4438 void *response, size_t responseLen) { in setBarringPasswordResponse() argument
4458 int responseType, int serial, RIL_Errno e, void *response, in getNetworkSelectionModeResponse() argument
4468 if (response == NULL || responseLen != sizeof(int)) { in getNetworkSelectionModeResponse()
4472 int *pInt = (int *) response; in getNetworkSelectionModeResponse()
4489 RIL_Errno e, void *response, in setNetworkSelectionModeAutomaticResponse() argument
4512 void *response, size_t responseLen) { in setNetworkSelectionModeManualResponse() argument
4547 int responseType, int serial, RIL_Errno e, void *response, in getAvailableNetworksResponse() argument
4557 if ((response == NULL && responseLen != 0) in getAvailableNetworksResponse()
4562 char **resp = (char **) response; in getAvailableNetworksResponse()
4591 void *response, size_t responseLen) { in startDtmfResponse() argument
4611 void *response, size_t responseLen) { in stopDtmfResponse() argument
4631 void *response, size_t responseLen) { in getBasebandVersionResponse() argument
4641 convertCharPtrToHidlString((char *) response)); in getBasebandVersionResponse()
4652 void *response, size_t responseLen) { in separateConnectionResponse() argument
4673 void *response, size_t responseLen) { in setMuteResponse() argument
4692 int responseType, int serial, RIL_Errno e, void *response, in getMuteResponse() argument
4702 if (response == NULL || responseLen != sizeof(int)) { in getMuteResponse()
4706 int *pInt = (int *) response; in getMuteResponse()
4721 void *response, size_t responseLen) { in getClipResponse() argument
4728 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getClipResponse()
4741 void *response, size_t responseLen) { in getDataCallListResponse() argument
4751 if ((response == NULL && responseLen != 0) in getDataCallListResponse()
4756 convertRilDataCallListToHal(response, responseLen, ret); in getDataCallListResponse()
4771 void *response, size_t responseLen) { in setSuppServiceNotificationsResponse() argument
4793 void *response, size_t responseLen) { in deleteSmsOnSimResponse() argument
4813 void *response, size_t responseLen) { in setBandModeResponse() argument
4833 void *response, size_t responseLen) { in writeSmsToSimResponse() argument
4840 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in writeSmsToSimResponse()
4852 int responseType, int serial, RIL_Errno e, void *response, in getAvailableBandModesResponse() argument
4862 if ((response == NULL && responseLen != 0)|| responseLen % sizeof(int) != 0) { in getAvailableBandModesResponse()
4866 int *pInt = (int *) response; in getAvailableBandModesResponse()
4887 void *response, size_t responseLen) { in sendEnvelopeResponse() argument
4897 convertCharPtrToHidlString((char *) response)); in sendEnvelopeResponse()
4908 void *response, size_t responseLen) { in sendTerminalResponseToSimResponse() argument
4930 RIL_Errno e, void *response, in handleStkCallSetupRequestFromSimResponse() argument
4953 void *response, size_t responseLen) { in explicitCallTransferResponse() argument
4974 void *response, size_t responseLen) { in setPreferredNetworkTypeResponse() argument
4997 void *response, size_t responseLen) { in getPreferredNetworkTypeResponse() argument
5004 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getPreferredNetworkTypeResponse()
5019 void *response, size_t responseLen) { in getNeighboringCidsResponse() argument
5029 if ((response == NULL && responseLen != 0) in getNeighboringCidsResponse()
5037 RIL_NeighboringCell *resp = ((RIL_NeighboringCell **) response)[i]; in getNeighboringCidsResponse()
5057 void *response, size_t responseLen) { in setLocationUpdatesResponse() argument
5078 void *response, size_t responseLen) { in setCdmaSubscriptionSourceResponse() argument
5100 void *response, size_t responseLen) { in setCdmaRoamingPreferenceResponse() argument
5122 void *response, size_t responseLen) { in getCdmaRoamingPreferenceResponse() argument
5129 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getCdmaRoamingPreferenceResponse()
5144 void *response, size_t responseLen) { in setTTYModeResponse() argument
5164 void *response, size_t responseLen) { in getTTYModeResponse() argument
5171 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getTTYModeResponse()
5185 void *response, size_t responseLen) { in setPreferredVoicePrivacyResponse() argument
5207 void *response, size_t responseLen) { in getPreferredVoicePrivacyResponse() argument
5217 if (response == NULL || numInts != 1) { in getPreferredVoicePrivacyResponse()
5221 int *pInt = (int *) response; in getPreferredVoicePrivacyResponse()
5238 void *response, size_t responseLen) { in sendCDMAFeatureCodeResponse() argument
5259 void *response, size_t responseLen) { in sendBurstDtmfResponse() argument
5278 int responseType, int serial, RIL_Errno e, void *response, in sendCdmaSmsResponse() argument
5286 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response, in sendCdmaSmsResponse()
5301 void *response, size_t responseLen) { in acknowledgeLastIncomingCdmaSmsResponse() argument
5323 void *response, size_t responseLen) { in getGsmBroadcastConfigResponse() argument
5333 if ((response == NULL && responseLen != 0) in getGsmBroadcastConfigResponse()
5342 ((RIL_GSM_BroadcastSmsConfigInfo **) response)[i]; in getGsmBroadcastConfigResponse()
5365 void *response, size_t responseLen) { in setGsmBroadcastConfigResponse() argument
5386 void *response, size_t responseLen) { in setGsmBroadcastActivationResponse() argument
5408 void *response, size_t responseLen) { in getCdmaBroadcastConfigResponse() argument
5418 if ((response == NULL && responseLen != 0) in getCdmaBroadcastConfigResponse()
5427 ((RIL_CDMA_BroadcastSmsConfigInfo **) response)[i]; in getCdmaBroadcastConfigResponse()
5448 void *response, size_t responseLen) { in setCdmaBroadcastConfigResponse() argument
5470 void *response, size_t responseLen) { in setCdmaBroadcastActivationResponse() argument
5491 int responseType, int serial, RIL_Errno e, void *response, in getCDMASubscriptionResponse() argument
5503 if (response == NULL || numStrings != 5) { in getCDMASubscriptionResponse()
5511 char **resp = (char **) response; in getCDMASubscriptionResponse()
5532 void *response, size_t responseLen) { in writeSmsToRuimResponse() argument
5539 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in writeSmsToRuimResponse()
5552 void *response, size_t responseLen) { in deleteSmsOnRuimResponse() argument
5571 int responseType, int serial, RIL_Errno e, void *response, in getDeviceIdentityResponse() argument
5583 if (response == NULL || numStrings != 4) { in getDeviceIdentityResponse()
5591 char **resp = (char **) response; in getDeviceIdentityResponse()
5610 void *response, size_t responseLen) { in exitEmergencyCallbackModeResponse() argument
5632 void *response, size_t responseLen) { in getSmscAddressResponse() argument
5642 convertCharPtrToHidlString((char *) response)); in getSmscAddressResponse()
5653 void *response, size_t responseLen) { in setSmscAddressResponse() argument
5673 void *response, size_t responseLen) { in reportSmsMemoryStatusResponse() argument
5694 void *response, size_t responseLen) { in reportStkServiceIsRunningResponse() argument
5715 void *response, size_t responseLen) { in getCdmaSubscriptionSourceResponse() argument
5722 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getCdmaSubscriptionSourceResponse()
5737 void *response, size_t responseLen) { in requestIsimAuthenticationResponse() argument
5748 convertCharPtrToHidlString((char *) response)); in requestIsimAuthenticationResponse()
5760 int serial, RIL_Errno e, void *response, in acknowledgeIncomingGsmSmsWithPduResponse() argument
5782 int responseType, int serial, RIL_Errno e, void *response, in sendEnvelopeWithStatusResponse() argument
5791 response, responseLen); in sendEnvelopeWithStatusResponse()
5807 void *response, size_t responseLen) { in getVoiceRadioTechnologyResponse() argument
5814 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in getVoiceRadioTechnologyResponse()
5829 int serial, RIL_Errno e, void *response, in getCellInfoListResponse() argument
5840 if ((response == NULL && responseLen != 0) in getCellInfoListResponse()
5845 convertRilCellInfoListToHal(response, responseLen, ret); in getCellInfoListResponse()
5860 int serial, RIL_Errno e, void *response, in setCellInfoListRateResponse() argument
5882 void *response, size_t responseLen) { in setInitialAttachApnResponse() argument
5903 void *response, size_t responseLen) { in getImsRegistrationStateResponse() argument
5914 if (response == NULL || numInts != 2) { in getImsRegistrationStateResponse()
5918 int *pInt = (int *) response; in getImsRegistrationStateResponse()
5940 int responseType, int serial, RIL_Errno e, void *response, in sendImsSmsResponse() argument
5948 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response, in sendImsSmsResponse()
5963 void *response, size_t responseLen) { in iccTransmitApduBasicChannelResponse() argument
5970 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response, in iccTransmitApduBasicChannelResponse()
5986 int responseType, int serial, RIL_Errno e, void *response, in iccOpenLogicalChannelResponse() argument
5998 if (response == NULL || responseLen % sizeof(int) != 0) { in iccOpenLogicalChannelResponse()
6000 if (response != NULL) { in iccOpenLogicalChannelResponse()
6004 int *pInt = (int *) response; in iccOpenLogicalChannelResponse()
6025 void *response, size_t responseLen) { in iccCloseLogicalChannelResponse() argument
6047 void *response, size_t responseLen) { in iccTransmitApduLogicalChannelResponse() argument
6054 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response, in iccTransmitApduLogicalChannelResponse()
6071 void *response, size_t responseLen) { in nvReadItemResponse() argument
6081 convertCharPtrToHidlString((char *) response)); in nvReadItemResponse()
6092 void *response, size_t responseLen) { in nvWriteItemResponse() argument
6112 void *response, size_t responseLen) { in nvWriteCdmaPrlResponse() argument
6132 void *response, size_t responseLen) { in nvResetConfigResponse() argument
6152 void *response, size_t responseLen) { in setUiccSubscriptionResponse() argument
6173 void *response, size_t responseLen) { in setDataAllowedResponse() argument
6193 void *response, size_t responseLen) { in getHardwareConfigResponse() argument
6203 if ((response == NULL && responseLen != 0) in getHardwareConfigResponse()
6208 convertRilHardwareConfigListToHal(response, responseLen, result); in getHardwareConfigResponse()
6223 void *response, size_t responseLen) { in requestIccSimAuthenticationResponse() argument
6230 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response, in requestIccSimAuthenticationResponse()
6247 void *response, size_t responseLen) { in setDataProfileResponse() argument
6267 void *response, size_t responseLen) { in requestShutdownResponse() argument
6286 int responseType, RIL_Errno e, void *response, size_t responseLen, RadioCapability& rc) { in responseRadioCapability() argument
6289 if (response == NULL || responseLen != sizeof(RIL_RadioCapability)) { in responseRadioCapability()
6294 convertRilRadioCapabilityToHal(response, responseLen, rc); in responseRadioCapability()
6300 void *response, size_t responseLen) { in getRadioCapabilityResponse() argument
6308 responseRadioCapability(responseInfo, serial, responseType, e, response, responseLen, in getRadioCapabilityResponse()
6322 void *response, size_t responseLen) { in setRadioCapabilityResponse() argument
6330 responseRadioCapability(responseInfo, serial, responseType, e, response, responseLen, in setRadioCapabilityResponse()
6343 RIL_Errno e, void *response, size_t responseLen) { in responseLceStatusInfo() argument
6347 if (response == NULL || responseLen != sizeof(RIL_LceStatusInfo)) { in responseLceStatusInfo()
6351 RIL_LceStatusInfo *resp = (RIL_LceStatusInfo *) response; in responseLceStatusInfo()
6360 void *response, size_t responseLen) { in startLceServiceResponse() argument
6368 response, responseLen); in startLceServiceResponse()
6383 void *response, size_t responseLen) { in stopLceServiceResponse() argument
6391 response, responseLen); in stopLceServiceResponse()
6406 void *response, size_t responseLen) { in pullLceDataResponse() argument
6416 if (response == NULL || responseLen != sizeof(RIL_LceDataInfo)) { in pullLceDataResponse()
6420 convertRilLceDataInfoToHal(response, responseLen, result); in pullLceDataResponse()
6435 void *response, size_t responseLen) { in getModemActivityInfoResponse() argument
6444 if (response == NULL || responseLen != sizeof(RIL_ActivityStatsInfo)) { in getModemActivityInfoResponse()
6448 RIL_ActivityStatsInfo *resp = (RIL_ActivityStatsInfo *)response; in getModemActivityInfoResponse()
6471 void *response, size_t responseLen) { in setAllowedCarriersResponse() argument
6478 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen); in setAllowedCarriersResponse()
6493 void *response, size_t responseLen) { in getAllowedCarriersResponse() argument
6503 if (response == NULL) { in getAllowedCarriersResponse()
6513 RIL_CarrierRestrictions *pCr = (RIL_CarrierRestrictions *)response; in getAllowedCarriersResponse()
6553 void *response, size_t responselen) { in sendDeviceStateResponse() argument
6573 void *response, size_t responseLen) { in setCarrierInfoForImsiEncryptionResponse() argument
6590 void *response, size_t responselen) { in setIndicationFilterResponse() argument
6611 void *response, size_t responseLen) { in setSimCardPowerResponse() argument
6639 void *response, size_t responseLen) { in startNetworkScanResponse() argument
6658 void *response, size_t responseLen) { in stopNetworkScanResponse() argument
6683 void *response, size_t responseLen) { in startKeepaliveResponse() argument
6697 if (response == NULL || responseLen != sizeof(V1_1::KeepaliveStatus)) { in startKeepaliveResponse()
6701 convertRilKeepaliveStatusToHal(static_cast<RIL_KeepaliveStatus*>(response), ks); in startKeepaliveResponse()
6711 void *response, size_t responseLen) { in stopKeepaliveResponse() argument
6742 int indicationType, int token, RIL_Errno e, void *response, in radioStateChangedInd() argument
6759 int indicationType, int token, RIL_Errno e, void *response, in callStateChangedInd() argument
6776 int indicationType, int token, RIL_Errno e, void *response, in networkStateChangedInd() argument
6801 uint8_t * convertHexStringToBytes(void *response, size_t responseLen) { in convertHexStringToBytes() argument
6811 uint8_t *hexString = (uint8_t *)response; in convertHexStringToBytes()
6830 int token, RIL_Errno e, void *response, size_t responseLen) { in newSmsInd() argument
6832 if (response == NULL || responseLen == 0) { in newSmsInd()
6837 uint8_t *bytes = convertHexStringToBytes(response, responseLen); in newSmsInd()
6860 int indicationType, int token, RIL_Errno e, void *response, in newSmsStatusReportInd() argument
6863 if (response == NULL || responseLen == 0) { in newSmsStatusReportInd()
6868 uint8_t *bytes = convertHexStringToBytes(response, responseLen); in newSmsStatusReportInd()
6891 int token, RIL_Errno e, void *response, size_t responseLen) { in newSmsOnSimInd() argument
6893 if (response == NULL || responseLen != sizeof(int)) { in newSmsOnSimInd()
6897 int32_t recordNumber = ((int32_t *) response)[0]; in newSmsOnSimInd()
6912 int token, RIL_Errno e, void *response, size_t responseLen) { in onUssdInd() argument
6914 if (response == NULL || responseLen != 2 * sizeof(char *)) { in onUssdInd()
6918 char **strings = (char **) response; in onUssdInd()
6936 int indicationType, int token, RIL_Errno e, void *response, in nitzTimeReceivedInd() argument
6939 if (response == NULL || responseLen == 0) { in nitzTimeReceivedInd()
6943 hidl_string nitzTime = convertCharPtrToHidlString((char *) response); in nitzTimeReceivedInd()
6960 void convertRilSignalStrengthToHal(void *response, size_t responseLen, in convertRilSignalStrengthToHal() argument
6962 RIL_SignalStrength_v10 *rilSignalStrength = (RIL_SignalStrength_v10 *) response; in convertRilSignalStrengthToHal()
7009 void *response, size_t responseLen) { in currentSignalStrengthInd() argument
7011 if (response == NULL || responseLen != sizeof(RIL_SignalStrength_v10)) { in currentSignalStrengthInd()
7017 convertRilSignalStrengthToHal(response, responseLen, signalStrength); in currentSignalStrengthInd()
7048 void convertRilDataCallListToHal(void *response, size_t responseLen, in convertRilDataCallListToHal() argument
7052 RIL_Data_Call_Response_v11 *dcResponse = (RIL_Data_Call_Response_v11 *) response; in convertRilDataCallListToHal()
7060 int indicationType, int token, RIL_Errno e, void *response, in dataCallListChangedInd() argument
7063 if ((response == NULL && responseLen != 0) in dataCallListChangedInd()
7069 convertRilDataCallListToHal(response, responseLen, dcList); in dataCallListChangedInd()
7084 int token, RIL_Errno e, void *response, size_t responseLen) { in suppSvcNotifyInd() argument
7086 if (response == NULL || responseLen != sizeof(RIL_SuppSvcNotification)) { in suppSvcNotifyInd()
7092 RIL_SuppSvcNotification *ssn = (RIL_SuppSvcNotification *) response; in suppSvcNotifyInd()
7114 int token, RIL_Errno e, void *response, size_t responseLen) { in stkSessionEndInd() argument
7130 int indicationType, int token, RIL_Errno e, void *response, in stkProactiveCommandInd() argument
7133 if (response == NULL || responseLen == 0) { in stkProactiveCommandInd()
7142 convertCharPtrToHidlString((char *) response)); in stkProactiveCommandInd()
7152 int token, RIL_Errno e, void *response, size_t responseLen) { in stkEventNotifyInd() argument
7154 if (response == NULL || responseLen == 0) { in stkEventNotifyInd()
7163 convertCharPtrToHidlString((char *) response)); in stkEventNotifyInd()
7173 int token, RIL_Errno e, void *response, size_t responseLen) { in stkCallSetupInd() argument
7175 if (response == NULL || responseLen != sizeof(int)) { in stkCallSetupInd()
7179 int32_t timeout = ((int32_t *) response)[0]; in stkCallSetupInd()
7194 int indicationType, int token, RIL_Errno e, void *response, in simSmsStorageFullInd() argument
7211 int token, RIL_Errno e, void *response, size_t responseLen) { in simRefreshInd() argument
7213 if (response == NULL || responseLen != sizeof(RIL_SimRefreshResponse_v7)) { in simRefreshInd()
7219 RIL_SimRefreshResponse_v7 *simRefreshResponse = ((RIL_SimRefreshResponse_v7 *) response); in simRefreshInd()
7247 int token, RIL_Errno e, void *response, size_t responseLen) { in callRingInd() argument
7251 if (response == NULL || responseLen == 0) { in callRingInd()
7259 convertRilCdmaSignalInfoRecordToHal((RIL_CDMA_SignalInfoRecord *) response, record); in callRingInd()
7276 int indicationType, int token, RIL_Errno e, void *response, in simStatusChangedInd() argument
7293 int token, RIL_Errno e, void *response, size_t responseLen) { in cdmaNewSmsInd() argument
7295 if (response == NULL || responseLen != sizeof(RIL_CDMA_SMS_Message)) { in cdmaNewSmsInd()
7301 RIL_CDMA_SMS_Message *rilMsg = (RIL_CDMA_SMS_Message *) response; in cdmaNewSmsInd()
7341 int indicationType, int token, RIL_Errno e, void *response, in newBroadcastSmsInd() argument
7344 if (response == NULL || responseLen == 0) { in newBroadcastSmsInd()
7350 data.setToExternal((uint8_t *) response, responseLen); in newBroadcastSmsInd()
7365 int indicationType, int token, RIL_Errno e, void *response, in cdmaRuimSmsStorageFullInd() argument
7383 int indicationType, int token, RIL_Errno e, void *response, in restrictedStateChangedInd() argument
7386 if (response == NULL || responseLen != sizeof(int)) { in restrictedStateChangedInd()
7390 int32_t state = ((int32_t *) response)[0]; in restrictedStateChangedInd()
7406 int indicationType, int token, RIL_Errno e, void *response, in enterEmergencyCallbackModeInd() argument
7424 int indicationType, int token, RIL_Errno e, void *response, in cdmaCallWaitingInd() argument
7427 if (response == NULL || responseLen != sizeof(RIL_CDMA_CallWaiting_v6)) { in cdmaCallWaitingInd()
7433 RIL_CDMA_CallWaiting_v6 *callWaitingRil = ((RIL_CDMA_CallWaiting_v6 *) response); in cdmaCallWaitingInd()
7457 int indicationType, int token, RIL_Errno e, void *response, in cdmaOtaProvisionStatusInd() argument
7460 if (response == NULL || responseLen != sizeof(int)) { in cdmaOtaProvisionStatusInd()
7464 int32_t status = ((int32_t *) response)[0]; in cdmaOtaProvisionStatusInd()
7480 int indicationType, int token, RIL_Errno e, void *response, in cdmaInfoRecInd() argument
7483 if (response == NULL || responseLen != sizeof(RIL_CDMA_InformationRecords)) { in cdmaInfoRecInd()
7489 RIL_CDMA_InformationRecords *recordsRil = (RIL_CDMA_InformationRecords *) response; in cdmaInfoRecInd()
7658 int indicationType, int token, RIL_Errno e, void *response, in indicateRingbackToneInd() argument
7661 if (response == NULL || responseLen != sizeof(int)) { in indicateRingbackToneInd()
7665 bool start = ((int32_t *) response)[0]; in indicateRingbackToneInd()
7680 int indicationType, int token, RIL_Errno e, void *response, in resendIncallMuteInd() argument
7698 void *response, size_t responseLen) { in cdmaSubscriptionSourceChangedInd() argument
7700 if (response == NULL || responseLen != sizeof(int)) { in cdmaSubscriptionSourceChangedInd()
7704 int32_t cdmaSource = ((int32_t *) response)[0]; in cdmaSubscriptionSourceChangedInd()
7721 int indicationType, int token, RIL_Errno e, void *response, in cdmaPrlChangedInd() argument
7724 if (response == NULL || responseLen != sizeof(int)) { in cdmaPrlChangedInd()
7728 int32_t version = ((int32_t *) response)[0]; in cdmaPrlChangedInd()
7743 int indicationType, int token, RIL_Errno e, void *response, in exitEmergencyCallbackModeInd() argument
7761 int indicationType, int token, RIL_Errno e, void *response, in rilConnectedInd() argument
7776 int indicationType, int token, RIL_Errno e, void *response, in voiceRadioTechChangedInd() argument
7779 if (response == NULL || responseLen != sizeof(int)) { in voiceRadioTechChangedInd()
7783 int32_t rat = ((int32_t *) response)[0]; in voiceRadioTechChangedInd()
7798 void convertRilCellInfoListToHal(void *response, size_t responseLen, hidl_vec<CellInfo>& records) { in convertRilCellInfoListToHal() argument
7802 RIL_CellInfo_v12 *rillCellInfo = (RIL_CellInfo_v12 *) response; in convertRilCellInfoListToHal()
7946 int indicationType, int token, RIL_Errno e, void *response, in cellInfoListInd() argument
7949 if ((response == NULL && responseLen != 0) || responseLen % sizeof(RIL_CellInfo_v12) != 0) { in cellInfoListInd()
7955 convertRilCellInfoListToHal(response, responseLen, records); in cellInfoListInd()
7971 int indicationType, int token, RIL_Errno e, void *response, in imsNetworkStateChangedInd() argument
7989 int indicationType, int token, RIL_Errno e, void *response, in subscriptionStatusChangedInd() argument
7992 if (response == NULL || responseLen != sizeof(int)) { in subscriptionStatusChangedInd()
7996 bool activate = ((int32_t *) response)[0]; in subscriptionStatusChangedInd()
8012 int indicationType, int token, RIL_Errno e, void *response, in srvccStateNotifyInd() argument
8015 if (response == NULL || responseLen != sizeof(int)) { in srvccStateNotifyInd()
8019 int32_t state = ((int32_t *) response)[0]; in srvccStateNotifyInd()
8033 void convertRilHardwareConfigListToHal(void *response, size_t responseLen, in convertRilHardwareConfigListToHal() argument
8038 RIL_HardwareConfig *rilHardwareConfig = (RIL_HardwareConfig *) response; in convertRilHardwareConfigListToHal()
8067 int indicationType, int token, RIL_Errno e, void *response, in hardwareConfigChangedInd() argument
8070 if ((response == NULL && responseLen != 0) in hardwareConfigChangedInd()
8077 convertRilHardwareConfigListToHal(response, responseLen, configs); in hardwareConfigChangedInd()
8093 void convertRilRadioCapabilityToHal(void *response, size_t responseLen, RadioCapability& rc) { in convertRilRadioCapabilityToHal() argument
8094 RIL_RadioCapability *rilRadioCapability = (RIL_RadioCapability *) response; in convertRilRadioCapabilityToHal()
8103 int indicationType, int token, RIL_Errno e, void *response, in radioCapabilityIndicationInd() argument
8106 if (response == NULL || responseLen != sizeof(RIL_RadioCapability)) { in radioCapabilityIndicationInd()
8112 convertRilRadioCapabilityToHal(response, responseLen, rc); in radioCapabilityIndicationInd()
8143 void *response, size_t responseLen) { in onSupplementaryServiceIndicationInd() argument
8145 if (response == NULL || responseLen != sizeof(RIL_StkCcUnsolSsResponse)) { in onSupplementaryServiceIndicationInd()
8150 RIL_StkCcUnsolSsResponse *rilSsResponse = (RIL_StkCcUnsolSsResponse *) response; in onSupplementaryServiceIndicationInd()
8222 int indicationType, int token, RIL_Errno e, void *response, in stkCallControlAlphaNotifyInd() argument
8225 if (response == NULL || responseLen == 0) { in stkCallControlAlphaNotifyInd()
8234 convertCharPtrToHidlString((char *) response)); in stkCallControlAlphaNotifyInd()
8244 void convertRilLceDataInfoToHal(void *response, size_t responseLen, LceDataInfo& lce) { in convertRilLceDataInfoToHal() argument
8245 RIL_LceDataInfo *rilLceDataInfo = (RIL_LceDataInfo *)response; in convertRilLceDataInfoToHal()
8252 int indicationType, int token, RIL_Errno e, void *response, in lceDataInd() argument
8255 if (response == NULL || responseLen != sizeof(RIL_LceDataInfo)) { in lceDataInd()
8261 convertRilLceDataInfoToHal(response, responseLen, lce); in lceDataInd()
8276 int indicationType, int token, RIL_Errno e, void *response, in pcoDataInd() argument
8279 if (response == NULL || responseLen != sizeof(RIL_PCO_Data)) { in pcoDataInd()
8285 RIL_PCO_Data *rilPcoData = (RIL_PCO_Data *)response; in pcoDataInd()
8305 int indicationType, int token, RIL_Errno e, void *response, in modemResetInd() argument
8308 if (response == NULL || responseLen == 0) { in modemResetInd()
8317 convertCharPtrToHidlString((char *) response)); in modemResetInd()
8327 int indicationType, int token, RIL_Errno e, void *response, in networkScanResultInd() argument
8333 if (response == NULL || responseLen == 0) { in networkScanResultInd()
8343 RIL_NetworkScanResult *networkScanResult = (RIL_NetworkScanResult *) response; in networkScanResultInd()
8363 int indicationType, int token, RIL_Errno e, void *response, in carrierInfoForImsiEncryption() argument
8366 if (response == NULL || responseLen == 0) { in carrierInfoForImsiEncryption()
8383 int indicationType, int token, RIL_Errno e, void *response, in keepaliveStatusInd() argument
8401 if (response == NULL || responseLen != sizeof(V1_1::KeepaliveStatus)) { in keepaliveStatusInd()
8407 convertRilKeepaliveStatusToHal(static_cast<RIL_KeepaliveStatus*>(response), ks); in keepaliveStatusInd()