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

/packages/apps/Nfc/src/com/android/nfc/ndefpush/
H A DNdefPushServer.java51 ServerThread mServerThread = null; field in class:NdefPushServer
206 if (DBG) Log.d(TAG, "start, thread = " + mServerThread);
207 if (mServerThread == null) {
209 mServerThread = new ServerThread();
210 mServerThread.start();
217 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread);
218 if (mServerThread != null) {
220 mServerThread.shutdown();
221 mServerThread = null;
/packages/apps/Nfc/src/com/android/nfc/snep/
H A DSnepServer.java52 ServerThread mServerThread = null; field in class:SnepServer
265 if (DBG) Log.d(TAG, "start, thread = " + mServerThread);
266 if (mServerThread == null) {
268 mServerThread = new ServerThread();
269 mServerThread.start();
277 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread);
278 if (mServerThread != null) {
280 mServerThread.shutdown();
281 mServerThread = null;
/packages/apps/Nfc/src/com/android/nfc/echoserver/
H A DEchoServer.java72 ServerThread mServerThread; field in class:EchoServer
379 if (mServerThread == null) {
380 mServerThread = new ServerThread();
381 mServerThread.start();
389 if (mServerThread != null) {
390 mServerThread.shutdown();
391 mServerThread = null;
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DHandoverServer.java50 ServerThread mServerThread = null; field in class:HandoverServer
66 if (mServerThread == null) {
67 mServerThread = new ServerThread();
68 mServerThread.start();
74 if (mServerThread != null) {
75 mServerThread.shutdown();
76 mServerThread = null;

Completed in 93 milliseconds