Home
last modified time | relevance | path

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

/aosp12/frameworks/layoutlib/bridge/src/android/content/res/
H A DBridgeAssetManager.java38 if (!(AssetManager.sSystem instanceof BridgeAssetManager)) { in initSystem()
41 AssetManager.sSystem = new BridgeAssetManager(); in initSystem()
43 return AssetManager.sSystem; in initSystem()
51 AssetManager.sSystem = null; in clearSystem()
/aosp12/frameworks/base/core/java/android/content/res/
H A DAssetManager.java75 @GuardedBy("sSync") static AssetManager sSystem = null; field in AssetManager
235 if (sSystem != null && !reinitialize) { in createSystemAssetsInZygoteLocked()
251 if (sSystem == null) { in createSystemAssetsInZygoteLocked()
252 sSystem = new AssetManager(true /*sentinel*/); in createSystemAssetsInZygoteLocked()
254 sSystem.setApkAssets(sSystemApkAssets, false /*invalidateCaches*/); in createSystemAssetsInZygoteLocked()
269 return sSystem; in getSystem()