Searched refs:BtProperty (Results 1 – 3 of 3) sorted by relevance
33 class BtProperty {49 BtProperty(bt_property_type_t type) : type_(type) {} in BtProperty() function50 virtual ~BtProperty() = default;59 BtPropertyLegacy(const std::vector<std::shared_ptr<BtProperty>>& bt_properties);75 const std::vector<std::shared_ptr<BtProperty>> bt_properties_;80 class BtPropertySimple : public BtProperty {92 : BtProperty(type), val_(std::make_shared<T>(val)) {} in BtProperty() function99 class BtPropertyVector : public BtProperty {111 : BtProperty(type), val_(std::make_shared<std::vector<T>>(val)) {} in BtProperty() function115 : BtProperty(type), val_(std::make_shared<std::vector<T>>(val, val + size)) {} in BtProperty() function
162 const bt_property_type_t& type, std::vector<std::shared_ptr<BtProperty>>& properties) { in fill_property()493 void fill_properties(std::vector<std::shared_ptr<BtProperty>>& properties) { in fill_properties()762 std::vector<std::shared_ptr<BtProperty>> properties; in TEST_F()767 std::vector<std::shared_ptr<BtProperty>> properties; in TEST_F()776 std::vector<std::shared_ptr<BtProperty>> properties; in TEST_F()787 std::vector<std::shared_ptr<BtProperty>> properties; in TEST_F()809 std::vector<std::shared_ptr<BtProperty>> properties;823 std::vector<std::shared_ptr<BtProperty>> properties; in TEST_F()848 std::vector<std::shared_ptr<BtProperty>> properties;872 std::vector<std::future<std::vector<std::shared_ptr<BtProperty>>>> future_vector;[all …]
264 BtPropertyLegacy::BtPropertyLegacy(const std::vector<std::shared_ptr<BtProperty>>& bt_properties) in BtPropertyLegacy()