OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mThreadPool
(Results
1 - 15
of
15
) sorted by null
/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/core/java/com/android/server/wm/
ViewServer.java
76
private ExecutorService
mThreadPool
;
109
mThreadPool
= Executors.newFixedThreadPool(VIEW_SERVER_MAX_CONNECTIONS);
129
if (
mThreadPool
!= null) {
131
mThreadPool
.shutdownNow();
136
mThreadPool
= null;
170
if (
mThreadPool
!= null) {
171
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
191
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
122
private final ThreadPool
mThreadPool
;
154
mThreadPool
= context.getThreadPool();
155
mTileDecoder =
mThreadPool
.submit(new TileDecoder());
397
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 3430 milliseconds