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

  /packages/apps/Browser/src/com/android/browser/
BackgroundHandler.java 27 static ExecutorService mThreadPool;
32 mThreadPool = Executors.newCachedThreadPool();
36 mThreadPool.execute(runnable);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
BatchService.java 35 private ThreadPool mThreadPool = new ThreadPool(1, 1);
46 return mThreadPool;
GalleryAppImpl.java 43 private ThreadPool mThreadPool;
84 if (mThreadPool == null) {
85 mThreadPool = new ThreadPool();
87 return mThreadPool;
SlideshowDataAdapter.java 61 private final ThreadPool mThreadPool;
74 mThreadPool = context.getThreadPool();
175 return mThreadPool.submit(new Job<Slide>() {
202 mReloadTask = mThreadPool.submit(new ReloadTask());
SinglePhotoDataAdapter.java 52 private ThreadPool mThreadPool;
74 mThreadPool = activity.getThreadPool();
154 mTask = mThreadPool.submit(
157 mTask = mThreadPool.submit(
PhotoDataAdapter.java 141 private final ThreadPool mThreadPool;
182 mThreadPool = activity.getThreadPool();
789 entry.screenNailTask = mThreadPool.submit(
799 entry.fullImageTask = mThreadPool.submit(
    [all...]
  /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));
  /frameworks/wilhelm/src/objects/
CEngine.c 64 result = ThreadPool_init(&thiz->mThreadPool, 0, 0);
123 ThreadPool_deinit(&thiz->mThreadPool);
  /frameworks/wilhelm/src/
sles_allinclusive.h 451 ThreadPool_add_ppi(&(object)->mObject.mEngine->mThreadPool, \
454 ThreadPool_add_ppii(&(object)->mObject.mEngine->mThreadPool, \
457 ThreadPool_add_piipp(&(object)->mObject.mEngine->mThreadPool, \
entry.c 150 // mThreadPool is initialized in CEngine_Realize
151 memset(&thiz->mThreadPool, 0, sizeof(ThreadPool));
classes.h 186 ThreadPool mThreadPool; // for asynchronous operations
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSlidingWindow.java 63 private final JobLimiter mThreadPool;
106 mThreadPool = new JobLimiter(activity.getThreadPool(), JOB_LIMIT);
299 return mThreadPool.submit(
AlbumSetSlidingWindow.java 61 private final ThreadPool mThreadPool;
100 mThreadPool = activity.getThreadPool();
431 return mThreadPool.submit(mMediaItem.requestImage(
495 return mThreadPool.submit(mLabelMaker.requestLabel(
TileImageView.java 123 private final ThreadPool mThreadPool;
155 mThreadPool = context.getThreadPool();
156 mTileDecoder = mThreadPool.submit(new TileDecoder());
398 mTileDecoder = mThreadPool.submit(new TileDecoder());
  /frameworks/wilhelm/src/itf/
IDynamicInterfaceManagement.c 138 result = ThreadPool_add_ppi(&thisObject->mEngine->mThreadPool, HandleAdd, thiz,
386 result = ThreadPool_add_ppi(&thisObject->mEngine->mThreadPool, HandleResume,
IObject.c 125 result = ThreadPool_add_ppi(&thiz->mEngine->mThreadPool, HandleRealize, thiz, NULL, 0);
253 result = ThreadPool_add_ppi(&thiz->mEngine->mThreadPool, HandleResume, thiz, NULL, 0);

Completed in 114 milliseconds