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

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 71 private AcceptThread mSecureAcceptThread;
72 private AcceptThread mInsecureAcceptThread;
114 * Start the chat service. Specifically start AcceptThread to begin a
129 mSecureAcceptThread = new AcceptThread(true);
133 mInsecureAcceptThread = new AcceptThread(false);
273 private class AcceptThread extends Thread {
278 public AcceptThread(boolean secure) {
298 setName("AcceptThread" + mSocketType);
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChatService.java 58 private AcceptThread mSecureAcceptThread;
59 private AcceptThread mInsecureAcceptThread;
100 * Start the chat service. Specifically start AcceptThread to begin a
115 mSecureAcceptThread = new AcceptThread(true);
119 mInsecureAcceptThread = new AcceptThread(false);
265 private class AcceptThread extends Thread {
270 public AcceptThread(boolean secure) {
292 setName("AcceptThread" + mSocketType);
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 68 private AcceptThread acceptT;
133 acceptT = new AcceptThread();
210 log("Closing AcceptThread"+acceptT);
216 * The AcceptThread is responsible for initiating worker threads
219 class AcceptThread extends Thread {
236 log("IOException in AcceptThread.init()");
278 log("SocketException in AcceptThread: probably closed during accept");
281 log("IOException in AcceptThread");
285 log("AcceptThread terminated" + this);
361 * Called by the AcceptThread to unblock this Worker to proces
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 61 private AcceptThread acceptT;
140 acceptT = new AcceptThread();
238 log("Closing AcceptThread"+acceptT);
244 * The AcceptThread is responsible for initiating worker threads
247 class AcceptThread extends Thread {
282 log("AcceptThread terminated" + this);

Completed in 196 milliseconds