HomeSort by relevance Sort by last modified time
    Searched defs:mThreadPool (Results 1 - 11 of 11) sorted by null

  /packages/apps/Browser/src/com/android/browser/
BackgroundHandler.java 27 static ExecutorService mThreadPool;
32 mThreadPool = Executors.newCachedThreadPool();
36 mThreadPool.execute(runnable);
  /frameworks/base/services/java/com/android/server/wm/
ViewServer.java 73 private ExecutorService mThreadPool;
106 mThreadPool = Executors.newFixedThreadPool(VIEW_SERVER_MAX_CONNECTIONS);
126 if (mThreadPool != null) {
128 mThreadPool.shutdownNow();
133 mThreadPool = null;
167 if (mThreadPool != null) {
168 mThreadPool.submit(new ViewServerWorker(client));
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpImage.java 44 private final ThreadPool mThreadPool;
63 mThreadPool = application.getThreadPool();
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryAppImpl.java 39 private ThreadPool mThreadPool;
70 if (mThreadPool == null) {
71 mThreadPool = new ThreadPool();
73 return mThreadPool;
SinglePhotoDataAdapter.java 51 private ThreadPool mThreadPool;
71 mThreadPool = activity.getThreadPool();
142 mTask = mThreadPool.submit(
145 mTask = mThreadPool.submit(
SlideshowDataAdapter.java 61 private final ThreadPool mThreadPool;
74 mThreadPool = context.getThreadPool();
172 return mThreadPool.submit(new Job<Slide>() {
196 mReloadTask = mThreadPool.submit(new ReloadTask());
PhotoDataAdapter.java 136 private final ThreadPool mThreadPool;
166 mThreadPool = activity.getThreadPool();
531 entry.screenNailTask = mThreadPool.submit(
542 entry.fullImageTask = mThreadPool.submit(
  /system/media/wilhelm/src/
classes.h 186 ThreadPool mThreadPool; // for asynchronous operations
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlidingWindow.java 65 private final ThreadPool mThreadPool;
100 mThreadPool = activity.getThreadPool();
420 mFuture = mThreadPool.submit(mMediaItem.requestImage(
AlbumSlidingWindow.java 68 private JobLimiter mThreadPool;
103 mThreadPool = new JobLimiter(activity.getThreadPool(), JOB_LIMIT);
368 mFuture = mThreadPool.submit(this, this);
370 mFuture = mThreadPool.submit(mMediaItem.requestImage(
TileImageView.java 119 private ThreadPool mThreadPool;
134 mThreadPool = context.getThreadPool();
135 mTileDecoder = mThreadPool.submit(new TileDecoder());
352 mTileDecoder = mThreadPool.submit(new TileDecoder());

Completed in 241 milliseconds