Searched refs:accept (Results 1 - 13 of 13) sorted by relevance

/gem5/src/base/
H A Dsocket.hh56 virtual int accept(bool nodelay = false);
H A Dsocket.cc134 // make sure a connection is ready before you call accept.
136 ListenSocket::accept(bool nodelay) function in class:ListenSocket
140 int sfd = ::accept(fd, (struct sockaddr *)&sockaddr, &slen);
145 warn("ListenSocket(accept): setsockopt() TCP_NODELAY failed!");
H A Dremote_gdb.cc372 "Cannot accept GDB connections if we're not listening!");
374 int sfd = listener.accept(true);
/gem5/src/cpu/
H A Dnativetrace.cc55 fd = native_listener.accept();
/gem5/src/dev/net/
H A Dtcp_iface.cc98 // Now accept the first connection requests from each compute node and
105 accept();
170 accept();
208 TCPIface::accept()
212 sock = ::accept(fdStatic, (struct sockaddr *)&sockaddr, &slen);
217 warn("ListenSocket(accept): setsockopt() TCP_NODELAY failed!");
H A Dtcp_iface.hh116 void accept();
H A Dethertap.cc238 void process(int revent) override { listener->accept(); }
244 void accept();
272 TapListener::accept() function in class:TapListener
280 panic("TapListener(accept): cannot accept if we're not listening!");
282 int sfd = listener.accept(true);
/gem5/src/dev/serial/
H A Dterminal.hh107 void accept();
H A Dterminal.cc93 term->accept();
192 Terminal::accept() function in class:Terminal
195 panic("%s: cannot accept a connection if not listening!", name());
197 int fd = listener.accept(true);
/gem5/src/base/vnc/
H A Dvncserver.hh143 /** ListenEvent to accept a vnc client connection */
177 void accept();
H A Dvncserver.cc98 vncserver->accept();
186 VncServer::accept() function in class:VncServer
194 panic("%s: cannot accept a connection if not listening!", name());
196 int fd = listener.accept(true);
198 warn("%s: failed to accept VNC connection!", name());
/gem5/util/tap/
H A Dtap.cc157 // make sure a connection is ready before you call accept.
163 int sfd = ::accept(fd, (struct sockaddr *)&sockaddr, &slen);
165 panic("accept() failed!\n");
/gem5/src/sim/
H A Dsyscall_emul.hh2772 * block on our accept call. The socket can be opened without the
2797 host_fd = accept(sim_fd, &sa, &addrLen);

Completed in 32 milliseconds