Home
last modified time | relevance | path

Searched refs:Cache (Results 1 – 25 of 71) sorted by relevance

123

/aosp12/hardware/interfaces/graphics/composer/2.1/utils/resources/
H A DComposerResources.cpp393 return getHandle(display, 0, slot, Cache::CLIENT_TARGET, fromCache, rawHandle, outBufferHandle, in getDisplayClientTarget()
401 return getHandle(display, 0, slot, Cache::OUTPUT_BUFFER, fromCache, rawHandle, outBufferHandle, in getDisplayOutputBuffer()
409 return getHandle(display, layer, slot, Cache::LAYER_BUFFER, fromCache, rawHandle, in getLayerBuffer()
417 return getHandle(display, layer, 0, Cache::LAYER_SIDEBAND_STREAM, false, rawHandle, in getLayerSidebandStream()
456 Error ComposerResources::getHandle(Display display, Layer layer, uint32_t slot, Cache cache, in getHandle()
476 const bool needLayerResource = (cache == ComposerResources::Cache::LAYER_BUFFER || in getHandle()
477 cache == ComposerResources::Cache::LAYER_SIDEBAND_STREAM); in getHandle()
487 case ComposerResources::Cache::CLIENT_TARGET: in getHandle()
491 case ComposerResources::Cache::OUTPUT_BUFFER: in getHandle()
495 case ComposerResources::Cache::LAYER_BUFFER: in getHandle()
[all …]
/aosp12/packages/modules/DnsResolver/
H A Dres_cache.cpp948 struct Cache { struct
949 Cache() { in Cache() argument
953 ~Cache() { flush(); } in ~Cache() argument
1003 cache = std::make_unique<Cache>(); in NetConfig() argument
1025 std::unique_ptr<Cache> cache;
1069 ri = (Cache::pending_req_info*)calloc(1, sizeof(Cache::pending_req_info)); in cache_has_pending_request_locked()
1115 static void cache_dump_mru_locked(Cache* cache) { in cache_dump_mru_locked()
1188 static void _cache_remove_oldest(Cache* cache) { in _cache_remove_oldest()
1332 Cache* cache = NULL; in resolv_cache_add()
1401 Cache* cache = nullptr; in resolv_gethostbyaddr_from_cache()
[all …]
/aosp12/frameworks/native/libs/renderengine/skia/
H A DCache.h23 class Cache {
28 Cache() = default;
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/
H A DThumbnailCache.java54 private final Cache mCache;
63 mCache = new Cache(maxCacheSizeInBytes); in ThumbnailCache()
298 private final class Cache extends LruCache<CacheKey, Entry> { class in ThumbnailCache
300 private Cache(int maxSizeBytes) { in Cache() method in ThumbnailCache.Cache
/aosp12/bionic/libc/dns/resolv/
H A Dres_cache.c1286 } Cache; typedef
1290 Cache* cache;
1409 Cache* cache; in _resolv_cache_query_failed()
1428 _cache_flush_locked( Cache* cache ) in _cache_flush_locked()
1504 _cache_dump_mru( Cache* cache ) in _cache_dump_mru()
1574 _cache_lookup_p( Cache* cache, in _cache_lookup_p()
1600 _cache_add_p( Cache* cache, in _cache_add_p()
1618 _cache_remove_p( Cache* cache, in _cache_remove_p()
1635 _cache_remove_oldest( Cache* cache ) in _cache_remove_oldest()
1685 Cache* cache; in _resolv_cache_lookup()
[all …]
/aosp12/frameworks/av/media/codec2/hidl/client/
H A Dclient.cpp175 class Codec2Client::Cache { class in android::Codec2Client
195 Cache() = default;
245 static std::vector<Cache>& List() { in List()
246 static std::vector<Cache> sCaches{[]() { in List()
248 std::vector<Cache> caches(numServices); in List()
800 return Cache::List()[mServiceIndex].getTraits(); in listComponents()
1024 for (size_t index = Cache::List().size(); index > 0; ) { in ForAllServices()
1039 Cache& cache = Cache::List()[index]; in ForAllServices()
1147 for (Cache& cache : Cache::List()) { in ListComponents()
1174 std::shared_ptr<Codec2Client> client = Cache::List()[index].getClient(); in CreateInputSurface()
[all …]
/aosp12/frameworks/base/core/java/android/content/pm/verify/domain/
H A DDomainVerificationRequest.java136 Parcelling.Cache.get(
140 sParcellingForPackageNames = Parcelling.Cache.put(
H A DDomainVerificationInfo.java322 Parcelling.Cache.get(
326 sParcellingForIdentifier = Parcelling.Cache.put(
H A DDomainVerificationUserState.java293 Parcelling.Cache.get(
297 sParcellingForIdentifier = Parcelling.Cache.put(
/aosp12/packages/services/Car/cpp/watchdog/server/
H A Dcarwatchdogd.rc46 # Cache size for the periodically collected records
49 # Cache size for the periodically monitored records
/aosp12/frameworks/base/core/java/android/content/pm/
H A DProcessInfo.java132 Parcelling.Cache.get(
136 sParcellingForDeniedPermissions = Parcelling.Cache.put(
/aosp12/frameworks/base/core/java/android/view/inputmethod/
H A DInlineSuggestion.java614 Parcelling.Cache.get(
618 sParcellingForInlineContentCallback = Parcelling.Cache.put(
625 Parcelling.Cache.get(
629 sParcellingForInlineTooltipUi = Parcelling.Cache.put(
/aosp12/frameworks/base/core/java/android/content/pm/parsing/component/
H A DParsedProcess.java132 Parcelling.Cache.get(
136 sParcellingForDeniedPermissions = Parcelling.Cache.put(
H A DParsedPermission.java38 private static ForStringSet sForStringSet = Parcelling.Cache.getOrCreate(ForStringSet.class);
H A DParsedComponent.java46 private static ParsedIntentInfo.ListParceler sForIntentInfos = Parcelling.Cache.getOrCreate(
/aosp12/frameworks/base/core/java/android/companion/
H A DWifiDeviceFilter.java182 Parcelling.Cache.get(
186 sParcellingForNamePattern = Parcelling.Cache.put(
/aosp12/frameworks/base/libs/hwui/
H A DVectorDrawable.h657 class Cache {
663 bool allocateBitmapIfNeeded(Cache& cache, int width, int height);
678 Cache mStagingCache;
679 Cache mCache;
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/resources/include/composer-resources/2.1/
H A DComposerResources.h249 enum class Cache { enum
256 Error getHandle(Display display, Layer layer, uint32_t slot, Cache cache, bool fromCache,
/aosp12/frameworks/base/core/java/com/android/internal/util/
H A DParcelling.java56 class Cache { class
57 private Cache() {} in Cache() method in Parcelling.Cache
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashscreenContentDrawer.java851 private static class Cache { class in SplashscreenContentDrawer.ColorCache
858 Cache(int hash) { in Cache() method in SplashscreenContentDrawer.ColorCache.Cache
863 static class WindowColor extends Cache {
872 static class IconColor extends Cache {
910 private static <T extends Cache> T getCache(T[] caches, int hash, int[] outLeastUsedIndex) { in getCache()
/aosp12/packages/modules/NeuralNetworks/driver/cache/
H A DAndroid.bp28 "-DLOG_TAG=\"Cache\"",
/aosp12/frameworks/native/opengl/specs/
H A DEGL_ANDROID_blob_cache.txt118 semantics of these callback functions are described in Section 3.9.1 (Cache
121 Cache functions may only be specified once during the lifetime of an
135 3.9.1 Cache Operations
/aosp12/frameworks/native/libs/renderengine/
H A DAndroid.bp88 "skia/Cache.cpp",
/aosp12/frameworks/base/core/java/android/content/pm/parsing/
H A DParsingPackageImpl.java96 public static ForBoolean sForBoolean = Parcelling.Cache.getOrCreate(ForBoolean.class);
97 public static ForInternedString sForInternedString = Parcelling.Cache.getOrCreate(
99 public static ForInternedStringArray sForInternedStringArray = Parcelling.Cache.getOrCreate(
101 public static ForInternedStringList sForInternedStringList = Parcelling.Cache.getOrCreate(
104 Parcelling.Cache.getOrCreate(ForInternedStringValueMap.class);
105 public static ForStringSet sForStringSet = Parcelling.Cache.getOrCreate(ForStringSet.class);
107 Parcelling.Cache.getOrCreate(ForInternedStringSet.class);
109 Parcelling.Cache.getOrCreate(ParsedIntentInfo.StringPairListParceler.class);
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/
H A Dokhttp-3.12.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/proguard/ okhttp3/ ...

123