Home
last modified time | relevance | path

Searched refs:infoMap (Results 1 – 17 of 17) sorted by relevance

/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/service/
H A DPreferenceParcelable.java48 private Map<String, String> infoMap; field in PreferenceParcelable
125 if (infoMap == null) { in getInfoMap()
126 infoMap = new ArrayMap<>(); in getInfoMap()
128 return infoMap; in getInfoMap()
132 this.infoMap = info; in setInfoMap()
136 if (infoMap == null) { in addInfo()
139 infoMap.put(key, value); in addInfo()
143 if (infoMap == null || !infoMap.containsKey(key)) { in getInfo()
146 return infoMap.get(key); in getInfo()
237 if (infoMap != null) { in immutableCopy()
[all …]
/aosp12/packages/apps/Dialer/java/com/android/incallui/
H A DContactInfoCache.java300 return infoMap.get(callId); in getInfo()
328 || infoMap.get(call.getId()) != null) { in maybeInsertCnapInformationIntoCache()
355 final ContactCacheEntry cacheEntry = infoMap.get(callId); in findInfo()
497 infoMap.put(callId, cacheEntry); in updateCallerInfoInCacheOnAnyThread()
501 infoMap.putIfAbsent(callId, cacheEntry); in updateCallerInfoInCacheOnAnyThread()
570 ContactCacheEntry entry = infoMap.get(callId); in loadImage()
610 sendImageNotifications(callId, infoMap.get(callId)); in onImageLoadComplete()
617 infoMap.clear(); in clearCache()
823 ContactCacheEntry cacheEntry = infoMap.get(callId); in onQueryComplete()
894 final ContactCacheEntry oldEntry = infoMap.get(callId); in onPhoneNumberInfoComplete()
[all …]
/aosp12/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3BufferManager.cpp136 InfoMap& infoMap = currentSet.streamInfoMap; in unregisterStream() local
141 infoMap.removeItem(streamId); in unregisterStream()
143 for (size_t i = 0; i < infoMap.size(); i++) { in unregisterStream()
144 if (infoMap[i].totalBufferCount > currentSet.maxAllowedBufferCount) { in unregisterStream()
145 currentSet.maxAllowedBufferCount = infoMap[i].totalBufferCount; in unregisterStream()
155 if (handOutBufferCounts.size() == 0 && infoMap.size() == 0) { in unregisterStream()
/aosp12/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagnosticEngine.h123 DiagnosticInfos& infoMap() { in infoMap() function
128 const DiagnosticInfos& infoMap() const { in infoMap() function
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/default/
H A DDrmPlugin.cpp203 KeyedVector<String8, String8>& infoMap) const { in queryKeyStatus()
209 infoMap.clear(); in queryKeyStatus()
212 infoMap.add(mPlayPolicy.keyAt(i), mPlayPolicy.valueAt(i)); in queryKeyStatus()
/aosp12/frameworks/compile/mclinker/lib/LD/
H A DDiagnostic.cpp33 llvm::StringRef desc = m_Engine.infoMap().getDescription(getID(), false); in format()
/aosp12/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp255 KeyedVector<String8, String8> &infoMap) const in queryKeyStatus()
266 infoMap.add(String8("purchaseDuration"), String8("1000")); in queryKeyStatus()
267 infoMap.add(String8("licenseDuration"), String8("100")); in queryKeyStatus()
H A DMockDrmCryptoPlugin.h79 KeyedVector<String8, String8> &infoMap) const;
/aosp12/frameworks/av/drm/libmediadrm/fuzzer/
H A Dmediadrm_fuzzer.cpp256 KeyedVector<String8, String8> infoMap = {}; in invokeDrmDecryptEncryptAPI() local
257 mDrm->queryKeyStatus(mSessionId, infoMap); in invokeDrmDecryptEncryptAPI()
/aosp12/frameworks/av/drm/libmediadrm/include/mediadrm/
H A DIDrm.h78 KeyedVector<String8, String8> &infoMap) const = 0;
H A DDrmHal.h106 KeyedVector<String8, String8> &infoMap) const;
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/default/include/
H A DDrmPlugin.h84 KeyedVector<String8, String8>& infoMap) const;
/aosp12/frameworks/native/headers/media_plugin/media/drm/
H A DDrmAPI.h271 KeyedVector<String8, String8> &infoMap) const = 0;
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DAppProfiler.java1312 final SparseArray<ProcessMemInfo> infoMap = new SparseArray<>(memInfos.size()); in reportMemUsage() local
1315 infoMap.put(mi.pid, mi); in reportMemUsage()
1329 if (infoMap.indexOfKey(st.pid) < 0) { in reportMemUsage()
/aosp12/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp1278 KeyedVector<String8, String8> infoMap; in android_media_MediaDrm_queryKeyStatus() local
1280 status_t err = drm->queryKeyStatus(sessionId, infoMap); in android_media_MediaDrm_queryKeyStatus()
1286 return KeyedVectorToHashMap(env, infoMap); in android_media_MediaDrm_queryKeyStatus()
/aosp12/build/blueprint/
H A Dcontext.go3960 infoMap := map[string]interface{}{
3967 err = headerTemplate.Execute(buf, infoMap)
4017 infoMap := map[string]interface{}{
4021 err = headerTemplate.Execute(buf, infoMap)
/aosp12/frameworks/av/drm/libmediadrm/
H A DDrmHal.cpp859 KeyedVector<String8, String8> &infoMap) const { in queryKeyStatus()
872 infoMap = toKeyedVector(map); in queryKeyStatus()