Home
last modified time | relevance | path

Searched refs:ID_RIL_UNSOL_DISCONNECT_IND (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/sap/
DSapServerTest.java28 import static com.android.bluetooth.sap.SapMessage.ID_RIL_UNSOL_DISCONNECT_IND;
304 when(msg.getMsgType()).thenReturn(ID_RIL_UNSOL_DISCONNECT_IND); in handleRilInd_whenStateIsConnected_callsSendClientMessage()
327 when(msg.getMsgType()).thenReturn(ID_RIL_UNSOL_DISCONNECT_IND); in handleRilInd_whenStateIsDisconnected_callsSendDisconnectInd()
603 when(sapMsg.getMsgType()).thenReturn(ID_RIL_UNSOL_DISCONNECT_IND); in handleMessage_forRilIndMsg_callsHandleRilInd()
DSapRilReceiverTest.java29 import static com.android.bluetooth.sap.SapMessage.ID_RIL_UNSOL_DISCONNECT_IND;
216 return sapMsg.getMsgType() == ID_RIL_UNSOL_DISCONNECT_IND in callback_disconnectIndication()
DSapRilReceiverHidlTest.java29 import static com.android.bluetooth.sap.SapMessage.ID_RIL_UNSOL_DISCONNECT_IND;
211 return sapMsg.getMsgType() == ID_RIL_UNSOL_DISCONNECT_IND in callback_disconnectIndication()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sap/
DSapMessage.java79 public static final int ID_RIL_UNSOL_DISCONNECT_IND = 0x102; field in SapMessage
903 mMsgType = ID_RIL_UNSOL_DISCONNECT_IND; // don't use ID_DISCONNECT_IND; in createUnsolicited()
1267 case ID_RIL_UNSOL_DISCONNECT_IND: in getMsgTypeName()
DSapRilReceiverHidl.java255 SapMessage sapMessage = new SapMessage(SapMessage.ID_RIL_UNSOL_DISCONNECT_IND); in disconnectIndication()
DSapRilReceiver.java233 SapMessage sapMessage = new SapMessage(SapMessage.ID_RIL_UNSOL_DISCONNECT_IND); in disconnectIndication()
DSapServer.java914 case SapMessage.ID_RIL_UNSOL_DISCONNECT_IND: in handleRilInd()