OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bInterface
(Results
1 - 3
of
3
) sorted by null
/packages/services/Car/service/src/com/android/car/
BinderInterfaceContainer.java
50
void onBinderDeath(BinderInterface<T>
bInterface
);
63
BinderInterface<T>
bInterface
= mBinders.get(binder);
64
if (
bInterface
!= null) {
67
bInterface
= new BinderInterface<T>(this, binderInterface);
69
binder.linkToDeath(
bInterface
, 0);
73
mBinders.put(binder,
bInterface
);
80
BinderInterface<T>
bInterface
= mBinders.get(binder);
81
if (
bInterface
!= null) {
84
binder.unlinkToDeath(
bInterface
, 0);
96
public void addBinderInterface(BinderInterface<T>
bInterface
) {
[
all
...]
AppContextService.java
208
BinderInterfaceContainer.BinderInterface<IAppContextListener>
bInterface
) {
209
ClientInfo info = (ClientInfo)
bInterface
;
212
resetActiveContexts(
bInterface
.binderInterface, ownedContexts);
CarProjectionService.java
207
BinderInterfaceContainer.BinderInterface<ICarProjectionListener>
bInterface
) {
208
unregsiterProjectionListener(
bInterface
.binderInterface);
Completed in 2692 milliseconds