Home
last modified time | relevance | path

Searched refs:mChatService (Results 1 – 5 of 5) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DConnectionAccessServerActivity.java49 private BluetoothChatService mChatService; field in ConnectionAccessServerActivity
107 mChatService = new BluetoothChatService(this, new ChatHandler(), in startChatService()
110 mChatService.start(secure); in startChatService()
178 if (mChatService != null) { in onDestroy()
179 mChatService.stop(); in onDestroy()
DBleCocServerService.java176 BluetoothChatService mChatService; field in BleCocServerService
262 if (mBluetoothManager.getAdapter().isEnabled() && (mChatService == null)) { in startServerTest()
272 mChatService.write(buf); in sendMessage()
314 if (mChatService != null) { in onTestFinish()
315 mChatService.stop(); in onTestFinish()
334 if (mChatService != null) { in onDestroy()
335 mChatService.stop(); in onDestroy()
525 if (mChatService == null) { in leCheckConnectionType()
529 int type = mChatService.getSocketConnectionType(); in leCheckConnectionType()
673 mChatService = new BluetoothChatService(this, new ChatHandler(), true); in createChatService()
[all …]
DMessageTestActivity.java61 private BluetoothChatService mChatService; field in MessageTestActivity
176 mChatService = new BluetoothChatService(this, new ChatHandler(), mUuid); in startChatService()
178 mChatService.start(mSecure); in startChatService()
181 mChatService.connect(device, mSecure); in startChatService()
282 mChatService.write(message.getBytes()); in sendMessage()
359 if (mChatService != null) { in onDestroy()
360 mChatService.stop(); in onDestroy()
DBleCocClientService.java150 private BluetoothChatService mChatService; field in BleCocClientService
225 if (mChatService != null) { in onTestFinish()
226 mChatService.stop(); in onTestFinish()
251 if (mChatService != null) { in onDestroy()
252 mChatService.stop(); in onDestroy()
570 mChatService.write(buf); in sendMessage()
631 mChatService = new BluetoothChatService(this, new ChatHandler(), true); in leCocClientConnect()
632 mChatService.connect(mDevice, mSecure, mPsm); in leCocClientConnect()
636 if (mChatService == null) { in leCheckConnectionType()
640 int type = mChatService.getSocketConnectionType(); in leCheckConnectionType()
DConnectionAccessClientActivity.java42 private BluetoothChatService mChatService; field in ConnectionAccessClientActivity
112 mChatService = new BluetoothChatService(this, new ChatHandler(), in startChartService()
115 mChatService.connect(device, false); in startChartService()