HomeSort by relevance Sort by last modified time
    Searched refs:HttpServerResponseInfo (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/net/server/
http_server_response_info.cc 13 HttpServerResponseInfo::HttpServerResponseInfo() : status_code_(HTTP_OK) {}
15 HttpServerResponseInfo::HttpServerResponseInfo(HttpStatusCode status_code)
18 HttpServerResponseInfo::~HttpServerResponseInfo() {}
21 HttpServerResponseInfo HttpServerResponseInfo::CreateFor404() {
22 HttpServerResponseInfo response(HTTP_NOT_FOUND);
28 HttpServerResponseInfo HttpServerResponseInfo::CreateFor500
    [all...]
http_server_response_info_unittest.cc 12 HttpServerResponseInfo response;
18 HttpServerResponseInfo response;
25 HttpServerResponseInfo response;
35 HttpServerResponseInfo response = HttpServerResponseInfo::CreateFor404();
43 HttpServerResponseInfo response =
44 HttpServerResponseInfo::CreateFor500("mess");
http_server_response_info.h 16 class HttpServerResponseInfo {
18 // Creates a 200 OK HttpServerResponseInfo.
19 HttpServerResponseInfo();
20 explicit HttpServerResponseInfo(HttpStatusCode status_code);
21 ~HttpServerResponseInfo();
23 static HttpServerResponseInfo CreateFor404();
24 static HttpServerResponseInfo CreateFor500(const std::string& body);
http_connection.h 17 class HttpServerResponseInfo;
27 void Send(const HttpServerResponseInfo& response);
http_connection.cc 28 void HttpConnection::Send(const HttpServerResponseInfo& response) {
http_server.h 20 class HttpServerResponseInfo;
54 void SendResponse(int connection_id, const HttpServerResponseInfo& response);
http_server.cc 58 const HttpServerResponseInfo& response) {
69 HttpServerResponseInfo response(status_code);
81 SendResponse(connection_id, HttpServerResponseInfo::CreateFor404());
85 SendResponse(connection_id, HttpServerResponseInfo::CreateFor500(message));
164 connection->Send(HttpServerResponseInfo::CreateFor500(
web_socket.cc 119 connection->Send(HttpServerResponseInfo::CreateFor500(
126 connection->Send(HttpServerResponseInfo::CreateFor500(
181 connection->Send(HttpServerResponseInfo::CreateFor500(
  /external/chromium_org/chrome/test/chromedriver/server/
http_handler_unittest.cc 32 void OnResponse(net::HttpServerResponseInfo* response_to_set,
33 scoped_ptr<net::HttpServerResponseInfo> response) {
45 net::HttpServerResponseInfo response;
55 net::HttpServerResponseInfo response;
69 net::HttpServerResponseInfo response;
89 net::HttpServerResponseInfo response;
102 net::HttpServerResponseInfo response;
114 net::HttpServerResponseInfo response;
http_handler.h 33 class HttpServerResponseInfo;
59 typedef base::Callback<void(scoped_ptr<net::HttpServerResponseInfo>)>
96 scoped_ptr<net::HttpServerResponseInfo> PrepareResponseHelper(
http_handler.cc 556 scoped_ptr<net::HttpServerResponseInfo> response(
557 new net::HttpServerResponseInfo(net::HTTP_BAD_REQUEST));
603 scoped_ptr<net::HttpServerResponseInfo> response(
604 new net::HttpServerResponseInfo(net::HTTP_NOT_FOUND));
620 scoped_ptr<net::HttpServerResponseInfo> response(
621 new net::HttpServerResponseInfo(net::HTTP_BAD_REQUEST));
644 scoped_ptr<net::HttpServerResponseInfo> response =
651 scoped_ptr<net::HttpServerResponseInfo> HttpHandler::PrepareResponseHelper(
657 scoped_ptr<net::HttpServerResponseInfo> response(
658 new net::HttpServerResponseInfo(net::HTTP_NOT_IMPLEMENTED))
    [all...]
chromedriver_server.cc 82 scoped_ptr<net::HttpServerResponseInfo> response) {
99 scoped_ptr<net::HttpServerResponseInfo> response) {
115 scoped_ptr<net::HttpServerResponseInfo> response(
116 new net::HttpServerResponseInfo(net::HTTP_UNAUTHORIZED));
  /external/chromium_org/content/browser/devtools/
devtools_http_handler_impl.cc 726 net::HttpServerResponseInfo response(status_code);

Completed in 314 milliseconds