HomeSort by relevance Sort by last modified time
    Searched refs:onPropertySubscribe (Results 1 - 16 of 16) sorted by null

  /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
IVehicleNetworkHalMock.aidl 29 void onPropertySubscribe(int property, float sampleRate, int zones) = 3;
VehicleNetwork.java 60 void onPropertySubscribe(int property, float sampleRate, int zones);
678 public void onPropertySubscribe(int property, float sampleRate, int zones) {
683 vehicleNetwork.getHalMock().onPropertySubscribe(property, sampleRate, zones);
  /packages/services/Car/libvehiclenetwork/include/
IVehicleNetworkHalMock.h 44 virtual status_t onPropertySubscribe(int32_t property, float sampleRate, int32_t zones) = 0;
  /packages/services/Car/tests/libvehiclenetwork-native-test/
VehicleHalMock.h 53 virtual status_t onPropertySubscribe(int32_t /*property*/, float /*sampleRate*/,
VehicleNetworkAudioHelperTest.cpp 80 virtual status_t onPropertySubscribe(int32_t property, float /*sampleRate*/,
82 ALOGI("onPropertySubscribe 0x%x", property);
87 ALOGI("onPropertySubscribe 0x%x", property);
  /packages/services/Car/car-systemtest-lib/src/android/car/test/
VehicleHalEmulator.java 57 void onPropertySubscribe(int property, float sampleRate, int zones);
247 getHalPropertyLocked(property).handler.onPropertySubscribe(property, sampleRate, zones);
297 public synchronized void onPropertySubscribe(int property, float sampleRate, int zones) {
332 public void onPropertySubscribe(int property, float sampleRate, int zones) {
CarTestManager.java 175 public void onPropertySubscribe(int property, float sampleRate, int zones) {
180 testManager.getHalMock().onPropertySubscribe(property, sampleRate, zones);
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/
CarEmulator.java 180 public void onPropertySubscribe(int property, float sampleRate, int zones) {
200 public void onPropertySubscribe(int property, float sampleRate, int zones) {
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
AudioRoutingPolicyTest.java 56 public void onPropertySubscribe(int property, float sampleRate, int zones) {
CarAudioFocusTest.java 65 public void onPropertySubscribe(int property, float sampleRate, int zones) {
94 public void onPropertySubscribe(int property, float sampleRate, int zones) {
572 public void onPropertySubscribe(int property, float sampleRate, int zones) {
CarHvacManagerTest.java 196 public synchronized void onPropertySubscribe(int property, float sampleRate, int zones) {
197 Log.d(TAG, "onPropertySubscribe property " + property + " sampleRate " + sampleRate);
CarPowerManagementTest.java 195 public void onPropertySubscribe(int property, float sampleRate, int zones) {
CarRadioManagerTest.java 106 public synchronized void onPropertySubscribe(int property, float sampleRate, int zones) {
107 Log.d(TAG, "onPropertySubscribe property: " + property + " rate: " + sampleRate);
  /packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
VehicleNetworkMockedTest.java 431 void onPropertySubscribe(int property, float sampleRate, int zones);
476 public void onPropertySubscribe(int property, float sampleRate, int zones) {
479 fail("onPropertySubscribe for unknown property " + Integer.toHexString(property));
481 handler.onPropertySubscribe(property, sampleRate, zones);
521 public void onPropertySubscribe(int property, float sampleRate, int zones) {
  /packages/services/Car/libvehiclenetwork/native/
IVehicleNetworkHalMock.cpp 128 virtual status_t onPropertySubscribe(int32_t property, float sampleRate, int32_t zones) {
254 r = onPropertySubscribe(property, sampleRate, zones);
  /packages/services/Car/vehicle_network_service/
VehicleNetworkService.cpp 678 r = mHalMock->onPropertySubscribe(prop, sampleRate, newZones);
    [all...]

Completed in 965 milliseconds