Home
last modified time | relevance | path

Searched refs:mValuePool (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/Camera2/src/com/android/camera/processing/memory/
H A DLruPool.java98 private final HashMap<TKey, Queue<TValue>> mValuePool; field in LruPool
128 mValuePool = new HashMap<>(); in LruPool()
153 value = mValuePool.get(key).remove(); in acquire()
179 if (!mValuePool.containsKey(key)) { in add()
181 mValuePool.put(key, pool); in add()
183 pool = mValuePool.get(key); in add()
233 Queue<TValue> pool = mValuePool.get(key); in unsafeTrimToSize()
237 mValuePool.remove(key); in unsafeTrimToSize()
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
H A DVehicleHal.h97 mValuePool = valueObjectPool; in init()
105 return mValuePool; in getValuePool()
123 VehiclePropValuePool* mValuePool; variable
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
H A DVehicleHalServer.cpp98 if (!mValuePool) { in getValuePool()
101 return mValuePool; in getValuePool()
108 mValuePool = valuePool; in setValuePool()
H A DVehicleHalServer.h65 VehiclePropValuePool* mValuePool{nullptr};