Searched refs:gCount (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/libs/androidfw/ |
D | Asset.cpp | 52 static int32_t gCount = 0; variable 59 gCount++; in registerAsset() 70 ALOGI("Creating Asset %p #%d\n", asset, gCount); in registerAsset() 77 gCount--; in unregisterAsset() 93 ALOGI("Destroying Asset in %p #%d\n", asset, gCount); in unregisterAsset() 100 return gCount; in getGlobalCount()
|
D | AssetManager.cpp | 72 static volatile int32_t gCount = 0; variable 140 return gCount; in getGlobalCount() 145 int count = android_atomic_inc(&gCount) + 1; in AssetManager() 153 int count = android_atomic_dec(&gCount); in ~AssetManager()
|
D | ResourceTypes.cpp | 1792 static volatile int32_t gCount = 0; variable 1800 ALOGI("Creating ResXMLTree %p #%d\n", this, android_atomic_inc(&gCount)+1); in ResXMLTree() 1811 ALOGI("Creating ResXMLTree %p #%d\n", this, android_atomic_inc(&gCount)+1); in ResXMLTree() 1819 ALOGI("Destroying ResXMLTree in %p #%d\n", this, android_atomic_dec(&gCount)-1); in ~ResXMLTree()
|