HomeSort by relevance Sort by last modified time
    Searched refs:sapMsg (Results 1 - 2 of 2) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/sap/
SapRilReceiver.java 213 SapMessage sapMsg = null;
233 sapMsg = SapMessage.newInstance(rilMsg);
235 if (sapMsg != null && sapMsg.getMsgType() != SapMessage.INVALID_VALUE)
237 if (sapMsg.getMsgType() < SapMessage.ID_RIL_BASE) {
238 sendClientMessage(sapMsg);
240 sendRilIndMessage(sapMsg);
265 * @param sapMsg The message to send
267 private void sendClientMessage(SapMessage sapMsg) {
268 Message newMsg = mSapServerMsgHandler.obtainMessage(SapServer.SAP_MSG_RFC_REPLY, sapMsg);
    [all...]
SapServer.java 534 * @param sapMsg The message to send
536 private void sendClientMessage(SapMessage sapMsg) {
537 Message newMsg = mSapHandler.obtainMessage(SAP_MSG_RFC_REPLY, sapMsg);
543 * @param sapMsg
545 private void sendRilThreadMessage(SapMessage sapMsg) {
546 Message newMsg = mSapHandler.obtainMessage(SAP_MSG_RIL_REQ, sapMsg);
593 SapMessage sapMsg = null;
597 sapMsg = (SapMessage) msg.obj;
598 handleRfcommReply(sapMsg);
615 sapMsg = (SapMessage) msg.obj
    [all...]

Completed in 168 milliseconds