| /packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/ |
| D | VehicleNetwork.java | 52 void onHalError(int errorCode, int property, int operation); in onHalError() 60 void onPropertySubscribe(int property, float sampleRate, int zones); in onPropertySubscribe() 61 void onPropertyUnsubscribe(int property); in onPropertyUnsubscribe() 133 public VehiclePropConfigs listProperties(int property) { in listProperties() 165 public void setIntProperty(int property, int value) throws IllegalArgumentException { in setIntProperty() 173 public void setIntVectorProperty(int property, int[] values) throws IllegalArgumentException { in setIntVectorProperty() 181 public void setLongProperty(int property, long value) throws IllegalArgumentException { in setLongProperty() 189 public void setFloatProperty(int property, float value) throws IllegalArgumentException { in setFloatProperty() 197 public void setFloatVectorProperty(int property, float[] values) in setFloatVectorProperty() 208 public void setBooleanProperty(int property, boolean value) in setBooleanProperty() [all …]
|
| D | VehiclePropValueUtil.java | 34 public static VehiclePropValue createIntValue(int property, int value, long timestamp) { in createIntValue() 40 public static VehiclePropValue createIntVectorValue(int property, int[] values, in createIntVectorValue() 51 public static VehiclePropValue createFloatValue(int property, float value, long timestamp) { in createFloatValue() 57 public static VehiclePropValue createFloatVectorValue(int property, float[] values, in createFloatVectorValue() 68 public static VehiclePropValue createLongValue(int property, long value, long timestamp) { in createLongValue() 74 public static VehiclePropValue createStringValue(int property, String value, long timestamp) { in createStringValue() 80 public static VehiclePropValue createBooleanValue(int property, boolean value, long timestamp) { in createBooleanValue() 86 public static VehiclePropValue createBytesValue(int property, byte[] value, long timestamp) { in createBytesValue() 92 public static VehiclePropValue createZonedIntValue(int property, int zone, int value, in createZonedIntValue() 100 public static VehiclePropValue createZonedIntVectorValue(int property, int zone, int[] values, in createZonedIntVectorValue() [all …]
|
| D | IVehicleNetwork.aidl | 30 VehiclePropConfigsParcelable listProperties(int property) = 0; in listProperties() 35 void subscribe(in IVehicleNetworkListener listener, int property, float sampleRate, in subscribe() 37 void unsubscribe(in IVehicleNetworkListener listener, int property) = 4; in unsubscribe() 44 void injectHalError(int errorCode, int property, int operation) = 8; in injectHalError()
|
| D | VehiclePropConfigUtil.java | 29 public static VehiclePropConfig createStaticStringProperty(int property) { in createStaticStringProperty() 40 int property, int propAccess, int changeType, int valueType, int zones, in createZonedProperty() 56 int property, int propAccess, int changeType, int valueType, int configFlags) { in createProperty() 66 public static VehiclePropConfig.Builder getBuilder(int property, int access, int changeMode, in getBuilder()
|
| D | IVehicleNetworkHalMock.aidl | 29 void onPropertySubscribe(int property, float sampleRate, int zones) = 3; in onPropertySubscribe() 30 void onPropertyUnsubscribe(int property) = 4; in onPropertyUnsubscribe()
|
| D | IVehicleNetworkListener.aidl | 28 void onHalError(int errorCode, int property, int operation) = 1; in onHalError()
|
| /packages/services/Car/car-systemtest-lib/src/android/car/test/ |
| D | VehicleHalEmulator.java | 57 void onPropertySubscribe(int property, float sampleRate, int zones); in onPropertySubscribe() 58 void onPropertyUnsubscribe(int property); in onPropertyUnsubscribe() 111 public synchronized void removeProperty(int property) { in removeProperty() 150 public static void assertPropertyForGet(VehiclePropConfig config, int property) { in assertPropertyForGet() 166 public static void assertPropertyForSubscribe(VehiclePropConfig config, int property, in assertPropertyForSubscribe() 175 public static void assertProperty(VehiclePropConfig config, int property) { in assertProperty() 189 int property = 0; in populateDefaultPropertiesIfNecessary() local 246 private synchronized void handlePropertySubscribe(int property, float sampleRate, int zones) { in handlePropertySubscribe() 250 private synchronized void handlePropertyUnsubscribe(int property) { in handlePropertyUnsubscribe() 254 private VehicleHalProperty getHalPropertyLocked(int property) { in getHalPropertyLocked() [all …]
|
| D | CarTestManager.java | 86 public boolean isPropertySupported(int property) { in isPropertySupported() 175 public void onPropertySubscribe(int property, float sampleRate, int zones) { in onPropertySubscribe() 184 public void onPropertyUnsubscribe(int property) { in onPropertyUnsubscribe()
|
| D | ICarTest.aidl | 31 boolean isPropertySupported(int property) = 4; in isPropertySupported()
|
| /packages/services/Car/libvehiclenetwork/native/ |
| D | VehicleNetwork.cpp | 51 void VehicleNetworkEventMessageHandler::handleHalError(int32_t errorCode, int32_t property, in handleHalError() 177 status_t VehicleNetwork::setInt32Property(int32_t property, int32_t value) { in setInt32Property() 185 status_t VehicleNetwork::getInt32Property(int32_t property, int32_t* value, int64_t* timestamp) { in getInt32Property() 196 status_t VehicleNetwork::setInt64Property(int32_t property, int64_t value) { in setInt64Property() 204 status_t VehicleNetwork::getInt64Property(int32_t property, int64_t* value, int64_t* timestamp) { in getInt64Property() 213 status_t VehicleNetwork::setFloatProperty(int32_t property, float value) { in setFloatProperty() 221 status_t VehicleNetwork::getFloatProperty(int32_t property, float* value, int64_t* timestamp) { in getFloatProperty() 230 status_t VehicleNetwork::setStringProperty(int32_t property, const String8& value) { in setStringProperty() 239 status_t VehicleNetwork::getStringProperty(int32_t property, String8& value, int64_t* timestamp) { in getStringProperty() 251 sp<VehiclePropertiesHolder> VehicleNetwork::listProperties(int32_t property) { in listProperties() [all …]
|
| D | IVehicleNetwork.cpp | 63 virtual sp<VehiclePropertiesHolder> listProperties(int32_t property) { in listProperties() 143 virtual status_t subscribe(const sp<IVehicleNetworkListener> &listener, int32_t property, in subscribe() 155 virtual void unsubscribe(const sp<IVehicleNetworkListener> &listener, int32_t property) { in unsubscribe() 201 status_t injectHalError(int32_t errorCode, int32_t property, int32_t operation) { in injectHalError() 261 int32_t property = data.readInt32(); in onTransact() local 323 int32_t property = data.readInt32(); in onTransact() local 337 int32_t property = data.readInt32(); in onTransact() local 405 int32_t property = data.readInt32(); in onTransact() local
|
| D | IVehicleNetworkHalMock.cpp | 128 virtual status_t onPropertySubscribe(int32_t property, float sampleRate, int32_t zones) { in onPropertySubscribe() 138 virtual void onPropertyUnsubscribe(int32_t property) { in onPropertyUnsubscribe() 251 int32_t property = data.readInt32(); in onTransact() local 260 int32_t property = data.readInt32(); in onTransact() local
|
| /packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/ |
| D | VehicleNetworkMockedTest.java | 382 public void onHalError(int errorCode, int property, int operation) { in onHalError() 430 VehiclePropValue onPropertyGet(VehiclePropValue property); in onPropertyGet() 431 void onPropertySubscribe(int property, float sampleRate, int zones); in onPropertySubscribe() 432 void onPropertyUnsubscribe(int property); in onPropertyUnsubscribe() 441 int property = config.getProp(); in registerProperty() local 456 int property = value.getProp(); in onPropertySet() local 466 int property = value.getProp(); in onPropertyGet() local 476 public void onPropertySubscribe(int property, float sampleRate, int zones) { in onPropertySubscribe() 485 public void onPropertyUnsubscribe(int property) { in onPropertyUnsubscribe() 493 public synchronized VehiclePropertyHandler getPropertyHandler(int property) { in getPropertyHandler() [all …]
|
| /packages/services/Car/tests/libvehiclenetwork-native-test/ |
| D | IVehicleNetworkTestListener.h | 49 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation) { in onHalError() 68 bool waitForEvent(int32_t property, nsecs_t reltime) { in waitForEvent() 82 int getEventCount(int32_t property) { in getEventCount() 102 bool isErrorMatching(int32_t errorCode, int32_t property, int32_t operation) { in isErrorMatching() 108 int getEventCountLocked(int32_t property) { in getEventCountLocked()
|
| D | VehicleNetworkTestListener.h | 77 bool waitForEvent(int32_t property, int initialEventCount, nsecs_t reltime) { in waitForEvent() 90 int getEventCount(int32_t property) { in getEventCount() 108 int getEventCountLocked(int32_t property) { in getEventCountLocked()
|
| /packages/services/Car/tests/vehiclenetworkservice_unit_tests/ |
| D | VehiclePropertyAccessControlForTesting.cpp | 24 …l VehiclePropertyAccessControlForTesting::accessToInt(int32_t* const value,const xmlChar* property, in accessToInt() 29 bool VehiclePropertyAccessControlForTesting::updateOrCreate(int32_t uid, int32_t property, int32_t … in updateOrCreate() 49 bool VehiclePropertyAccessControlForTesting::getAccessToProperty(int32_t property, std::map<int32_t… in getAccessToProperty() argument
|
| /packages/services/Car/tests/android_car_api_test/src/com/android/car/apitest/ |
| D | CarHvacManagerTest.java | 57 private void assertTypeAndZone(CarPropertyConfig property) { in assertTypeAndZone() 94 private void checkIntMinMax(CarPropertyConfig<Integer> property) { in checkIntMinMax() 119 private void checkFloatMinMax(CarPropertyConfig<Float> property) { in checkFloatMinMax()
|
| /packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
| D | CustomVCardEntry.java | 40 public void addProperty(VCardProperty property) { in addProperty() 42 mAllProperties.put(property.getName(), property); in addProperty() local
|
| /packages/services/Car/vehicle_network_service/ |
| D | VehiclePropertyAccessControl.cpp | 72 const xmlChar* property, in accessToInt() 101 bool VehiclePropertyAccessControl::updateOrCreate(int32_t uid, int32_t property, in updateOrCreate() 133 xmlChar* property = NULL; in populate() local 292 int32_t property; in dump() local 318 bool VehiclePropertyAccessControl::testAccess(int32_t property, int32_t uid, in testAccess()
|
| D | VehicleNetworkService.cpp | 264 bool VehicleNetworkService::isOperationAllowed(int32_t property, bool isWrite) { in isOperationAllowed() 317 int32_t property = mPropertyToClientsMap.keyAt(i); in binderDied() local 322 for (int32_t property : propertiesToUnsubscribe) { in binderDied() local 326 for (int32_t property : propertiesToUnsubscribe) { in binderDied() local 343 int VehicleNetworkService::errorCallback(int32_t errorCode, int32_t property, int32_t operation) { in errorCallback() 399 vehicle_prop_config_t const * VehicleNetworkService::findConfigLocked(int32_t property) { in findConfigLocked() 410 bool VehicleNetworkService::isGettableLocked(int32_t property) { in isGettableLocked() 422 bool VehicleNetworkService::isSettableLocked(int32_t property, int32_t valueType) { in isSettableLocked() 439 bool VehicleNetworkService::isSubscribableLocked(int32_t property) { in isSubscribableLocked() 472 sp<VehiclePropertiesHolder> VehicleNetworkService::listProperties(int32_t property) { in listProperties() [all …]
|
| D | VehicleNetworkService.h | 132 SubscriptionInfo* getSubscriptionInfo(int32_t property) { in getSubscriptionInfo() 141 void setSubscriptionInfo(int32_t property, float sampleRate, int32_t zones) { in setSubscriptionInfo() 147 bool removePropertyAndCheckIfActive(int32_t property) { in removePropertyAndCheckIfActive() 217 void dispatchHalError(int32_t errorCode, int32_t property, int32_t operation) { in dispatchHalError()
|
| /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/ |
| D | CarEmulator.java | 180 public void onPropertySubscribe(int property, float sampleRate, int zones) { in onPropertySubscribe() 184 public void onPropertyUnsubscribe(int property) { in onPropertyUnsubscribe() 200 public void onPropertySubscribe(int property, float sampleRate, int zones) { in onPropertySubscribe() 204 public void onPropertyUnsubscribe(int property) { in onPropertyUnsubscribe()
|
| /packages/services/Car/service/src/com/android/car/hal/ |
| D | VehicleHal.java | 224 private void assertServiceOwnerLocked(HalServiceBase service, int property) { in assertServiceOwnerLocked() 236 public void subscribeProperty(HalServiceBase service, int property, in subscribeProperty() 245 public void unsubscribeProperty(HalServiceBase service, int property) { in unsubscribeProperty() 292 public void onHalError(int errorCode, int property, int operation) { in onHalError()
|
| D | InfoHalService.java | 125 private void logUnexpectedEvent(int property) { in logUnexpectedEvent() 130 private static String getInfoStringFromProperty(int property) { in getInfoStringFromProperty()
|
| /packages/services/Car/tests/carservice_test/src/com/android/car/test/ |
| D | CarRadioManagerTest.java | 106 public synchronized void onPropertySubscribe(int property, float sampleRate, int zones) { in onPropertySubscribe() 116 public synchronized void onPropertyUnsubscribe(int property) { in onPropertyUnsubscribe()
|