Searched refs:mThreadPool (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DBackgroundHandler.java27 static ExecutorService mThreadPool; field in class:BackgroundHandler
32 mThreadPool = Executors.newCachedThreadPool();
36 mThreadPool.execute(runnable);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DGalleryAppImpl.java45 private ThreadPool mThreadPool; field in class:GalleryAppImpl
96 if (mThreadPool == null) {
97 mThreadPool = new ThreadPool();
99 return mThreadPool;
H A DSlideshowDataAdapter.java61 private final ThreadPool mThreadPool; field in class:SlideshowDataAdapter
74 mThreadPool = context.getThreadPool();
175 return mThreadPool.submit(new Job<Slide>() {
202 mReloadTask = mThreadPool.submit(new ReloadTask());
H A DSinglePhotoDataAdapter.java52 private ThreadPool mThreadPool; field in class:SinglePhotoDataAdapter
74 mThreadPool = activity.getThreadPool();
154 mTask = mThreadPool.submit(
157 mTask = mThreadPool.submit(
H A DPhotoDataAdapter.java142 private final ThreadPool mThreadPool; field in class:PhotoDataAdapter
183 mThreadPool = activity.getThreadPool();
791 entry.screenNailTask = mThreadPool.submit(
801 entry.fullImageTask = mThreadPool.submit(
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumSlidingWindow.java62 private final JobLimiter mThreadPool; field in class:AlbumSlidingWindow
105 mThreadPool = new JobLimiter(activity.getThreadPool(), JOB_LIMIT);
304 return mThreadPool.submit(
H A DAlbumSetSlidingWindow.java58 private final ThreadPool mThreadPool; field in class:AlbumSetSlidingWindow
97 mThreadPool = activity.getThreadPool();
435 return mThreadPool.submit(mMediaItem.requestImage(
499 return mThreadPool.submit(mLabelMaker.requestLabel(
H A DTileImageView.java125 private final ThreadPool mThreadPool; field in class:TileImageView
151 mThreadPool = context.getThreadPool();
152 mTileDecoder = mThreadPool.submit(new TileDecoder());
400 mTileDecoder = mThreadPool.submit(new TileDecoder());

Completed in 189 milliseconds