Home
last modified time | relevance | path

Searched refs:mServerSession (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/opp/
DBluetoothOppObexServerSessionTest.java73 BluetoothOppObexServerSession mServerSession; field in BluetoothOppObexServerSessionTest
81 mServerSession = in setUp()
101 mServerSession = in constructor_createInstanceCorrectly()
103 assertThat(mServerSession.mBluetoothOppService).isEqualTo(mBluetoothOppService); in constructor_createInstanceCorrectly()
104 assertThat(mServerSession.mTransport).isEqualTo(mTransport); in constructor_createInstanceCorrectly()
105 assertThat(mServerSession.mContext).isEqualTo(mTargetContext); in constructor_createInstanceCorrectly()
110 assertThat(mServerSession.mServerBlocking).isTrue(); in unblock()
111 mServerSession.unblock(); in unblock()
112 assertThat(mServerSession.mServerBlocking).isFalse(); in unblock()
118 assertThat(mServerSession.mSession).isNull(); in preStart_thenStart_thenStop_flowWorksCorrectly()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapMasInstance.java71 private ServerSession mServerSession = null; field in BluetoothMapMasInstance
270 if (mServerSession != null) { in startSocketListeners()
272 mServerSession.close(); in startSocketListeners()
273 mServerSession = null; in startSocketListeners()
389 if (mServerSession != null) { in startObexServerSession()
405 mServerSession = new ServerSession(transport, mMapServer, null); in startObexServerSession()
433 if (mServerSession != null) { in shutdown()
434 mServerSession.close(); in shutdown()
435 mServerSession = null; in shutdown()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DPbapStateMachine.java89 private ServerSession mServerSession; field in PbapStateMachine
279 mServerSession = new ServerSession(transport, server, null); in rejectConnection()
301 if (mServerSession != null) { in enter()
302 mServerSession.close(); in enter()
303 mServerSession = null; in enter()
395 mServerSession = new ServerSession(transport, mPbapServer, mObexAuth); in startObexServerSession()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppService.java210 private BluetoothOppObexServerSession mServerSession; field in BluetoothOppService
625 mServerSession = new BluetoothOppObexServerSession(this, transport, this); in createServerSession()
626 mServerSession.preStart(); in createServerSession()
630 + mServerSession.toString() in createServerSession()
939 new BluetoothOppTransfer(mAdapterService, newBatch, mServerSession); in insertShare()
1195 && mServerSession != null) { in removeBatch()
1201 mAdapterService, nextBatch, mServerSession); in removeBatch()