Home
last modified time | relevance | path

Searched refs:mServerThread (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/ndefpush/
DNdefPushServer.java51 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/
DSnepServer.java52 ServerThread mServerThread = null; field in SnepServer
265 if (DBG) Log.d(TAG, "start, thread = " + mServerThread); in start()
266 if (mServerThread == null) { in start()
268 mServerThread = new ServerThread(); in start()
269 mServerThread.start(); in start()
277 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread); in stop()
278 if (mServerThread != null) { in stop()
280 mServerThread.shutdown(); in stop()
281 mServerThread = null; in stop()
/packages/apps/Nfc/src/com/android/nfc/handover/
DHandoverServer.java50 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/
DEchoServer.java72 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()