Home
last modified time | relevance | path

Searched refs:getValues (Results 1 – 15 of 15) sorted by relevance

/openbmc/gpioplus/src/gpioplus/
H A Dhandle.hpp48 virtual std::vector<uint8_t> getValues() const = 0;
49 virtual void getValues(std::vector<uint8_t>& values) const = 0;
94 std::vector<uint8_t> getValues() const override;
101 void getValues(std::vector<uint8_t>& values) const override;
H A Dhandle.cpp89 std::vector<uint8_t> Handle::getValues() const in getValues() function in gpioplus::Handle
92 getValues(values); in getValues()
96 void Handle::getValues(std::vector<uint8_t>& values) const in getValues() function in gpioplus::Handle
/openbmc/phosphor-power/phosphor-regulators/test/actions/
H A Di2c_compare_bytes_action_tests.cpp55 EXPECT_EQ(action.getValues().size(), 3); in TEST()
56 EXPECT_EQ(action.getValues()[0], 0x56); in TEST()
57 EXPECT_EQ(action.getValues()[1], 0x14); in TEST()
58 EXPECT_EQ(action.getValues()[2], 0xDA); in TEST()
101 EXPECT_EQ(action.getValues().size(), 2); in TEST()
102 EXPECT_EQ(action.getValues()[0], 0x56); in TEST()
103 EXPECT_EQ(action.getValues()[1], 0x14); in TEST()
413 EXPECT_EQ(action.getValues().size(), 2); in TEST()
414 EXPECT_EQ(action.getValues()[0], 0x56); in TEST()
415 EXPECT_EQ(action.getValues()[1], 0x14); in TEST()
H A Di2c_write_bytes_action_tests.cpp58 EXPECT_EQ(action.getValues().size(), 3); in TEST()
59 EXPECT_EQ(action.getValues()[0], 0x56); in TEST()
60 EXPECT_EQ(action.getValues()[1], 0x14); in TEST()
61 EXPECT_EQ(action.getValues()[2], 0xDA); in TEST()
101 EXPECT_EQ(action.getValues().size(), 2); in TEST()
102 EXPECT_EQ(action.getValues()[0], 0x56); in TEST()
103 EXPECT_EQ(action.getValues()[1], 0x14); in TEST()
431 EXPECT_EQ(action.getValues().size(), 2); in TEST()
432 EXPECT_EQ(action.getValues()[0], 0x56); in TEST()
433 EXPECT_EQ(action.getValues()[1], 0x14); in TEST()
/openbmc/phosphor-psu-code-mgmt/test/
H A Dtest_version.cpp59 auto ret = Version::getValues("NotExist.file", {""}); in TEST_F()
67 auto ret = Version::getValues(manifestFilePath.string(), in TEST_F()
97 auto ret = Version::getValues(manifestFilePath.string(), in TEST_F()
/openbmc/gpioplus/src/gpioplus/test/
H A Dhandle.hpp14 MOCK_CONST_METHOD0(getValues, std::vector<uint8_t>());
15 MOCK_CONST_METHOD1(getValues, void(std::vector<uint8_t>&));
/openbmc/phosphor-psu-code-mgmt/src/
H A Dversion.cpp27 std::map<std::string, std::string> Version::getValues( in getValues() function in phosphor::software::updater::Version
66 auto values = Version::getValues(filePath, {key}); in getValue()
H A Dversion.hpp110 static std::map<std::string, std::string> getValues(
H A Ditem_updater.cpp492 auto ret = Version::getValues( in scanDirectory()
/openbmc/gpioplus/test/
H A Dhandle.cpp187 EXPECT_EQ(expected, handle->getValues()); in TEST_F()
200 handle->getValues(output); in TEST_F()
208 EXPECT_THROW(handle->getValues(), std::system_error); in TEST_F()
/openbmc/phosphor-power/phosphor-regulators/src/actions/
H A Di2c_compare_bytes_action.hpp135 const std::vector<uint8_t>& getValues() const in getValues() function in phosphor::power::regulators::I2CCompareBytesAction
H A Di2c_write_bytes_action.hpp137 const std::vector<uint8_t>& getValues() const in getValues() function in phosphor::power::regulators::I2CWriteBytesAction
/openbmc/phosphor-networkd/src/
H A Dconfig_parser.hpp122 inline auto getValues(std::string_view section, std::string_view key, in getValues() function in phosphor::network::config::SectionMap
H A Dconfig_parser.cpp80 return getValues(section, key, in getValueStrings()
/openbmc/phosphor-power/phosphor-regulators/test/
H A Dconfig_file_parser_tests.cpp2547 EXPECT_EQ(action->getValues().size(), 2); in TEST()
2548 EXPECT_EQ(action->getValues()[0], 0xCC); in TEST()
2549 EXPECT_EQ(action->getValues()[1], 0xFF); in TEST()
2567 EXPECT_EQ(action->getValues().size(), 2); in TEST()
2568 EXPECT_EQ(action->getValues()[0], 0xCC); in TEST()
2569 EXPECT_EQ(action->getValues()[1], 0xFF); in TEST()
3029 EXPECT_EQ(action->getValues().size(), 2); in TEST()
3030 EXPECT_EQ(action->getValues()[0], 0xCC); in TEST()
3031 EXPECT_EQ(action->getValues()[1], 0xFF); in TEST()
3047 EXPECT_EQ(action->getValues().size(), 2); in TEST()
[all …]