Searched refs:mAcceptThread (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapService.java114 private SocketAcceptThread mAcceptThread = null; field in class:BluetoothMapService
155 if (mAcceptThread == null) {
156 mAcceptThread = new SocketAcceptThread();
157 mAcceptThread.setName("BluetoothMapAcceptThread");
158 mAcceptThread.start();
245 if (mAcceptThread != null) {
247 mAcceptThread.shutdown();
248 mAcceptThread.join();
249 mAcceptThread = null;
251 Log.w(TAG, "mAcceptThread clos
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapService.java147 private SocketAcceptThread mAcceptThread = null; field in class:BluetoothPbapService
321 if (mAcceptThread == null) {
322 mAcceptThread = new SocketAcceptThread();
323 mAcceptThread.setName("BluetoothPbapAcceptThread");
324 mAcceptThread.start();
414 if (mAcceptThread != null) {
416 mAcceptThread.shutdown();
417 mAcceptThread.join();
418 mAcceptThread = null;
420 Log.w(TAG, "mAcceptThread clos
[all...]

Completed in 47 milliseconds