Home | History | Annotate | Download | only in http

Lines Matching refs:status_code

121                                       int status_code,
124 auto handler = [](int status_code,
129 response->ReplyText(status_code, reply_text, mime_type);
132 url, method, base::Bind(handler, status_code, reply_text, mime_type));
236 void ServerResponse::Reply(int status_code,
241 status_code_ = status_code;
248 void ServerResponse::ReplyText(int status_code,
251 Reply(status_code, text.data(), text.size(), mime_type);
254 void ServerResponse::ReplyJson(int status_code, const base::Value* json) {
262 ReplyText(status_code, text, mime_type);
265 void ServerResponse::ReplyJson(int status_code,
271 ReplyJson(status_code, &json);