Searched refs:thread (Results 1 – 2 of 2) sorted by relevance
129 Thread thread = new Thread(mHandlerFactory.create(socket)); in listen() local130 mThreadsList.add(thread); in listen()131 thread.start(); in listen()144 for (Thread thread : mThreadsList) { in shutdown()145 if (thread.isAlive()) { in shutdown()147 thread.join(TIMEOUT_MILLIS); in shutdown()
238 Thread thread = new Thread(r); in getCustomThreadFactory() local239 thread.setName(EXECUTOR_THREAD_PREFIX + "_" + mThreadCount.incrementAndGet()); in getCustomThreadFactory()240 return thread; in getCustomThreadFactory()