Home
last modified time | relevance | path

Searched refs:apdu (Results 1 – 3 of 3) sorted by relevance

/hardware/ril/librilutils/proto/
Dsap-api.options22 #RIL_SIM_SAP_REQUEST.apdu type:FT_POINTER
23 #RIL_SIM_SAP_RESPONSE.apdu type:FT_POINTER
/hardware/ril/reference-ril/
Dreference-ril.c1903 RIL_SIM_APDU *apdu = (RIL_SIM_APDU *)data; local
1905 if (apdu == NULL || datalen != sizeof(RIL_SIM_APDU)) {
1910 cmd_size = 10 + (apdu->data ? strlen(apdu->data) : 0);
1912 apdu->sessionid, cmd_size, apdu->cla, apdu->instruction,
1913 apdu->p1, apdu->p2, apdu->p3, apdu->data ? apdu->data : "");
/hardware/ril/libril/
Dril_service.cpp734 RIL_SIM_APDU apdu = {}; in dispatchIccApdu() local
736 apdu.sessionid = message.sessionId; in dispatchIccApdu()
737 apdu.cla = message.cla; in dispatchIccApdu()
738 apdu.instruction = message.instruction; in dispatchIccApdu()
739 apdu.p1 = message.p1; in dispatchIccApdu()
740 apdu.p2 = message.p2; in dispatchIccApdu()
741 apdu.p3 = message.p3; in dispatchIccApdu()
743 if (!copyHidlStringToRil(&apdu.data, message.data, pRI)) { in dispatchIccApdu()
747 CALL_ONREQUEST(request, &apdu, sizeof(apdu), pRI, slotId); in dispatchIccApdu()
749 memsetAndFreeStrings(1, apdu.data); in dispatchIccApdu()