Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/app/
H A DSystemServiceRegistry.java1903 private final int mCacheIndex; field in SystemServiceRegistry.CachedServiceFetcher
1909 mCacheIndex = sServiceCacheSize++; in CachedServiceFetcher()
1925 T service = (T) cache[mCacheIndex]; in getService()
1937 if (gates[mCacheIndex] == ContextImpl.STATE_READY in getService()
1938 || gates[mCacheIndex] == ContextImpl.STATE_NOT_FOUND) { in getService()
1939 gates[mCacheIndex] = ContextImpl.STATE_UNINITIALIZED; in getService()
1946 if (gates[mCacheIndex] == ContextImpl.STATE_UNINITIALIZED) { in getService()
1948 gates[mCacheIndex] = ContextImpl.STATE_INITIALIZING; in getService()
1968 cache[mCacheIndex] = service; in getService()
1969 gates[mCacheIndex] = newState; in getService()
[all …]