Home | History | Annotate | Download | only in jdwp

Lines Matching full:accept

57   virtual bool Accept();
184 /* "shutdown" dislodges blocking read() and accept() calls */
210 * Accept a connection. This will block waiting for somebody to show up.
214 bool JdwpSocketState::Accept() {
230 sock = accept(listenSock, &addr.addrPlain, &addrlen);
232 // When we call shutdown() on the socket, accept() returns with
236 PLOG(ERROR) << "accept failed";
239 PLOG(ERROR) << "accept failed";
428 * and accept(), but not select()).
461 tmpSock = accept(listenSock, &addr.addrPlain, &addrlen);
463 LOG(INFO) << "Weird -- accept failed";