Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/
H A DBinderInterfaceContainer.java65 void onBinderDeath(BinderInterface<T> bInterface); in onBinderDeath() argument
96 if (bInterface != null) { in addBinder()
101 binder.linkToDeath(bInterface, 0); in addBinder()
105 mBinders.put(binder, bInterface); in addBinder()
117 if (bInterface == null) { in removeBinder()
120 binder.unlinkToDeath(bInterface, 0); in removeBinder()
142 binder.linkToDeath(bInterface, 0); in addBinderInterface()
146 mBinders.put(binder, bInterface); in addBinderInterface()
176 binder.unlinkToDeath(bInterface, 0); in clear()
184 mEventHandler.onBinderDeath(bInterface); in handleBinderDeath()
[all …]
H A DAppFocusService.java78 mAllBinderEventHandler = bInterface -> { /* nothing to do.*/ };
287 BinderInterfaceContainer.BinderInterface<IAppFocusOwnershipCallback> bInterface) { in onBinderDeath() argument
288 OwnershipClientInfo info = (OwnershipClientInfo) bInterface; in onBinderDeath()
291 abandonAppFocus(bInterface.binderInterface, appType); in onBinderDeath()