Home | History | Annotate | Download | only in net

Lines Matching defs:thread

62         // implAccept() on background thread to prevent this test hanging
65 Thread thread = new Thread("implAccept() closed ServerSocket") {
80 thread.start();
88 thread.join();
125 * <p>Spawns a server and client thread that continuously connect to each
142 Thread serverThread = new Thread(serverRunnable, TAG + " (server)");
145 Thread clientThread = new Thread(clientRunnable, TAG + " (client)");
155 Thread.sleep(msecPerIteration);
167 + "Server thread's stackTrace: " + serverStackTrace);