Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/
DComponentCallbacksController.java42 private List<ComponentCallbacks> mComponentCallbacks; field in ComponentCallbacksController
53 if (mComponentCallbacks == null) { in registerCallbacks()
54 mComponentCallbacks = new ArrayList<>(); in registerCallbacks()
56 mComponentCallbacks.add(callbacks); in registerCallbacks()
67 if (mComponentCallbacks == null || mComponentCallbacks.isEmpty()) { in unregisterCallbacks()
70 mComponentCallbacks.remove(callbacks); in unregisterCallbacks()
80 if (mComponentCallbacks != null) { in clearCallbacks()
81 mComponentCallbacks.clear(); in clearCallbacks()
117 if (mComponentCallbacks == null || mComponentCallbacks.isEmpty()) { in forAllComponentCallbacks()
120 callbacksArray = new ComponentCallbacks[mComponentCallbacks.size()]; in forAllComponentCallbacks()
[all …]