Searched refs:SockIO (Results 1 – 12 of 12) sorted by relevance
23 int SockIO::close() in close()35 int SockIO::write(const void* buf, size_t len) in write()40 int SockIO::recv(void* buf, size_t maxlen) in recv()45 SockIO::~SockIO() in ~SockIO()47 SockIO::close(); in ~SockIO()
27 class SockIO : public net::SockIO30 SockIO() = default;32 explicit SockIO(int sockfd) : net::SockIO(sockfd) {} in SockIO() function
24 class SockIO27 SockIO() = default;28 explicit SockIO(int sockfd) : sockfd_{sockfd} {} in SockIO() function29 virtual ~SockIO();
33 int SockIO::init() in init()40 int SockIO::bind_to_iface(const net::IFaceBase& iface) in bind_to_iface()70 int SockIO::filter_vlans() in filter_vlans()76 int SockIO::recv(void* buf, size_t maxlen) in recv()
48 void set_sockio(net::SockIO* sock_io);114 net::SockIO* sock_io_ = nullptr;
34 ncsi::SockIO ncsi_sock; in main()
417 void StateMachine::set_sockio(net::SockIO* sock_io) in set_sockio()
10 <td port="sockio" bgcolor="lightblue">net::SockIO</td>40 ncsi_sockio [label="ncsi::SockIO"];
80 heavily based on EC code. It uses `net::SockIO` interface to interact with the88 ### ncsi::SockIO90 Implements `net::SockIO` and sends NC-SI commands to the NIC through raw Unix103 `net::SockIO` and `net::ConfigBase` interfaces. This makes it easy to mock them.
8 …<tr><td port="sockio" bgcolor="lightblue">net::SockIO</td><td bgcolor="lightblue" colspan="2" port…
35 ncsi::SockIO ncsi_sock(sock_fake_fd); in TEST()
63 class NICConnection : public net::SockIO