HomeSort by relevance Sort by last modified time
    Searched refs:mAcceptThread (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMnsService.java 48 static private SocketAcceptThread mAcceptThread = null;
157 if (mAcceptThread == null) {
159 mAcceptThread = new SocketAcceptThread();
160 mAcceptThread.setName("BluetoothMnsAcceptThread");
161 mAcceptThread.start();
184 mAcceptThread.interrupt();
187 mAcceptThread.join(5000);
191 mAcceptThread = null;
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMasInstance.java 43 private SocketAcceptThread mAcceptThread = null;
188 if (mAcceptThread == null) {
189 mAcceptThread = new SocketAcceptThread();
190 mAcceptThread.setName("BluetoothMapAcceptThread masId=" + mMasInstanceId);
191 mAcceptThread.start();
334 if(mAcceptThread != null) {
335 mAcceptThread.shutdown();
337 mAcceptThread.join();
339 mAcceptThread = null;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 152 private SocketAcceptThread mAcceptThread = null;
356 if (mAcceptThread == null) {
357 mAcceptThread = new SocketAcceptThread();
358 mAcceptThread.setName("BluetoothPbapAcceptThread");
359 mAcceptThread.start();
449 if (mAcceptThread != null) {
451 mAcceptThread.shutdown();
452 mAcceptThread.join();
453 mAcceptThread = null;
455 Log.w(TAG, "mAcceptThread close error" + ex)
    [all...]

Completed in 489 milliseconds