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.java61 private static final ContextOwner NO_OWNER = new ContextOwner(0, 0);
70 private ContextOwner mNavContextOwner = NO_OWNER;
77 void notifyNavContextOwnerChanged(ContextOwner owner); in notifyNavContextOwnerChanged()
180 ContextOwner requester = new ContextOwner(uid, pid); in changeNavContextOwner()
181 ContextOwner newOwner = acquire ? requester : NO_OWNER; in changeNavContextOwner()
225 static class ContextOwner { class in ClusterNavigationService
229 ContextOwner(int uid, int pid) { in ContextOwner() method in ClusterNavigationService.ContextOwner
243 ContextOwner that = (ContextOwner) o; in equals()
DInstrumentClusterService.java59 import com.android.car.cluster.ClusterNavigationService.ContextOwner;
80 private static final ContextOwner NO_OWNER = new ContextOwner(0, 0);
98 private ContextOwner mNavContextOwner = NO_OWNER;
148 public void notifyNavContextOwnerChanged(ContextOwner owner) { in notifyNavContextOwnerChanged()
166 ContextOwner navContextOwner;
341 ContextOwner owner) { in notifyNavContextOwnerChanged()
DClusterHomeService.java304 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
314 ContextOwner contextOwner = getNavigationContextOwner(); in updateNavigationActivity()
364 private ComponentName getNavigationComponentByOwner(ContextOwner contextOwner) { in getNavigationComponentByOwner()
377 private ContextOwner getNavigationContextOwner() { in getNavigationContextOwner()
528 mNavContextOwner = new ContextOwner(uid, pid, getPackageManager()); in setNavigationContextOwner()
617 ContextOwner contextOwner = getNavigationContextOwner(); in getBitmap()
692 ContextOwner contextOwner = getNavigationContextOwner(); in getBitmap()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/cluster/
DClusterHomeServiceUnitTest.java59 import com.android.car.cluster.ClusterNavigationService.ContextOwner;
313 ContextOwner owner = new ContextOwner(/* uid= */ 123, /* pid= */ 456); in notifyNavContextOwnerChangedSendsNavigationState()