/packages/services/Car/cpp/security/vehicle_binding_util/tests/ |
D | VehicleBindingUtilTest.cpp | 73 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/ |
D | MockVhalClient.h | 49 createHalPropValue, (int32_t), (override)); 51 createHalPropValue, (int32_t, int32_t), (override));
|
/packages/services/Car/cpp/vhal/client/include/ |
D | HidlVhalClient.h | 54 std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId) override; 56 std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId, int32_t areaId) override;
|
D | IVhalClient.h | 247 virtual std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId) = 0; 256 virtual std::unique_ptr<IHalPropValue> createHalPropValue(int32_t propId, int32_t areaId) = 0;
|
D | AidlVhalClient.h | 69 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/ |
D | VehicleBindingUtil.cpp | 74 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/ |
D | HidlVhalClient.cpp | 94 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
|
D | AidlVhalClient.cpp | 147 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/ |
D | EvsStateControl.cpp | 301 auto halPropValue = mVehicle->createHalPropValue(pRequestedPropValue->prop); in invokeGet()
|
/packages/services/Car/cpp/powerpolicy/server/src/ |
D | CarPowerPolicyServer.cpp | 1231 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/ |
D | WatchdogProcessService.cpp | 1068 auto halPropValue = vhalService->createHalPropValue(propId); in updateVhal()
|