Searched refs:mServerThread (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Nfc/src/com/android/nfc/ndefpush/ |
D | NdefPushServer.java | 51 ServerThread mServerThread = null; field in NdefPushServer 206 if (DBG) Log.d(TAG, "start, thread = " + mServerThread); in start() 207 if (mServerThread == null) { in start() 209 mServerThread = new ServerThread(); in start() 210 mServerThread.start(); in start() 217 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread); in stop() 218 if (mServerThread != null) { in stop() 220 mServerThread.shutdown(); in stop() 221 mServerThread = null; in stop()
|
/packages/apps/Nfc/src/com/android/nfc/snep/ |
D | SnepServer.java | 52 ServerThread mServerThread = null; field in SnepServer 269 if (DBG) Log.d(TAG, "start, thread = " + mServerThread); in start() 270 if (mServerThread == null) { in start() 272 mServerThread = new ServerThread(); in start() 273 mServerThread.start(); in start() 281 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread); in stop() 282 if (mServerThread != null) { in stop() 284 mServerThread.shutdown(); in stop() 285 mServerThread = null; in stop()
|
/packages/apps/Nfc/src/com/android/nfc/sneptest/ |
D | ExtDtaSnepServer.java | 50 ServerThread mServerThread = null; field in ExtDtaSnepServer 238 if (DBG) Log.d(TAG, "start, thread = " + mServerThread); in start() 239 if (mServerThread == null) { in start() 241 mServerThread = new ServerThread(); in start() 242 mServerThread.start(); in start() 250 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread); in stop() 251 if (mServerThread != null) { in stop() 253 mServerThread.shutdown(); in stop() 254 mServerThread = null; in stop()
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | HandoverServer.java | 50 ServerThread mServerThread = null; field in HandoverServer 66 if (mServerThread == null) { in start() 67 mServerThread = new ServerThread(); in start() 68 mServerThread.start(); in start() 74 if (mServerThread != null) { in stop() 75 mServerThread.shutdown(); in stop() 76 mServerThread = null; in stop()
|
/packages/apps/Nfc/src/com/android/nfc/echoserver/ |
D | EchoServer.java | 72 ServerThread mServerThread; field in EchoServer 379 if (mServerThread == null) { in start() 380 mServerThread = new ServerThread(); in start() 381 mServerThread.start(); in start() 389 if (mServerThread != null) { in stop() 390 mServerThread.shutdown(); in stop() 391 mServerThread = null; in stop()
|