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.java50 private BluetoothChatService mChatService; field in ConnectionAccessServerActivity
108 mChatService = new BluetoothChatService(this, new ChatHandler(), in startChatService()
111 mChatService.start(secure); in startChatService()
179 if (mChatService != null) { in onDestroy()
180 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.java63 private BluetoothChatService mChatService; field in MessageTestActivity
178 mChatService = new BluetoothChatService(this, new ChatHandler(), mUuid); in startChatService()
180 mChatService.start(mSecure); in startChatService()
183 mChatService.connect(device, mSecure); in startChatService()
284 mChatService.write(message.getBytes()); in sendMessage()
361 if (mChatService != null) { in onDestroy()
362 mChatService.stop(); in onDestroy()
DBleCocClientService.java146 private BluetoothChatService mChatService; field in BleCocClientService
223 if (mChatService != null) { in onTestFinish()
224 mChatService.stop(); in onTestFinish()
249 if (mChatService != null) { in onDestroy()
250 mChatService.stop(); in onDestroy()
567 mChatService.write(buf); in sendMessage()
628 mChatService = new BluetoothChatService(this, new ChatHandler(), true); in leCocClientConnect()
629 mChatService.connect(mDevice, mSecure, mPsm); in leCocClientConnect()
633 if (mChatService == null) { in leCheckConnectionType()
637 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()