HomeSort by relevance Sort by last modified time
    Searched refs:request_info (Results 26 - 50 of 154) sorted by null

12 3 4 5 6 7

  /external/chromium_org/net/ftp/
ftp_transaction.h 36 // request_info object alive until Destroy is called on the transaction.
41 virtual int Start(const FtpRequestInfo* request_info,
  /external/chromium_org/chrome/test/webdriver/
webdriver_dispatch.cc 40 void ReadRequestBody(const struct mg_request_info* const request_info,
46 if (request_info->http_headers[header_index].name == NULL) {
49 if (strcmp(request_info->http_headers[header_index].name,
51 content_length = atoi(request_info->http_headers[header_index].value);
102 const struct mg_request_info* request_info,
111 const struct mg_request_info* request_info,
134 request_info->request_method,
139 const struct mg_request_info* request_info,
157 const struct mg_request_info* request_info,
163 const struct mg_request_info* request_info,
    [all...]
webdriver_dispatch_unittest.cc 172 struct mg_request_info request_info; local
173 request_info.request_method = kGet;
174 request_info.uri = kTestPath;
183 &request_info,
198 struct mg_request_info request_info; local
199 request_info.request_method = kGet;
200 request_info.uri = kTestPath;
209 &request_info,
  /external/chromium/net/http/
http_stream_factory_impl.cc 53 const HttpRequestInfo& request_info,
57 Request* request = new Request(request_info.url, this, delegate, net_log);
61 GetAlternateProtocolRequestFor(request_info.url, &alternate_url);
64 HttpRequestInfo alternate_request_info = request_info;
69 alternate_job->MarkAsAlternate(request_info.url);
72 Job* job = new Job(this, session_, request_info, ssl_config, net_log);
90 const HttpRequestInfo& request_info,
95 GetAlternateProtocolRequestFor(request_info.url, &alternate_url);
98 HttpRequestInfo alternate_request_info = request_info;
101 job->MarkAsAlternate(request_info.url)
    [all...]
http_auth_handler_negotiate_unittest.cc 226 HttpRequestInfo request_info; local
229 &request_info,
245 HttpRequestInfo request_info; local
248 &request_info,
264 HttpRequestInfo request_info; local
267 &request_info,
283 HttpRequestInfo request_info; local
286 &request_info,
302 HttpRequestInfo request_info; local
305 NULL, NULL, &request_info, &callback, &token))
326 HttpRequestInfo request_info; local
340 HttpRequestInfo request_info; local
    [all...]
http_transaction.h 39 // request_info object alive until Destroy is called on the transaction.
44 virtual int Start(const HttpRequestInfo* request_info,
http_basic_stream.cc 30 int HttpBasicStream::InitializeStream(const HttpRequestInfo* request_info,
34 request_info_ = request_info;
35 parser_.reset(new HttpStreamParser(connection_.get(), request_info,
  /external/chromium_org/net/http/
http_auth_handler_negotiate_unittest.cc 224 HttpRequestInfo request_info; local
226 EXPECT_EQ(OK, auth_handler->GenerateAuthToken(NULL, &request_info,
242 HttpRequestInfo request_info; local
244 EXPECT_EQ(OK, auth_handler->GenerateAuthToken(NULL, &request_info,
260 HttpRequestInfo request_info; local
262 EXPECT_EQ(OK, auth_handler->GenerateAuthToken(NULL, &request_info,
278 HttpRequestInfo request_info; local
280 EXPECT_EQ(OK, auth_handler->GenerateAuthToken(NULL, &request_info,
296 HttpRequestInfo request_info; local
299 NULL, &request_info, callback.callback(), &token))
319 HttpRequestInfo request_info; local
335 HttpRequestInfo request_info; local
    [all...]
proxy_client_socket.cc 22 const HttpRequestInfo& request_info,
33 GetHostAndOptionalPort(request_info.url));
38 if (request_info.extra_headers.GetHeader(HttpRequestHeaders::kUserAgent,
http_basic_stream.cc 32 const HttpRequestInfo* request_info,
37 request_info_ = request_info;
39 connection_.get(), request_info, read_buf_.get(), net_log));
http_pipelined_stream.cc 29 const HttpRequestInfo* request_info,
33 request_info_ = request_info;
34 pipeline_->InitializeParser(pipeline_id_, request_info, net_log);
http_stream_parser_unittest.cc 225 HttpRequestInfo request_info; local
226 request_info.method = "GET";
227 request_info.url = GURL("http://localhost");
228 request_info.load_flags = LOAD_NORMAL;
229 request_info.upload_data_stream = &upload_stream;
233 socket_handle.get(), &request_info, read_buffer.get(), BoundNetLog());
380 HttpRequestInfo request_info; local
381 request_info.method = "GET";
383 request_info.url = GURL("http://localhost");
385 request_info.url = GURL("https://localhost")
    [all...]
  /external/chromium_org/net/websockets/
websocket_handshake_handler_unittest.cc 369 const HttpRequestInfo& request_info = local
372 EXPECT_EQ(url, request_info.url);
373 EXPECT_EQ("GET", request_info.method);
374 EXPECT_FALSE(request_info.extra_headers.HasHeader("Upgrade"));
375 EXPECT_FALSE(request_info.extra_headers.HasHeader("Connection"));
376 EXPECT_FALSE(request_info.extra_headers.HasHeader("Sec-WebSocket-Key1"));
377 EXPECT_FALSE(request_info.extra_headers.HasHeader("Sec-WebSocket-Key2"));
379 EXPECT_TRUE(request_info.extra_headers.GetHeader("Host", &value));
381 EXPECT_TRUE(request_info.extra_headers.GetHeader("Origin", &value));
383 EXPECT_TRUE(request_info.extra_headers.GetHeader("Sec-WebSocket-Protocol"
452 const HttpRequestInfo& request_info = local
    [all...]
  /external/chromium/net/websockets/
websocket_handshake_handler_unittest.cc 199 const HttpRequestInfo& request_info = local
202 EXPECT_EQ(url, request_info.url);
203 EXPECT_EQ("GET", request_info.method);
204 EXPECT_FALSE(request_info.extra_headers.HasHeader("Upgrade"));
205 EXPECT_FALSE(request_info.extra_headers.HasHeader("Connection"));
206 EXPECT_FALSE(request_info.extra_headers.HasHeader("Sec-WebSocket-Key1"));
207 EXPECT_FALSE(request_info.extra_headers.HasHeader("Sec-WebSocket-Key2"));
209 EXPECT_TRUE(request_info.extra_headers.GetHeader("Host", &value));
211 EXPECT_TRUE(request_info.extra_headers.GetHeader("Origin", &value));
213 EXPECT_TRUE(request_info.extra_headers.GetHeader("Sec-WebSocket-Protocol"
    [all...]
websocket_handshake_handler.cc 191 HttpRequestInfo request_info; local
192 request_info.url = url;
197 request_info.method = std::string(status_line_.data(), method_end);
199 request_info.extra_headers.Clear();
200 request_info.extra_headers.AddHeadersFromString(headers_);
202 request_info.extra_headers.RemoveHeader("Upgrade");
203 request_info.extra_headers.RemoveHeader("Connection");
207 request_info.extra_headers.GetHeader("Sec-WebSocket-Key1", &key);
208 request_info.extra_headers.RemoveHeader("Sec-WebSocket-Key1");
211 request_info.extra_headers.GetHeader("Sec-WebSocket-Key2", &key)
    [all...]
  /external/chromium_org/content/child/
resource_dispatcher_unittest.cc 166 webkit_glue::ResourceLoaderBridge::RequestInfo request_info; local
167 request_info.method = "GET";
168 request_info.url = GURL(test_page_url);
169 request_info.first_party_for_cookies = GURL(test_page_url);
170 request_info.referrer = GURL();
171 request_info.headers = std::string();
172 request_info.load_flags = 0;
173 request_info.requestor_pid = 0;
174 request_info.request_type = ResourceType::SUB_RESOURCE;
175 request_info.appcache_host_id = appcache::kNoHostId
    [all...]
webkitplatformsupport_impl.h 30 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info)
  /external/chromium/chrome/browser/automation/
url_request_automation_job.cc 102 ResourceDispatcherHostRequestInfo* request_info = NULL; local
104 request_info = ResourceDispatcherHost::InfoForRequest(request);
105 if (request_info) {
106 int child_id = request_info->child_id();
107 int route_id = request_info->route_id();
112 details.tab_handle, request_info->request_id(), details.filter,
237 ResourceDispatcherHostRequestInfo* request_info = local
239 if (request_info) {
240 return request_info->upload_size();
442 ResourceDispatcherHostRequestInfo* request_info local
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_read_file_worker.h 34 // |request_info| specifies the snapshot file request params.
37 const SnapshotRequestInfo& request_info,
  /external/chromium_org/ppapi/cpp/
url_loader.h 53 /// @param[in] request_info A <code>URLRequestInfo</code> corresponding to a
62 int32_t Open(const URLRequestInfo& request_info,
  /external/chromium_org/chrome/browser/extensions/api/location/
location_api.cc 33 params->request_info.min_distance_in_meters.get();
42 params->request_info.min_time_in_milliseconds.get();
50 // TODO(vadimt): validate and use params->request_info.maximumAge
  /external/chromium_org/chrome/browser/thumbnails/
render_widget_snapshot_taker.cc 79 linked_ptr<AsyncRequestInfo> request_info(new AsyncRequestInfo);
80 request_info->callback = callback;
81 request_info->thumbnail_dib.reset(thumbnail_dib.release());
82 request_info->renderer = renderer;
83 SnapshotCallbackMap::value_type new_value(sequence_num, request_info);
  /external/chromium_org/content/renderer/media/
media_stream_impl.cc 302 UserMediaRequestInfo* request_info = FindUserMediaRequestInfo(request_id); local
303 if (!request_info) {
311 request_info->generated = true;
318 request_info->audio_sources.assign(audio_source_vector);
324 request_info->video_sources.assign(video_source_vector);
326 WebKit::WebUserMediaRequest* request = &(request_info->request);
328 WebKit::WebMediaStream* web_stream = &(request_info->web_stream);
366 UserMediaRequestInfo* request_info = FindUserMediaRequestInfo(request_id); local
367 if (!request_info) {
373 CompleteGetUserMediaRequest(request_info->web_stream
402 UserMediaRequestInfo* request_info = FindUserMediaRequestInfo(web_stream); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_host_resolver_message_filter.cc 36 net::HostResolver::RequestInfo* request_info) {
37 DCHECK(request_info);
50 request_info->set_address_family(address_family);
57 request_info->set_host_resolver_flags(host_resolver_flags);
171 net::HostResolver::RequestInfo request_info(
173 PrepareRequestInfo(hint, &request_info);
181 request_info,
  /external/chromium_org/content/renderer/pepper/
pepper_url_request_unittest.cc 125 const PPB_URLRequestInfo* request_info = local
127 EXPECT_TRUE(request_info);
128 EXPECT_TRUE(request_info->Create);
129 EXPECT_TRUE(request_info->IsURLRequestInfo);
130 EXPECT_TRUE(request_info->SetProperty);
131 EXPECT_TRUE(request_info->AppendDataToBody);
132 EXPECT_TRUE(request_info->AppendFileToBody);

Completed in 560 milliseconds

12 3 4 5 6 7