Home
last modified time | relevance | path

Searched refs:CarPropertyServiceClient (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/service/src/com/android/car/
DCarPropertyService.java78 import com.android.car.property.CarPropertyServiceClient;
175 private final Map<IBinder, CarPropertyServiceClient> mClientMap = new ArrayMap<>();
177 private final SubscriptionManager<CarPropertyServiceClient> mSubscriptionManager =
180 private final SparseArray<SparseArray<CarPropertyServiceClient>> mSetOpClientByAreaIdByPropId =
404 private @Nullable CarPropertyServiceClient getOrCreateClientForBinderLocked( in getOrCreateClientForBinderLocked()
407 CarPropertyServiceClient client = mClientMap.get(listenerBinder); in getOrCreateClientForBinderLocked()
411 client = new CarPropertyServiceClient(carPropertyEventListener, in getOrCreateClientForBinderLocked()
431 CarPropertyServiceClient finalClient; in registerListener()
435 CarPropertyServiceClient client = getOrCreateClientForBinderLocked( in registerListener()
557 CarPropertyServiceClient client) { in getAndDispatchPropertyInitValue()
[all …]
/packages/services/Car/service/src/com/android/car/property/
DCarPropertyServiceClient.java37 public final class CarPropertyServiceClient extends CarPropertyEventController class
39 private static final String TAG = CarLog.tagFor(CarPropertyServiceClient.class);
49 public CarPropertyServiceClient(ICarPropertyEventListener listener, in CarPropertyServiceClient() method in CarPropertyServiceClient
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/property/
DCarPropertyServiceClientUnitTest.java100 private CarPropertyServiceClient mCarPropertyServiceClient;
107 private CarPropertyServiceClient.UnregisterCallback mUnregisterCallback;
114 mCarPropertyServiceClient = new CarPropertyServiceClient(mICarPropertyEventListener, in setup()