OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HttpServer
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/tools/fetch/
http_server.cc
8
HttpServer
::
HttpServer
(std::string ip, int port)
12
HttpServer
::~
HttpServer
() {
http_server.h
13
// Implements a simple, single-threaded
HttpServer
.
16
class
HttpServer
{
18
HttpServer
(std::string ip, int port);
19
~
HttpServer
();
23
DISALLOW_COPY_AND_ASSIGN(
HttpServer
);
/external/chromium/net/server/
http_server.h
20
class
HttpServer
: public ListenSocket::ListenSocketDelegate,
21
public base::RefCountedThreadSafe<
HttpServer
> {
39
HttpServer
(const std::string& host, int port,
HttpServer
::Delegate* del);
40
virtual ~
HttpServer
();
55
friend class base::RefCountedThreadSafe<
HttpServer
>;
59
friend class
HttpServer
;
61
explicit Connection(
HttpServer
* server, ListenSocket* sock);
68
HttpServer
* server_;
94
HttpServer
::Delegate* delegate_
[
all
...]
http_server.cc
24
int
HttpServer
::Connection::lastId_ = 0;
26
HttpServer
::
HttpServer
(const std::string& host,
28
HttpServer
::Delegate* del)
33
HttpServer
::~
HttpServer
() {
70
void
HttpServer
::AcceptWebSocket(
107
void
HttpServer
::SendOverWebSocket(int connection_id,
121
void
HttpServer
::Send(int connection_id, const std::string& data) {
129
void
HttpServer
::Send(int connection_id, const char* bytes, int len)
[
all
...]
Completed in 980 milliseconds