OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mServerThread
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushServer.java
51
ServerThread
mServerThread
= null;
177
if (DBG) Log.d(TAG, "start, thread = " +
mServerThread
);
178
if (
mServerThread
== null) {
180
mServerThread
= new ServerThread();
181
mServerThread
.start();
188
if (DBG) Log.d(TAG, "stop, thread = " +
mServerThread
);
189
if (
mServerThread
!= null) {
191
mServerThread
.shutdown();
192
mServerThread
= null;
/packages/apps/Nfc/src/com/android/nfc/snep/
SnepServer.java
49
ServerThread
mServerThread
= null;
248
if (DBG) Log.d(TAG, "start, thread = " +
mServerThread
);
249
if (
mServerThread
== null) {
251
mServerThread
= new ServerThread();
252
mServerThread
.start();
260
if (DBG) Log.d(TAG, "stop, thread = " +
mServerThread
);
261
if (
mServerThread
!= null) {
263
mServerThread
.shutdown();
264
mServerThread
= null;
/cts/tests/src/android/webkit/cts/
CtsTestServer.java
123
private ServerThread
mServerThread
;
176
mServerThread
= new ServerThread(this, mSsl);
177
mServerThread
.start();
198
mServerThread
.join();
[
all
...]
Completed in 40 milliseconds