Home | History | Annotate | Download | only in downloads

Lines Matching defs:thread

60         // Spin up thread to handle this download
67 final DownloadThread thread;
73 thread = new DownloadThread(this, params, info);
74 mActiveThreads.put(id, thread);
76 thread.start();
85 final DownloadThread thread;
87 thread = mActiveThreads.removeReturnOld(id);
89 if (thread != null) {
90 // If the thread is still running, ask it to gracefully shutdown,
92 thread.requestShutdown();