Searched defs:subscribeProperty (Results 1 - 2 of 2) sorted by relevance

/packages/services/Car/service/src/com/android/car/hal/
H A DPropertyHalService.java209 public void subscribeProperty(int propId, float rate) { method in class:PropertyHalService
211 Log.d(TAG, "subscribeProperty propId=0x" + toHexString(propId) + ", rate=" + rate);
228 mVehicleHal.subscribeProperty(this, halPropId, rate);
H A DVehicleHal.java219 * @see #subscribeProperty(HalServiceBase, int, float, int)
221 public void subscribeProperty(HalServiceBase service, int property) method in class:VehicleHal
223 subscribeProperty(service, property, 0f, SubscribeFlags.EVENTS_FROM_CAR);
229 * @see #subscribeProperty(HalServiceBase, int, float, int)
231 public void subscribeProperty(HalServiceBase service, int property, float sampleRateHz) method in class:VehicleHal
233 subscribeProperty(service, property, sampleRateHz, SubscribeFlags.EVENTS_FROM_CAR);
245 public void subscribeProperty(HalServiceBase service, int property, method in class:VehicleHal
248 Log.i(CarLog.TAG_HAL, "subscribeProperty, service:" + service

Completed in 55 milliseconds