OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPools
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java
54
private SparseArrayBitmapPool []
mPools
;
58
mPools
= new SparseArrayBitmapPool[3];
59
mPools
[POOL_INDEX_SQUARE] = new SparseArrayBitmapPool(capacityBytes / 3, mSharedNodePool);
60
mPools
[POOL_INDEX_PHOTO] = new SparseArrayBitmapPool(capacityBytes / 3, mSharedNodePool);
61
mPools
[POOL_INDEX_MISC] = new SparseArrayBitmapPool(capacityBytes / 3, mSharedNodePool);
76
return
mPools
[index];
118
for (SparseArrayBitmapPool p :
mPools
) {
157
for (SparseArrayBitmapPool p :
mPools
) {
/device/moto/shamu/camera/QCamera2/HAL/
QCameraMem.cpp
470
mPools
[streamType].push_back(memInfo);
490
it =
mPools
[i].begin();
491
for( ; it !=
mPools
[i].end() ; it++) {
495
mPools
[i].clear();
526
if (
mPools
[streamType].empty()) {
531
it =
mPools
[streamType].begin();
532
for ( ; it !=
mPools
[streamType].end() ; it++) {
537
mPools
[streamType].erase(it);
[
all
...]
QCameraMem.h
130
android::List<QCameraMemory::QCameraMemInfo>
mPools
[CAM_STREAM_TYPE_MAX];
Completed in 108 milliseconds