/openbmc/gpioplus/src/gpioplus/ |
H A D | handle.hpp | 48 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 D | handle.cpp | 89 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 D | i2c_compare_bytes_action_tests.cpp | 55 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 D | i2c_write_bytes_action_tests.cpp | 58 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 D | test_version.cpp | 59 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 D | handle.hpp | 14 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 D | version.cpp | 27 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 D | version.hpp | 110 static std::map<std::string, std::string> getValues(
|
H A D | item_updater.cpp | 492 auto ret = Version::getValues( in scanDirectory()
|
/openbmc/gpioplus/test/ |
H A D | handle.cpp | 187 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 D | i2c_compare_bytes_action.hpp | 135 const std::vector<uint8_t>& getValues() const in getValues() function in phosphor::power::regulators::I2CCompareBytesAction
|
H A D | i2c_write_bytes_action.hpp | 137 const std::vector<uint8_t>& getValues() const in getValues() function in phosphor::power::regulators::I2CWriteBytesAction
|
/openbmc/phosphor-networkd/src/ |
H A D | config_parser.hpp | 122 inline auto getValues(std::string_view section, std::string_view key, in getValues() function in phosphor::network::config::SectionMap
|
H A D | config_parser.cpp | 80 return getValues(section, key, in getValueStrings()
|
/openbmc/phosphor-power/phosphor-regulators/test/ |
H A D | config_file_parser_tests.cpp | 2547 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 …]
|