Home
last modified time | relevance | path

Searched refs:getGPIOValues (Results 1 – 13 of 13) sorted by relevance

/openbmc/phosphor-power/phosphor-power-sequencer/test/
H A Dstandard_device_tests.cpp69 MOCK_METHOD(std::vector<int>, getGPIOValues, (Services & services),
217 EXPECT_CALL(device, getGPIOValues) in TEST()
247 EXPECT_CALL(device, getGPIOValues) in TEST()
296 EXPECT_CALL(device, getGPIOValues) in TEST()
344 EXPECT_CALL(device, getGPIOValues) in TEST()
400 EXPECT_CALL(device, getGPIOValues) in TEST()
448 EXPECT_CALL(device, getGPIOValues) in TEST()
497 EXPECT_CALL(device, getGPIOValues) in TEST()
547 EXPECT_CALL(device, getGPIOValues) in TEST()
601 EXPECT_CALL(device, getGPIOValues) in TEST()
H A Dmock_device.hpp44 MOCK_METHOD(std::vector<int>, getGPIOValues, (Services & services),
H A Ducd90320_device_tests.cpp103 EXPECT_CALL(services, getGPIOValues("ucd90320")) in TEST()
200 EXPECT_CALL(services, getGPIOValues("ucd90320")) in TEST()
H A Dmock_services.hpp53 MOCK_METHOD(std::vector<int>, getGPIOValues, (const std::string& chipLabel),
H A Ducd90160_device_tests.cpp101 EXPECT_CALL(services, getGPIOValues("ucd90160")) in TEST()
219 EXPECT_CALL(services, getGPIOValues("ucd90160")) in TEST()
H A Ducd90x_device_tests.cpp145 EXPECT_CALL(services, getGPIOValues("ucd90320")) in TEST()
202 EXPECT_CALL(services, getGPIOValues("ucd90320")) in TEST()
H A Dpmbus_driver_device_tests.cpp237 EXPECT_CALL(services, getGPIOValues("abc_382%#, zy")) in TEST_F()
248 EXPECT_TRUE(device.getGPIOValues(services) == gpioValues); in TEST_F()
254 EXPECT_CALL(services, getGPIOValues("xyz_pseq")) in TEST_F()
268 device.getGPIOValues(services); in TEST_F()
784 EXPECT_CALL(services, getGPIOValues("xyz_pseq")) in TEST_F()
/openbmc/phosphor-power/phosphor-power-sequencer/src/
H A Dservices.hpp111 virtual std::vector<int> getGPIOValues(const std::string& chipLabel) = 0;
195 getGPIOValues(const std::string& chipLabel) override;
H A Dpower_sequencer_device.hpp76 virtual std::vector<int> getGPIOValues(Services& services) = 0;
H A Dpmbus_driver_device.cpp34 std::vector<int> PMBusDriverDevice::getGPIOValues(Services& services) in getGPIOValues() function in phosphor::power::sequencer::PMBusDriverDevice
44 values = services.getGPIOValues(label); in getGPIOValues()
H A Dpmbus_driver_device.hpp127 virtual std::vector<int> getGPIOValues(Services& services) override;
H A Dservices.cpp100 std::vector<int> BMCServices::getGPIOValues(const std::string& chipLabel) in getGPIOValues() function in phosphor::power::sequencer::BMCServices
H A Dstandard_device.cpp80 values = getGPIOValues(services); in getGPIOValuesIfPossible()