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

  /packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushServer.java 51 ServerThread mServerThread = null;
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/handover/
HandoverServer.java 42 ServerThread mServerThread = null;
56 if (mServerThread == null) {
57 mServerThread = new ServerThread();
58 mServerThread.start();
64 if (mServerThread != null) {
65 mServerThread.shutdown();
66 mServerThread = null;
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepServer.java 52 ServerThread mServerThread = null;
266 if (DBG) Log.d(TAG, "start, thread = " + mServerThread);
267 if (mServerThread == null) {
269 mServerThread = new ServerThread();
270 mServerThread.start();
278 if (DBG) Log.d(TAG, "stop, thread = " + mServerThread);
279 if (mServerThread != null) {
281 mServerThread.shutdown();
282 mServerThread = null;
  /packages/apps/Nfc/src/com/android/nfc/echoserver/
EchoServer.java 72 ServerThread mServerThread;
379 if (mServerThread == null) {
380 mServerThread = new ServerThread();
381 mServerThread.start();
389 if (mServerThread != null) {
390 mServerThread.shutdown();
391 mServerThread = null;
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 127 private ServerThread mServerThread;
173 mServerThread = new ServerThread(this, mSsl);
175 mServerUri = "https://localhost:" + mServerThread.mSocket.getLocalPort();
177 mServerUri = "http://localhost:" + mServerThread.mSocket.getLocalPort();
179 mServerThread.start();
200 mServerThread.join();
    [all...]

Completed in 1313 milliseconds