Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/sap/
DSapMessageTest.java75 int disconnectionType = DISC_GRACEFULL; in settersAndGetters() local
91 mMessage.setDisconnectionType(disconnectionType); in settersAndGetters()
107 assertThat(mMessage.getDisconnectionType()).isEqualTo(disconnectionType); in settersAndGetters()
146 int disconnectionType = DISC_GRACEFULL; in writeAndRead() local
159 mMessage.setDisconnectionType(disconnectionType); in writeAndRead()
181 assertThat(msgFromInputStream.getDisconnectionType()).isEqualTo(disconnectionType); in writeAndRead()
DSapServerTest.java302 int disconnectionType = DISC_GRACEFULL; in handleRilInd_whenStateIsConnected_callsSendClientMessage() local
305 when(msg.getDisconnectionType()).thenReturn(disconnectionType); in handleRilInd_whenStateIsConnected_callsSendClientMessage()
317 == disconnectionType)); in handleRilInd_whenStateIsConnected_callsSendClientMessage()
322 int disconnectionType = DISC_GRACEFULL; in handleRilInd_whenStateIsDisconnected_callsSendDisconnectInd() local
328 when(msg.getDisconnectionType()).thenReturn(disconnectionType); in handleRilInd_whenStateIsDisconnected_callsSendDisconnectInd()
334 verify(mSapServer).sendDisconnectInd(disconnectionType); in handleRilInd_whenStateIsDisconnected_callsSendDisconnectInd()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sap/
DSapMessage.java247 public void setDisconnectionType(int disconnectionType) { in setDisconnectionType() argument
248 this.mDisconnectionType = disconnectionType; in setDisconnectionType()