Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/cluster/
H A DClusterNavigationService.java50 private static final ContextOwner NO_OWNER = new ContextOwner(0, 0);
58 private ContextOwner mNavContextOwner = NO_OWNER;
63 void notifyNavContextOwnerChanged(ContextOwner owner); in notifyNavContextOwnerChanged()
161 ContextOwner requester = new ContextOwner(uid, pid); in changeNavContextOwner()
162 ContextOwner newOwner = acquire ? requester : NO_OWNER; in changeNavContextOwner()
183 static class ContextOwner { class in ClusterNavigationService
187 ContextOwner(int uid, int pid) { in ContextOwner() method in ClusterNavigationService.ContextOwner
201 ContextOwner that = (ContextOwner) o; in equals()
H A DInstrumentClusterService.java56 import com.android.car.cluster.ClusterNavigationService.ContextOwner;
73 private static final ContextOwner NO_OWNER = new ContextOwner(0, 0);
89 private ContextOwner mNavContextOwner = NO_OWNER;
142 public void notifyNavContextOwnerChanged(ContextOwner owner) { in notifyNavContextOwnerChanged()
160 ContextOwner navContextOwner;
316 ContextOwner owner) { in notifyNavContextOwnerChanged()
H A DClusterHomeService.java270 public void notifyNavContextOwnerChanged(ClusterNavigationService.ContextOwner owner) { in notifyNavContextOwnerChanged()
/aosp12/packages/services/Car/car-lib/src/android/car/cluster/renderer/
H A DInstrumentClusterRenderingService.java112 private ContextOwner mNavContextOwner;
126 private static class ContextOwner { class in InstrumentClusterRenderingService
132 ContextOwner(int uid, int pid, PackageManager packageManager) { in ContextOwner() method in InstrumentClusterRenderingService.ContextOwner
305 ContextOwner contextOwner = getNavigationContextOwner(); in updateNavigationActivity()
355 private ComponentName getNavigationComponentByOwner(ContextOwner contextOwner) { in getNavigationComponentByOwner()
368 private ContextOwner getNavigationContextOwner() { in getNavigationContextOwner()
516 mNavContextOwner = new ContextOwner(uid, pid, getPackageManager()); in setNavigationContextOwner()
604 ContextOwner contextOwner = getNavigationContextOwner(); in getBitmap()
677 ContextOwner contextOwner = getNavigationContextOwner(); in getBitmap()
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/cluster/
H A DClusterHomeServiceUnitTest.java53 import com.android.car.cluster.ClusterNavigationService.ContextOwner;
263 ContextOwner owner = new ContextOwner(/* uid= */ 123, /* pid= */ 456); in notifyNavContextOwnerChangedSendsNavigationState()