Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/cluster/
DClusterNavigationService.java59 private static final ContextOwner NO_OWNER = new ContextOwner(0, 0);
68 private ContextOwner mNavContextOwner = NO_OWNER;
75 void notifyNavContextOwnerChanged(ContextOwner owner); in notifyNavContextOwnerChanged()
174 ContextOwner requester = new ContextOwner(uid, pid); in changeNavContextOwner()
175 ContextOwner newOwner = acquire ? requester : NO_OWNER; in changeNavContextOwner()
219 static class ContextOwner { class in ClusterNavigationService
223 ContextOwner(int uid, int pid) { in ContextOwner() method in ClusterNavigationService.ContextOwner
237 ContextOwner that = (ContextOwner) o; in equals()
DInstrumentClusterService.java56 import com.android.car.cluster.ClusterNavigationService.ContextOwner;
77 private static final ContextOwner NO_OWNER = new ContextOwner(0, 0);
94 private ContextOwner mNavContextOwner = NO_OWNER;
146 public void notifyNavContextOwnerChanged(ContextOwner owner) { in notifyNavContextOwnerChanged()
164 ContextOwner navContextOwner;
322 ContextOwner owner) { in notifyNavContextOwnerChanged()
DClusterHomeService.java271 public void notifyNavContextOwnerChanged(ClusterNavigationService.ContextOwner owner) { in notifyNavContextOwnerChanged()
/packages/services/Car/car-lib/src/android/car/cluster/renderer/
DInstrumentClusterRenderingService.java118 private ContextOwner mNavContextOwner;
132 private static class ContextOwner { class in InstrumentClusterRenderingService
138 ContextOwner(int uid, int pid, PackageManager packageManager) { in ContextOwner() method in InstrumentClusterRenderingService.ContextOwner
319 ContextOwner contextOwner = getNavigationContextOwner(); in updateNavigationActivity()
369 private ComponentName getNavigationComponentByOwner(ContextOwner contextOwner) { in getNavigationComponentByOwner()
382 private ContextOwner getNavigationContextOwner() { in getNavigationContextOwner()
540 mNavContextOwner = new ContextOwner(uid, pid, getPackageManager()); in setNavigationContextOwner()
630 ContextOwner contextOwner = getNavigationContextOwner(); in getBitmap()
705 ContextOwner contextOwner = getNavigationContextOwner(); in getBitmap()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/cluster/
DClusterHomeServiceUnitTest.java55 import com.android.car.cluster.ClusterNavigationService.ContextOwner;
289 ContextOwner owner = new ContextOwner(/* uid= */ 123, /* pid= */ 456); in notifyNavContextOwnerChangedSendsNavigationState()