Home | History | Annotate | Download | only in documentsui

Lines Matching refs:mTasks

93     @GuardedBy("mTasks")
95 private final Map<String, RecentsTask> mTasks = new HashMap<>();
122 synchronized (mTasks) {
134 mTasks.put(authority, new RecentsTask(authority, rootsIndex.get(authority)));
137 mFirstPassLatch = new CountDownLatch(mTasks.size());
138 for (RecentsTask task : mTasks.values()) {
155 List<Cursor> cursors = new ArrayList<>(mTasks.size());
156 for (RecentsTask task : mTasks.values()) {
292 synchronized (mTasks) {
293 for (RecentsTask task : mTasks.values()) {