A  B  C  F  G  I  L  M  P  S  T  U  V 

C

clearStaticPool(Application) - function in leakcanary.ViewLocationHolderLeakFix
Clears the ViewGroup.ViewLocationHolder.sPool static pool.
CONNECTIVITY_MANAGER - enum entry in leakcanary.AndroidLeakFixes

ConnectivityManager has a sInstance field that is set when the first ConnectivityManager instance is created. ConnectivityManager has a mContext field. When calling activity.getSystemService(Context.CONNECTIVITY_SERVICE) , the first ConnectivityManager instance is created with the activity context and stored in sInstance. That activity context then leaks forever.

This fix makes sure the connectivity manager is created with the application context.

Tracked here: https://code.google.com/p/android/issues/detail?id=198852 Introduced here: https://github.com/android/platform_frameworks_base/commit/e0bef71662d81caaaa0d7214fb0bef5d39996a69

A  B  C  F  G  I  L  M  P  S  T  U  V