Searched refs:binderInterface (Results 1 – 5 of 5) sorted by relevance
/packages/services/Car/service/src/com/android/car/ |
D | BinderInterfaceContainer.java | 45 public final T binderInterface; field in BinderInterfaceContainer.BinderInterface 48 public BinderInterface(BinderInterfaceContainer<T> container, T binderInterface) { in BinderInterface() argument 50 this.binderInterface = binderInterface; in BinderInterface() 55 binderInterface.asBinder().unlinkToDeath(this, 0); in binderDied() 92 public void addBinder(T binderInterface) { in addBinder() argument 93 IBinder binder = binderInterface.asBinder(); in addBinder() 99 bInterface = new BinderInterface<T>(this, binderInterface); in addBinder() 113 public void removeBinder(T binderInterface) { in removeBinder() argument 114 IBinder binder = binderInterface.asBinder(); in removeBinder() 128 public BinderInterface<T> getBinderInterface(T binderInterface) { in getBinderInterface() argument [all …]
|
D | AppFocusService.java | 103 StaticBinderInterface binderInterface) { in AppFocusService() argument 105 mBinderInterface = binderInterface; in AppFocusService() 205 ownerInfo.binderInterface, appType); in requestAppFocus() 216 info.binderInterface, appType); in requestAppFocus() 229 mDispatchHandler.requestAppFocusChangeDispatch(clientInfo.binderInterface, in requestAppFocus() 278 mDispatchHandler.requestAppFocusChangeDispatch(clientInfo.binderInterface, in abandonAppFocus() 312 abandonAppFocus(bInterface.binderInterface, appType); in onBinderDeath()
|
D | CarProjectionService.java | 557 listener.binderInterface.onProjectionStatusChanged( in notifyProjectionStatusChanged() 895 unregisterKeyEventHandler(iface.binderInterface); in onBinderDeath() 945 eventHandler.binderInterface.onKeyEvent(keyEvent); in onKeyEvent()
|
/packages/services/Car/car-lib/src/com/android/car/internal/util/ |
D | BinderKeyValueContainer.java | 69 private BinderInterfaceHolder(BinderKeyValueContainer<K, V> map, V binderInterface, in BinderInterfaceHolder() argument 72 this.mBinderInterface = binderInterface; in BinderInterfaceHolder() 119 public void put(K key, V binderInterface) { in put() argument 120 IBinder binder = binderInterface.asBinder(); in put() 122 new BinderInterfaceHolder<>(this, binderInterface, binder); in put()
|
/packages/services/Car/tests/carservice_unit_test/src/android/car/ |
D | BinderInterfaceContainerTest.java | 51 assertThat(interfaceList.get(0).binderInterface).isEqualTo(interfaceOne); in getInterfaces_returnsCopy()
|