Home | History | Annotate | Download | only in media

Lines Matching refs:targetThread

118     private void repeatShuttingDownThread(Thread targetThread) {
119 for (int i = 0; i < NUM_INTERRUPT_RETRIES && targetThread.isAlive(); ++i) {
120 targetThread.interrupt();
122 targetThread.join(JOIN_TIMEOUT);
124 Log.w(TAG, "Cannot stop the thread: " + targetThread.getName(), e);
130 if (targetThread.isAlive()) {
131 Log.w(TAG, "Cannot stop the thread: " + targetThread.getName());