Searched refs:sGetAllocationByteCount (Results 1 - 1 of 1) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DRecycleBitmapPool.java42 private static Method sGetAllocationByteCount; field in class:RecycleBitmapPool
47 sGetAllocationByteCount = Bitmap.class.getMethod("getAllocationByteCount");
59 if (sGetAllocationByteCount != null) {
61 return (Integer) sGetAllocationByteCount.invoke(bitmap);
69 sGetAllocationByteCount = null;
116 if (sGetAllocationByteCount == null || bitmap != null) {

Completed in 69 milliseconds