HomeSort by relevance Sort by last modified time
    Searched refs:headers (Results 251 - 275 of 590) sorted by null

<<11121314151617181920>>

  /external/chromium/net/http/
http_auth_controller.h 57 virtual int HandleAuthChallenge(scoped_refptr<HttpResponseHeaders> headers,
http_basic_stream.h 47 virtual int SendRequest(const HttpRequestHeaders& headers,
http_util.h 53 // Scans the headers and look for the first "Range" header in |headers|,
59 static bool ParseRanges(const std::string& headers,
67 // Scans the '\r\n'-delimited headers for the given header name. Returns
70 static bool HasHeader(const std::string& headers, const char* name);
72 // Strips all header lines from |headers| whose name matches
76 static std::string StripHeaders(const std::string& headers,
80 // Multiple occurances of some headers cannot be coalesced into a comma-
120 // Returns index beyond the end-of-headers marker or -1 if not found. RFC
121 // 2616 defines the end-of-headers marker as a double CRLF; however, som
    [all...]
http_network_transaction_unittest.cc 175 EXPECT_TRUE(response->headers != NULL);
176 out.status_line = response->headers->GetStatusLine();
610 // Check that the headers got parsed.
611 EXPECT_TRUE(response->headers != NULL);
612 EXPECT_EQ(1234, response->headers->GetContentLength());
613 EXPECT_EQ("HTTP/1.1 404 Not Found", response->headers->GetStatusLine());
617 bool has_server_header = response->headers->EnumerateHeader(
667 EXPECT_TRUE(response->headers != NULL);
668 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine());
709 EXPECT_TRUE(response->headers != NULL)
    [all...]
  /external/icu4c/tools/ctestfw/unicode/
testdata.h 24 * number of entries in headers. Default headers can be specified in
25 * the TestDataModule info section. The default headers will be overriden
26 * by per-test headers.
95 RBTestData(UResourceBundle *data, UResourceBundle *headers, UErrorCode& status);
  /external/protobuf/
configure.ac 111 AC_MSG_RESULT([headers missing or too old (requires 1.2.0.4)])
113 AC_MSG_FAILURE([--with-zlib was given, but zlib headers were not present or were too old (requires 1.2.0.4)])
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 94 // Remove existing headers first, as some of them may no longer be present in the map.
177 if (CFDictionaryRef headers = CFURLRequestCopyAllHTTPHeaderFields(m_cfRequest.get())) {
178 CFIndex headerCount = CFDictionaryGetCount(headers);
181 CFDictionaryGetKeysAndValues(headers, keys.data(), values.data());
184 CFRelease(headers);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.h 88 extern void notifyStream(PluginObject* object, const char *url, const char *headers);
  /frameworks/base/core/java/android/net/http/
HttpsConnection.java 171 // handler with the response status and headers. The event
203 Headers headers = new Headers(); local
208 // add all 'proxy' headers from the original request, we also need
223 // codes prior to receiving actual headers;
227 statusLine = proxyConnection.parseResponseHeader(headers);
280 req.mEventHandler.headers(headers);
AndroidHttpClient.java 464 Header[] headers; local
465 headers = request.getHeaders(Headers.CONTENT_ENCODING);
466 if (headers != null) {
467 for (Header header : headers) {
474 headers = request.getHeaders(Headers.CONTENT_TYPE);
475 if (headers != null) {
476 for (Header header : headers) {
  /frameworks/base/core/java/android/webkit/
HTML5Audio.java 217 Map<String, String> headers = new HashMap<String, String>(); local
220 headers.put(COOKIE, cookieValue);
223 headers.put(HIDE_URL_LOGS, "true");
226 mMediaPlayer.setDataSource(url, headers);
HTML5VideoView.java 171 Map<String, String> headers = new HashMap<String, String>(); local
173 headers.put(COOKIE, cookieValue);
176 headers.put(HIDE_URL_LOGS, "true");
179 return headers;
  /frameworks/base/include/media/
mediametadataretriever.h 70 const KeyedVector<String8, String8> *headers = NULL);
  /frameworks/base/include/media/stagefright/
DataSource.h 47 const KeyedVector<String8, String8> *headers = NULL);
  /frameworks/base/media/libmediaplayerservice/
MetadataRetrieverClient.h 46 const char *url, const KeyedVector<String8, String8> *headers);
StagefrightPlayer.h 37 const char *url, const KeyedVector<String8, String8> *headers);
  /frameworks/base/media/libstagefright/include/
HTTPBase.h 38 const KeyedVector<String8, String8> *headers = NULL,
  /external/chromium/net/spdy/
spdy_network_transaction_unittest.cc 167 ASSERT_TRUE(response->headers != NULL);
168 EXPECT_EQ("HTTP/1.1 200 OK", response->headers->GetStatusLine());
183 output_.status_line = response->headers->GetStatusLine();
692 EXPECT_TRUE(response1->headers != NULL);
694 out.status_line = response1->headers->GetStatusLine();
773 EXPECT_TRUE(response1->headers != NULL);
775 out.status_line = response1->headers->GetStatusLine();
783 EXPECT_TRUE(response2->headers != NULL);
785 out.status_line = response2->headers->GetStatusLine();
3276 scoped_refptr<HttpResponseHeaders> headers = out.response_info.headers; local
3438 scoped_refptr<HttpResponseHeaders> headers = out.response_info.headers; local
3478 const char* headers[10]; member in struct:net::InvalidSynReplyTests
3719 spdy::SpdyHeaderBlock* headers = local
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
malware_details_unittest.cc 55 void WriteHeaders(disk_cache::Entry* entry, const std::string headers) {
58 headers.c_str(), headers.size());
59 responseinfo.headers = new net::HttpResponseHeaders(raw_headers);
87 const std::string headers, const std::string data) {
97 WriteHeaders(entry, headers);
267 EXPECT_EQ(expected->response().headers(i).name(),
268 resource->response().headers(i).name());
269 EXPECT_EQ(expected->response().headers(i).value(),
270 resource->response().headers(i).value())
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 119 // cells have borders, or use attributes like headers, abbr, scope or axis
178 if (!cellElement->headers().isEmpty() || !cellElement->abbr().isEmpty()
390 void AccessibilityTable::rowHeaders(AccessibilityChildrenVector& headers)
402 headers.append(header);
406 void AccessibilityTable::columnHeaders(AccessibilityChildrenVector& headers)
418 headers.append(header);
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkManager.js 82 resource.requestHeaders = request.headers;
94 resource.responseHeaders = response.headers;
120 return response && !response.status && !response.mimeType && !Object.keys(response.headers).length;
261 resource.requestHeaders = request.headers;
276 resource.responseHeaders = response.headers;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
AccordionControl.java 56 * The visual appearance of the headers is built in; it uses a mild gradient, with a
139 List<CLabel> headers = new ArrayList<CLabel>(); local
142 headers.add((CLabel) c);
146 return headers;
191 * @param headers a list of headers, whose {@link Object#toString} method should
196 * @param expand Set of headers to expand initially
198 public AccordionControl(Composite parent, int style, List<?> headers,
216 for (Object header : headers) {
  /external/chromium/net/url_request/
url_request_unittest.cc 798 path = path.Append(FILE_PATH_LITERAL("with-headers.html"));
972 HttpRequestHeaders headers; local
973 headers.SetHeader(HttpRequestHeaders::kRange,
977 r.SetExtraRequestHeaders(headers);
1016 HttpRequestHeaders headers; local
1017 headers.SetHeader(HttpRequestHeaders::kRange,
1020 r.SetExtraRequestHeaders(headers);
1053 HttpRequestHeaders headers; local
1088 const HttpResponseHeaders* headers = req.response_headers(); local
1379 HttpRequestHeaders headers; local
1391 HttpRequestHeaders headers; local
1405 HttpRequestHeaders headers; local
1906 HttpRequestHeaders headers; local
1947 HttpRequestHeaders headers; local
2810 HttpRequestHeaders headers; local
2856 HttpRequestHeaders headers; local
2885 HttpRequestHeaders headers; local
    [all...]
  /external/chromium/third_party/libevent/
http.c 214 static int evhttp_add_header_internal(struct evkeyvalq *headers,
375 * Create the headers needed for an HTTP request
401 evhttp_is_connection_close(int flags, struct evkeyvalq* headers)
405 const char *connection = evhttp_find_header(headers, "Proxy-Connection");
408 const char *connection = evhttp_find_header(headers, "Connection");
414 evhttp_is_connection_keepalive(struct evkeyvalq* headers)
416 const char *connection = evhttp_find_header(headers, "Connection");
422 evhttp_maybe_add_date_header(struct evkeyvalq *headers)
424 if (evhttp_find_header(headers, "Date") == NULL) {
439 evhttp_add_header(headers, "Date", date)
1490 struct evkeyvalq* headers = req->input_headers; local
1533 struct evkeyvalq *headers = req->input_headers; local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 192 static PassRefPtr<InspectorObject> buildObjectForHeaders(const HTTPHeaderMap& headers)
195 HTTPHeaderMap::const_iterator end = headers.end();
196 for (HTTPHeaderMap::const_iterator it = headers.begin(); it != end; ++it)
224 requestObject->setObject("headers", buildObjectForHeaders(request.httpHeaderFields()));
247 responseObject->setObject("headers", buildObjectForHeaders(response.resourceLoadInfo()->responseHeaders));
255 responseObject->setObject("headers", buildObjectForHeaders(response.httpHeaderFields()));
311 RefPtr<InspectorObject> headers = m_state->getObject(ResourceAgentState::extraRequestHeaders); local
313 if (headers) {
314 InspectorObject::const_iterator end = headers->end();
315 for (InspectorObject::const_iterator it = headers->begin(); it != end; ++it)
    [all...]

Completed in 1498 milliseconds

<<11121314151617181920>>