OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:listen_fd_
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/apps/app_shim/
unix_domain_socket_acceptor.cc
16
: path_(path), delegate_(delegate),
listen_fd_
(-1) {
26
DCHECK(
listen_fd_
< 0);
29
return IPC::CreateServerUnixDomainSocket(path_, &
listen_fd_
);
33
if (
listen_fd_
< 0)
39
listen_fd_
,
49
DCHECK(fd ==
listen_fd_
);
51
if (!IPC::ServerAcceptConnection(
listen_fd_
, &new_fd)) {
78
if (
listen_fd_
< 0)
80
if (IGNORE_EINTR(close(
listen_fd_
)) < 0)
82
listen_fd_
= -1
[
all
...]
unix_domain_socket_acceptor.h
50
int
listen_fd_
;
member in class:apps::UnixDomainSocketAcceptor
/external/chromium_org/net/tools/flip_server/
acceptor_thread.cc
79
epoll_server_.RegisterFD(acceptor_->
listen_fd_
, this, EPOLLIN | EPOLLET);
123
int fd = accept(acceptor_->
listen_fd_
, &address, &socklen);
127
<< acceptor_->
listen_fd_
<< "): " << errno << ": "
139
int fd = accept(acceptor_->
listen_fd_
, &address, &socklen);
143
<< acceptor_->
listen_fd_
<< "): " << errno << ": "
flip_config.cc
60
&
listen_fd_
);
74
FlipSetNonBlocking(
listen_fd_
);
flip_config.h
57
int
listen_fd_
;
member in class:net::FlipAcceptor
http_interface_test.cc
90
if (acceptor_->
listen_fd_
>= 0) {
91
epoll_server_->UnregisterFD(acceptor_->
listen_fd_
);
92
close(acceptor_->
listen_fd_
);
93
acceptor_->
listen_fd_
= -1;
spdy_interface_test.cc
161
if (acceptor_->
listen_fd_
>= 0) {
162
epoll_server_->UnregisterFD(acceptor_->
listen_fd_
);
163
close(acceptor_->
listen_fd_
);
164
acceptor_->
listen_fd_
= -1;
Completed in 528 milliseconds