Home
last modified time | relevance | path

Searched defs:propId (Results 1 – 25 of 147) sorted by relevance

123456

/aosp_15_r20/packages/services/Car/service/src/com/android/car/hal/fakevhal/
DFakeVehicleStub.java329 private int getAccess(int propId, int areaId) { in getAccess()
357 int propId = requestedPropValue.getPropId(); in get() local
404 int propId = propValue.getPropId(); in set() local
487 public void unsubscribe(int propId) throws RemoteException { in unsubscribe()
520 ContinuousPropUpdater(FakeVhalSubscriptionClient client, int propId, int areaId, in ContinuousPropUpdater()
653 int propId = configDeclaration.getConfig().prop; in extractPropValues() local
745 int propId = propConfig.getPropId(); in overrideConfigsForSpecialProp() local
758 private boolean isPropertyGlobal(int propId) { in isPropertyGlobal()
771 private HalPropValue buildHalPropValue(int propId, int areaId, long timestamp, in buildHalPropValue()
787 private static boolean isSpecialProperty(int propId) { in isSpecialProperty()
[all …]
/aosp_15_r20/packages/services/Car/libs/car-test-lib/src/android/car/testapi/
DFakeCarPropertyService.java85 int propId = subscriptions.get(i).propertyId; in registerListener() local
100 public void unregisterListener(int propId, ICarPropertyEventListener listener) in unregisterListener()
241 public String getReadPermission(int propId) throws RemoteException { in getReadPermission()
246 public String getWritePermission(int propId) throws RemoteException { in getWritePermission()
261 public CarPropertyController addProperty(Integer propId, Object value) { in addProperty()
352 private PropKey(int propId, int areaId) { in PropKey()
357 static PropKey of(int propId, int areaId) { in of()
409 private static Class<?> getPropertyType(int propId) { in getPropertyType()
437 private static int getVehicleAreaType(int propId) { in getVehicleAreaType()
/aosp_15_r20/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
DPropertyTestFragment.java513 private void setTextOnSuccess(int propId, long timestamp, Object value, int status) { in setTextOnSuccess()
535 private <T> void callSetPropertiesAsync(int propId, int areaId, T request) { in callSetPropertiesAsync()
552 void addPropertySelectedSubscriptionRateHz(Integer propId, Float subscriptionRateHz) { in addPropertySelectedSubscriptionRateHz()
556 void updatePropertyStartTime(Integer propId) { in updatePropertyStartTime()
560 void resetEventCountForProperty(Integer propId) { in resetEventCountForProperty()
566 int propId = value.getPropertyId(); in onChangeEvent() local
593 public void onErrorEvent(int propId, int areaId) { in onErrorEvent()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/3/utils/common/src/
H A DVehiclePropertyStore.cpp72 VehiclePropertyStore::Record* VehiclePropertyStore::getRecordLocked(int32_t propId) in getRecordLocked()
117 int32_t propId; in writeValue() local
190 void VehiclePropertyStore::refreshTimestamp(int32_t propId, int32_t areaId, EventMode eventMode) { in refreshTimestamp()
212 int32_t propId = propIdAreaId.propId; in refreshTimestamps() local
274 void VehiclePropertyStore::removeValuesForProperty(int32_t propId) { in removeValuesForProperty()
320 int32_t propId = propValue.prop; in readValue() local
330 VehiclePropertyStore::ValueResultType VehiclePropertyStore::readValue(int32_t propId, in readValue()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/current/utils/common/src/
H A DVehiclePropertyStore.cpp72 VehiclePropertyStore::Record* VehiclePropertyStore::getRecordLocked(int32_t propId) in getRecordLocked()
117 int32_t propId; in writeValue() local
190 void VehiclePropertyStore::refreshTimestamp(int32_t propId, int32_t areaId, EventMode eventMode) { in refreshTimestamp()
212 int32_t propId = propIdAreaId.propId; in refreshTimestamps() local
274 void VehiclePropertyStore::removeValuesForProperty(int32_t propId) { in removeValuesForProperty()
320 int32_t propId = propValue.prop; in readValue() local
330 VehiclePropertyStore::ValueResultType VehiclePropertyStore::readValue(int32_t propId, in readValue()
/aosp_15_r20/packages/apps/Car/SystemUI/src/com/android/systemui/car/hvac/
DHvacController.java294 @HvacProperty Integer propId = hvacView.getHvacPropertyToView(); in registerHvacViews() local
384 @HvacProperty Integer propId = hvacView.getHvacPropertyToView(); in unregisterViews() local
414 mHvacPropertyViewMap.forEach((propId, areaIds) -> { in handleHvacPropertyChange() argument
428 mHvacPropertyViewMap.forEach((propId, areaIds) -> { in handleHvacPropertyChange() argument
436 mHvacPropertyViewMap.forEach((propId, areaIds) -> { in handleHvacPropertyChange() argument
542 private void addHvacViewToMap(@HvacProperty int propId, @AreaId int areaId, in addHvacViewToMap()
551 private void removeHvacViewFromMap(@HvacProperty int propId, @AreaId int areaId, HvacView v) { in removeHvacViewFromMap()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
H A DSubscriptionManager.cpp66 bool HalClient::isSubscribed(int32_t propId, in isSubscribed()
147 std::list<sp<HalClient>> SubscriptionManager::getSubscribedClients(int32_t propId, in getSubscribedClients()
154 int32_t propId, SubscribeFlags flags) const { in getSubscribedClientsLocked()
192 int32_t propId, const sp<HalClient> &client) { in addClientToPropMapLocked()
233 int32_t propId) { in unsubscribe()
289 for (int32_t propId : props) { in onCallbackDead() local
/aosp_15_r20/packages/services/Car/tests/CarServiceTest/src/com/android/car/
DCarPropertyManagerTest.java571 int propId = VehiclePropertyIds.FUEL_DOOR_OPEN; in testSubscribePropertyEvents_noReadOrWritePermission() local
588 int propId = VehiclePropertyIds.DISTANCE_DISPLAY_UNITS; in testSubscribePropertyEvents_onlyWritePermission() local
630 int propId = VehiclePropertyIds.FUEL_DOOR_OPEN; in testRegisterCallback_noReadOrWritePermission() local
659 int propId = VehiclePropertyIds.DISTANCE_DISPLAY_UNITS; in testRegisterCallback_onlyWritePermission() local
1556 int propId = value.prop; in onPropertySet2() local
1609 private static int mapPropertyToVhalStatusCode(int propId) { in mapPropertyToVhalStatusCode()
1632 private static int mapPropertyToVehiclePropertyStatus(int propId) { in mapPropertyToVehiclePropertyStatus()
1707 public void onErrorEvent(int propId, int areaId) { in onErrorEvent()
1715 public void onErrorEvent(int propId, int areaId, int errorCode) { in onErrorEvent()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/current/fake_impl/hardware/src/
H A DFakeVehicleHardware.cpp301 int propId = vehiclePropConfig.prop; in storePropInitialValue() local
639 bool FakeVehicleHardware::isHvacPropAndHvacNotAvailable(int32_t propId, int32_t areaId) const { in isHvacPropAndHvacNotAvailable()
783 auto propId = value.prop; in getUserHalProp() local
817 int32_t propId = value.prop; in maybeGetSpecialValue() local
1028 int32_t propId = value.prop; in maybeSetSpecialValue() local
1463 int32_t propId; in genFakeDataHelp() local
1497 int32_t propId; in genFakeDataHelp() local
1857 std::string FakeVehicleHardware::dumpOnePropertyById(int32_t propId, int32_t areaId) { in dumpOnePropertyById()
1921 size_t index, int32_t propId) { in parseAreaId()
2178 int32_t propId = value.prop; in dumpSaveProperty() local
[all …]
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/3/fake_impl/hardware/src/
H A DFakeVehicleHardware.cpp301 int propId = vehiclePropConfig.prop; in storePropInitialValue() local
639 bool FakeVehicleHardware::isHvacPropAndHvacNotAvailable(int32_t propId, int32_t areaId) const { in isHvacPropAndHvacNotAvailable()
783 auto propId = value.prop; in getUserHalProp() local
817 int32_t propId = value.prop; in maybeGetSpecialValue() local
1028 int32_t propId = value.prop; in maybeSetSpecialValue() local
1463 int32_t propId; in genFakeDataHelp() local
1497 int32_t propId; in genFakeDataHelp() local
1857 std::string FakeVehicleHardware::dumpOnePropertyById(int32_t propId, int32_t areaId) { in dumpOnePropertyById()
1921 size_t index, int32_t propId) { in parseAreaId()
2178 int32_t propId = value.prop; in dumpSaveProperty() local
[all …]
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/3/hardware/include/
H A DIVehicleHardware.h46 int32_t propId; member
78 virtual std::optional<aidlvhal::VehiclePropConfig> getPropertyConfig(int32_t propId) const { in getPropertyConfig()
208 virtual aidlvhal::StatusCode unsubscribe([[maybe_unused]] int32_t propId, in unsubscribe()
238 virtual aidlvhal::StatusCode updateSampleRate([[maybe_unused]] int32_t propId, in updateSampleRate()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/current/hardware/include/
H A DIVehicleHardware.h46 int32_t propId; member
78 virtual std::optional<aidlvhal::VehiclePropConfig> getPropertyConfig(int32_t propId) const { in getPropertyConfig()
208 virtual aidlvhal::StatusCode unsubscribe([[maybe_unused]] int32_t propId, in unsubscribe()
238 virtual aidlvhal::StatusCode updateSampleRate([[maybe_unused]] int32_t propId, in updateSampleRate()
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/3/vhal/src/
H A DSubscriptionManager.cpp46 SubscribeOptions newSubscribeOptions(int32_t propId, int32_t areaId, float sampleRateHz, in newSubscribeOptions()
162 int32_t propId = propIdAreaId.propId; in addOnChangeSubscriberLocked() local
204 int32_t propId = propIdAreaId.propId; in removeOnChangeSubscriberLocked() local
226 int32_t propId = propIdAreaId.propId; in updateContSubConfigsLocked() local
287 int32_t propId = option.propId; in subscribe() local
354 for (int32_t propId : propIds) { in unsubscribe() local
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/current/vhal/src/
H A DSubscriptionManager.cpp46 SubscribeOptions newSubscribeOptions(int32_t propId, int32_t areaId, float sampleRateHz, in newSubscribeOptions()
162 int32_t propId = propIdAreaId.propId; in addOnChangeSubscriberLocked() local
204 int32_t propId = propIdAreaId.propId; in removeOnChangeSubscriberLocked() local
226 int32_t propId = propIdAreaId.propId; in updateContSubConfigsLocked() local
287 int32_t propId = option.propId; in subscribe() local
354 for (int32_t propId : propIds) { in unsubscribe() local
/aosp_15_r20/hardware/interfaces/automotive/vehicle/vts/src/
H A DVtsHalAutomotiveVehicle_TargetTest.cpp97 int32_t propId = value->getPropId(); in onPropertyEvent() local
109 bool waitForExpectedEvents(int32_t propId, size_t expectedEvents, in waitForExpectedEvents()
118 std::vector<std::unique_ptr<IHalPropValue>> getEvents(int32_t propId) { in getEvents()
130 std::vector<int64_t> getEventTimestamps(int32_t propId) { in getEventTimestamps()
258 int32_t propId = configs[i]->getPropId(); in TEST_P() local
300 int32_t propId = toInt(VehicleProperty::PERF_VEHICLE_SPEED); in TEST_P() local
363 int32_t propId = cfg.getPropId(); in TEST_P() local
453 int32_t propId = toInt(VehicleProperty::PERF_VEHICLE_SPEED); in TEST_P() local
473 int32_t propId = toInt(VehicleProperty::INVALID); in TEST_P() local
497 int32_t propId = toInt(VehicleProperty::PERF_VEHICLE_SPEED); in TEST_P() local
[all …]
/aosp_15_r20/packages/services/Car/car-lib/src/com/android/car/internal/
DPropertyPermissionMapping.java168 public String getReadPermission(int propId) { in getReadPermission()
177 public String getWritePermission(int propId) { in getWritePermission()
183 private Permission getPermission(int propId) { in getPermission()
188 private static boolean isVendorExtension(int propId) { in isVendorExtension()
/aosp_15_r20/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp94 std::unique_ptr<IHalPropValue> HidlVhalClient::createHalPropValue(int32_t propId) { in createHalPropValue()
98 std::unique_ptr<IHalPropValue> HidlVhalClient::createHalPropValue(int32_t propId, int32_t areaId) { in createHalPropValue()
106 int32_t propId = requestValue.getPropId(); in getValue() local
273 for (int32_t propId : propIds) { in unsubscribe() local
309 Return<void> SubscriptionCallback::onPropertySetError(StatusCode status, int32_t propId, in onPropertySetError()
DAidlVhalClient.cpp156 std::unique_ptr<IHalPropValue> AidlVhalClient::createHalPropValue(int32_t propId) { in createHalPropValue()
160 std::unique_ptr<IHalPropValue> AidlVhalClient::createHalPropValue(int32_t propId, int32_t areaId) { in createHalPropValue()
319 int32_t propId = requestValue.getPropId(); in getValue() local
358 int32_t propId = requestValue.getPropId(); in setValue() local
478 int32_t propId = pendingRequest->propId; in onGetValue() local
521 int32_t propId = pendingRequest->propId; in onSetValue() local
/aosp_15_r20/packages/services/Car/service/src/com/android/car/hal/
DDiagnosticHalService.java171 int propId = propConfig.getPropId(); in getTokenForProperty() local
293 int propId = propConfig.getPropId(); in requestDiagnosticStart() local
323 int propId = propConfig.getPropId(); in requestDiagnosticStop() local
352 int propId = propConfig.getPropId(); in getCurrentDiagnosticValue() local
427 int propId = value.getPropId(); in createCarDiagnosticEvent() local
DVehicleHal.java370 int propId = v.getPropId(); in handleOnPropertyEvent() local
401 int propId = error.propId; in handleOnPropertySetError() local
420 int propId = errorsByPropId.keyAt(i); in handleOnPropertySetError() local
503 Integer propId = mAllProperties.keyAt(j); in priorityInit() local
1147 HalPropValueSetter set(int propId) { in set()
1152 HalPropValueSetter set(int propId, int areaId) { in set()
1247 int propId = mPropertyHandlers.keyAt(i); in dump() local
1343 public @Nullable HalPropConfig getPropConfig(int propId) { in getPropConfig()
1511 int propId, int zoneId, List<String> dataList, long timestamp) { in createPropValueForInjecting()
1568 private HalPropValueSetter(int propId, int areaId) { in HalPropValueSetter()
/aosp_15_r20/packages/services/Car/car-lib/src/android/car/hardware/property/
DICarProperty.aidl42 void unregisterListener(int propId, in ICarPropertyEventListener callback); in unregisterListener()
50 String getReadPermission(int propId); in getReadPermission()
52 String getWritePermission(int propId); in getWritePermission()
86 boolean isSupportedAndHasWritePermissionOnly(int propId); in isSupportedAndHasWritePermissionOnly()
/aosp_15_r20/packages/services/Car/car-lib/src/android/car/hardware/
DCarVendorExtensionManager.java157 public <E> E getGlobalProperty(Class<E> propertyClass, int propId) { in getGlobalProperty()
171 public <E> E getProperty(Class<E> propertyClass, int propId, int area) { in getProperty()
185 public <E> void setGlobalProperty(Class<E> propertyClass, int propId, E value) { in setGlobalProperty()
201 public <E> void setProperty(Class<E> propertyClass, int propId, int area, E value) { in setProperty()
/aosp_15_r20/device/generic/car/emulator/vhal_aidl/VehicleEmulator/test/
DVehicleEmulatorTest.cpp153 int32_t propId = toInt(VehicleProperty::HVAC_FAN_SPEED); in TEST_F() local
235 int32_t propId = toInt(VehicleProperty::HVAC_FAN_SPEED); in TEST_F() local
302 int32_t propId = toInt(VehicleProperty::HVAC_FAN_SPEED); in TEST_F() local
398 int32_t propId = toInt(VehicleProperty::HVAC_FAN_SPEED); in TEST_F() local
/aosp_15_r20/packages/services/Car/service/src/com/android/car/hal/property/
DPropertyHalServiceConfigs.java215 int propId = propValue.getPropId(); in checkPayload() local
355 public boolean isSupportedProperty(int propId) { in isSupportedProperty()
373 int propId = configArray[index++]; in customizeVendorPermission() local
673 int propId = propValue.getPropId(); in checkFormatForAllProperties() local
/aosp_15_r20/hardware/interfaces/automotive/vehicle/aidl/impl/3/utils/common/include/
H A DVehicleUtils.h69 int32_t propId, int32_t areaId, in getAreaConfig()
314 int32_t propId; member
332 inline std::string propIdToString(int32_t propId) { in propIdToString()

123456