Home
last modified time | relevance | path

Searched refs:createHalPropValue (Results 1 – 11 of 11) sorted by relevance

/packages/services/Car/cpp/security/vehicle_binding_util/tests/
DVehicleBindingUtilTest.cpp73 MOCK_METHOD(std::unique_ptr<IHalPropValue>, createHalPropValue, (int32_t), (override));
75 MOCK_METHOD(std::unique_ptr<IHalPropValue>, createHalPropValue, (int32_t, int32_t), (override));
112 ON_CALL(*mMockVehicle, createHalPropValue(_)).WillByDefault([](int32_t propId) { in SetUp()
116 ON_CALL(*mMockVehicle, createHalPropValue(_, _)) in SetUp()
/packages/services/Car/cpp/watchdog/server/tests/
DMockVhalClient.h49 createHalPropValue, (int32_t), (override));
51 createHalPropValue, (int32_t, int32_t), (override));
/packages/services/Car/cpp/vhal/client/include/
DHidlVhalClient.h54 std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId) override;
56 std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId, int32_t areaId) override;
DIVhalClient.h247 virtual std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId) = 0;
256 virtual std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId, int32_t areaId) = 0;
DAidlVhalClient.h69 std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId) override;
71 std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId, int32_t areaId) override;
/packages/services/Car/cpp/security/vehicle_binding_util/src/
DVehicleBindingUtil.cpp74 vehicle->createHalPropValue(toInt(VehicleProperty::STORAGE_ENCRYPTION_BINDING_SEED), in setSeedVhalProperty()
88 auto desired_prop = vehicle->createHalPropValue( in getSeedVhalProperty()
/packages/services/Car/cpp/vhal/client/src/
DHidlVhalClient.cpp94 std::unique_ptr<IHalPropValue> HidlVhalClient::createHalPropValue(int32_t propId) { in createHalPropValue() function in android::frameworks::automotive::vhal::HidlVhalClient
98 std::unique_ptr<IHalPropValue> HidlVhalClient::createHalPropValue(int32_t propId, int32_t areaId) { in createHalPropValue() function in android::frameworks::automotive::vhal::HidlVhalClient
DAidlVhalClient.cpp147 std::unique_ptr<IHalPropValue> AidlVhalClient::createHalPropValue(int32_t propId) { in createHalPropValue() function in android::frameworks::automotive::vhal::AidlVhalClient
151 std::unique_ptr<IHalPropValue> AidlVhalClient::createHalPropValue(int32_t propId, int32_t areaId) { in createHalPropValue() function in android::frameworks::automotive::vhal::AidlVhalClient
/packages/services/Car/cpp/evs/apps/default/src/
DEvsStateControl.cpp301 auto halPropValue = mVehicle->createHalPropValue(pRequestedPropValue->prop); in invokeGet()
/packages/services/Car/cpp/powerpolicy/server/src/
DCarPowerPolicyServer.cpp1231 vhalService->getValueSync(*vhalService->createHalPropValue(prop)); in subscribeToProperty()
1262 std::unique_ptr<IHalPropValue> propValue = vhalService->createHalPropValue(prop); in notifyVhalNewPowerPolicy()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogProcessService.cpp1068 auto halPropValue = vhalService->createHalPropValue(propId); in updateVhal()