/external/apache-http/src/org/apache/http/message/ |
BasicHeaderValueFormatter.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/message/BasicHeaderValueFormatter.java $ 15 * http://www.apache.org/licenses/LICENSE-2.0 28 * <http://www.apache.org/>. 32 package org.apache.http.message; 34 import org.apache.http.HeaderElement; 35 import org.apache.http.NameValuePair; 36 import org.apache.http.util.CharArrayBuffer; 54 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a [all...] |
/external/autotest/frontend/afe/json_rpc/ |
serviceHandler_unittest.py | 33 "params": ["http://www.some.url.com/path/to/package.rpm"],
|
/external/bcc/examples/lua/ |
bashreadline.lua | 9 http://www.apache.org/licenses/LICENSE-2.0
|
/external/bcc/scripts/ |
build-release-rpm.sh | 20 wget -P $TMP/SOURCES http://llvm.org/releases/$llvmver/{cfe,llvm}-$llvmver.src.tar.xz
|
/external/cmockery/cmockery_0_1_2/packages/rpm/ |
rpm.spec | 15 URL: http://code.google.com/p/cmockery 19 Source: http://%{NAME}.googlecode.com/files/%{NAME}-%{VERSION}.tar.gz
|
/external/grpc-grpc/src/core/lib/http/ |
httpcli.h | 9 * http://www.apache.org/licenses/LICENSE-2.0 28 #include "src/core/lib/http/parser.h" 37 /* Tracks in-progress http requests 63 grpc_http_request http; member in struct:grpc_httpcli_request 74 /* Asynchronously perform a HTTP GET. 75 'context' specifies the http context under which to do the get 90 /* Asynchronously perform a HTTP POST. 91 'context' specifies the http context under which to do the post
|
parser.h | 9 * http://www.apache.org/licenses/LICENSE-2.0 60 /* HTTP version to use */ 72 /* HTTP status code */ 90 } http; member in struct:__anon23108
|
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
ServletDefinition.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 41 import javax.servlet.http.HttpServlet; 42 import javax.servlet.http.HttpServletRequest; 43 import javax.servlet.http.HttpServletRequestWrapper; 44 import javax.servlet.http.HttpServletResponse;
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
ContinuingRequestIntegrationTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 45 import javax.servlet.http.Cookie; 46 import javax.servlet.http.HttpServlet; 47 import javax.servlet.http.HttpServletRequest; 48 import javax.servlet.http.HttpServletResponse;
|
ServletUtilsTest.java | 10 import javax.servlet.http.HttpServletRequest;
|
/external/libaom/ |
update_libaom.sh | 42 elif [[ $1 = http* ]]; then
|
/external/libbrillo/brillo/http/ |
http_request_unittest.cc | 5 #include <brillo/http/http_request.h> 11 #include <brillo/http/mock_connection.h> 12 #include <brillo/http/mock_transport.h> 27 namespace http { namespace in namespace:brillo 69 Request request{"http://www.foo.bar", request_type::kPost, transport_}; 74 EXPECT_EQ("http://www.foo.bar", request.GetRequestURL()); 77 Request request2{"http://www.foo.bar/baz", request_type::kGet, transport_}; 78 EXPECT_EQ("http://www.foo.bar/baz", request2.GetRequestURL()); 83 Request request{"http://www.foo.bar", request_type::kPost, transport_}; 89 Request request{"http://www.foo.bar", request_type::kPost, transport_} [all...] |
http_transport.h | 21 namespace http { namespace in namespace:brillo 39 // Transport is a base class for specific implementation of HTTP communication. 40 // This class (and its underlying implementation) is used by http::Request and 41 // http::Response classes to provide HTTP functionality to the clients. 90 // Creates a default http::Transport (currently, using http::curl::Transport). 93 // Creates a default http::Transport that will utilize the passed in proxy 94 // server (currently, using a http::curl::Transport). |proxy| should be of the 104 } // namespace http [all...] |
/external/libnl/doc/ |
configure.ac | 12 AC_INIT(libnl-doc, [3.2.25], [http://www.infradead.org/~tgr/libnl/]) 69 AC_MSG_WARN([*** mscgen not found, get it at http://www.mcternan.me.uk/mscgen/])
|
/external/libxml2/python/tests/ |
validSchemas.py | 21 <schema xmlns = "http://www.w3.org/2001/XMLSchema">
|
/external/ltp/testcases/realtime/ |
README | 23 from http://rt.wiki.kernel.org. This testsuite is maintained by the IBM 25 the discussion list also available at: http://rt.wiki.kernel.org.
|
/external/oauth/core/src/main/java/net/oauth/ |
OAuthAccessor.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 25 import net.oauth.http.HttpMessage; 66 * the HTTP request method. If this is null, use the default
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpMessageDecoder.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 17 package net.oauth.http;
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
HttpDate.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 17 package com.squareup.okhttp.internal.http; 27 * Best-effort parser for HTTP dates. 50 // HTTP formats required by RFC2616 but with any timezone.
|
RequestLine.java | 1 package com.squareup.okhttp.internal.http; 13 * Returns the request status line, like "GET / HTTP/1.1". This is exposed 28 result.append(" HTTP/1.1"); 34 * and port (like "GET http://android.com/foo HTTP/1.1") or only the path 35 * (like "GET /foo HTTP/1.1"). 38 return !request.isHttps() && proxyType == Proxy.Type.HTTP; 42 * Returns the path to request, like the '/' in 'GET / HTTP/1.1'. Never empty,
|
RetryableSink.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 17 package com.squareup.okhttp.internal.http; 28 * An HTTP request body that's completely buffered in memory. This allows 29 * the post body to be transparently re-sent if the HTTP request must be
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
FakeDns.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package com.squareup.okhttp.internal.http;
|
RecordingProxySelector.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 16 package com.squareup.okhttp.internal.http;
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/ |
RequestLine.java | 2 package com.android.okhttp.internal.http; 17 * Returns the request status line, like "GET / HTTP/1.1". This is exposed 32 result.append(" HTTP/1.1"); 38 * and port (like "GET http://android.com/foo HTTP/1.1") or only the path 39 * (like "GET /foo HTTP/1.1"). 42 return !request.isHttps() && proxyType == Proxy.Type.HTTP; 46 * Returns the path to request, like the '/' in 'GET / HTTP/1.1'. Never empty,
|
RetryableSink.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 18 package com.android.okhttp.internal.http; 29 * An HTTP request body that's completely buffered in memory. This allows 30 * the post body to be transparently re-sent if the HTTP request must be
|