Home
last modified time | relevance | path

Searched refs:recyclable_ptr (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
DVehicleObjectPool.h67 using recyclable_ptr = typename std::unique_ptr<T, Deleter<T>>; variable
84 virtual recyclable_ptr<T> obtain() { in obtain()
120 recyclable_ptr<T> wrap(T* raw) { in wrap()
121 return recyclable_ptr<T> { raw, getDeleter() }; in wrap()
163 using RecyclableType = recyclable_ptr<VehiclePropValue>;
DVehicleHal.h35 using VehiclePropValuePtr = recyclable_ptr<VehiclePropValue>;
DSubscriptionManager.h114 const std::vector<recyclable_ptr<VehiclePropValue>>& propValues,
/hardware/interfaces/automotive/vehicle/2.0/default/tests/
DVehicleObjectPool_test.cpp99 std::vector<recyclable_ptr<VehiclePropValue>> vec; in TEST_F()
DVehicleHalManager_test.cpp117 void sendPropEvent(recyclable_ptr<VehiclePropValue> value) { in sendPropEvent()
/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
DSubscriptionManager.cpp121 const std::vector<recyclable_ptr<VehiclePropValue>>& propValues, in distributeValuesToClients()