Home
last modified time | relevance | path

Searched refs:reqMsg (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapMessage.java729 SapApi.RIL_SIM_SAP_CONNECT_REQ reqMsg = new RIL_SIM_SAP_CONNECT_REQ(); in writeReqToStream() local
730 reqMsg.setMaxMessageSize(mMaxMsgSize); in writeReqToStream()
732 msg.setPayload(ByteStringMicro.copyFrom(reqMsg.toByteArray())); in writeReqToStream()
739 SapApi.RIL_SIM_SAP_DISCONNECT_REQ reqMsg = new RIL_SIM_SAP_DISCONNECT_REQ(); in writeReqToStream() local
741 msg.setPayload(ByteStringMicro.copyFrom(reqMsg.toByteArray())); in writeReqToStream()
748 SapApi.RIL_SIM_SAP_APDU_REQ reqMsg = new RIL_SIM_SAP_APDU_REQ(); in writeReqToStream() local
751 reqMsg.setType(SapApi.RIL_SIM_SAP_APDU_REQ.RIL_TYPE_APDU); in writeReqToStream()
752 reqMsg.setCommand(ByteStringMicro.copyFrom(mApdu)); in writeReqToStream()
754 reqMsg.setType(SapApi.RIL_SIM_SAP_APDU_REQ.RIL_TYPE_APDU7816); in writeReqToStream()
755 reqMsg.setCommand(ByteStringMicro.copyFrom(mApdu7816)); in writeReqToStream()
[all …]
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
DSapSocketTest.java152 SapApi.RIL_SIM_SAP_CONNECT_REQ reqMsg = new RIL_SIM_SAP_CONNECT_REQ(); in testSapServerConnectSimple() local
153 reqMsg.setMaxMessageSize(1234); in testSapServerConnectSimple()
155 msg.setPayload(ByteStringMicro.copyFrom(reqMsg.toByteArray())); in testSapServerConnectSimple()