Home
last modified time | relevance | path

Searched refs:fcntl_setfl (Results 1 – 5 of 5) sorted by relevance

/openbmc/gpioplus/src/gpioplus/internal/
H A Dsys.hpp23 virtual int fcntl_setfl(int fd, int flags) const = 0;
49 int fcntl_setfl(int fd, int flags) const override;
H A Dsys.cpp33 int SysImpl::fcntl_setfl(int fd, int flags) const in fcntl_setfl() function in gpioplus::internal::SysImpl
H A Dfd.cpp104 int r = sys->fcntl_setfl(fd, flags); in setFlags()
/openbmc/gpioplus/test/internal/
H A Dfd.cpp229 EXPECT_CALL(mock, fcntl_setfl(expected_fd, flags_blocking)) in TEST_F()
238 EXPECT_CALL(mock, fcntl_setfl(expected_fd, flags_blocking)) in TEST_F()
247 EXPECT_CALL(mock, fcntl_setfl(expected_fd, flags_noblocking)) in TEST_F()
256 EXPECT_CALL(mock, fcntl_setfl(expected_fd, flags_noblocking)) in TEST_F()
271 EXPECT_CALL(mock, fcntl_setfl(expected_fd, 0)) in TEST_F()
/openbmc/gpioplus/src/gpioplus/test/
H A Dsys.hpp18 MOCK_METHOD(int, fcntl_setfl, (int, int), (const));