HomeSort by relevance Sort by last modified time
    Searched refs:http (Results 601 - 625 of 4370) sorted by null

<<21222324252627282930>>

  /external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
TestHttpResponse.java 13 import org.apache.http.Header;
14 import org.apache.http.HeaderIterator;
15 import org.apache.http.HttpEntity;
16 import org.apache.http.HttpVersion;
17 import org.apache.http.ProtocolVersion;
18 import org.apache.http.StatusLine;
19 import org.apache.http.params.BasicHttpParams;
20 import org.apache.http.params.HttpParams;
241 return "HTTP status " + statusCode;
  /external/skia/infra/lottiecap/docker/
lottiecap_gold.sh 32 --post_to http://localhost:8081/report_gold_data \
37 # This curl command gets the HTTP code and stores it into $CODE
  /external/skqp/infra/lottiecap/docker/
lottiecap_gold.sh 32 --post_to http://localhost:8081/report_gold_data \
37 # This curl command gets the HTTP code and stores it into $CODE
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
merge.sh 71 if ! svn ls http://llvm.org/svn/llvm-project/$proj/trunk > /dev/null 2>&1 ; then
83 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
  /external/syzkaller/dashboard/app/
reporting_external.go 9 "net/http"
28 func apiReportingPollBugs(c context.Context, r *http.Request, payload []byte) (interface{}, error) {
40 func apiReportingPollClosed(c context.Context, r *http.Request, payload []byte) (interface{}, error) {
56 func apiReportingUpdate(c context.Context, r *http.Request, payload []byte) (interface{}, error) {
  /external/u-boot/drivers/video/fonts/
Kconfig 18 http://www.gnu.org/copyleft/gpl.html
30 http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
39 http://www.gnu.org/copyleft/gpl.html
49 http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
  /external/volley/src/test/java/com/android/volley/toolbox/
HttpClientStackTest.java 8 * http://www.apache.org/licenses/LICENSE-2.0
25 import org.apache.http.client.methods.HttpDelete;
26 import org.apache.http.client.methods.HttpGet;
27 import org.apache.http.client.methods.HttpHead;
28 import org.apache.http.client.methods.HttpOptions;
29 import org.apache.http.client.methods.HttpPost;
30 import org.apache.http.client.methods.HttpPut;
31 import org.apache.http.client.methods.HttpTrace;
32 import org.apache.http.client.methods.HttpUriRequest;
  /external/webrtc/webrtc/base/
httprequest.h 103 void Connect(HttpClient* http);
104 void OnHttpClientComplete(HttpClient * http, HttpErrorType error);
  /external/zlib/
update_zlib.sh 12 new_version=$(wget -O - --no-verbose -q http://zlib.net/ | \
21 wget -O /tmp/$tgz_file --no-verbose "http://zlib.net/$tgz_file"
  /external/llvm/utils/release/
build_llvm_package.bat 5 REM used for the the weekly snapshots at http://www.llvm.org/builds.
38 svn.exe export -r %revision% http://llvm.org/svn/llvm-project/llvm/%branch% llvm || exit /b
39 svn.exe export -r %revision% http://llvm.org/svn/llvm-project/cfe/%branch% llvm/tools/clang || exit /b
40 svn.exe export -r %revision% http://llvm.org/svn/llvm-project/clang-tools-extra/%branch% llvm/tools/clang/tools/extra || exit /b
41 svn.exe export -r %revision% http://llvm.org/svn/llvm-project/lld/%branch% llvm/tools/lld || exit /b
42 svn.exe export -r %revision% http://llvm.org/svn/llvm-project/compiler-rt/%branch% llvm/projects/compiler-rt || exit /b
43 svn.exe export -r %revision% http://llvm.org/svn/llvm-project/openmp/%branch% llvm/projects/openmp || exit /b
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
AbstractConnPool.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/conn/tsccm/AbstractConnPool.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
27 * <http://www.apache.org/>.
31 package org.apache.http.impl.conn.tsccm;
45 import org.apache.http.conn.ConnectionPoolTimeoutException;
46 import org.apache.http.conn.OperatedClientConnection;
47 import org.apache.http.conn.routing.HttpRoute;
48 import org.apache.http.impl.conn.IdleConnectionHandler;
59 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a
    [all...]
  /external/curl/docs/examples/
smooth-gtk-thread.c 72 gchar *http; local
80 http =
84 printf("http %s", http);
92 curl_easy_setopt(curl, CURLOPT_URL, http);
108 g_free(http);
  /external/libbrillo/brillo/http/
http_connection_fake.cc 5 #include <brillo/http/http_connection_fake.h>
9 #include <brillo/http/http_request.h>
15 namespace http { namespace in namespace:brillo
20 const std::shared_ptr<http::Transport>& transport)
21 : http::Connection(transport), request_(url, method) {
119 } // namespace http
http_utils_unittest.cc 11 #include <brillo/http/http_transport_fake.h>
12 #include <brillo/http/http_utils.h>
19 namespace http { namespace in namespace:brillo
21 static const char kFakeUrl[] = "http://localhost";
22 static const char kEchoUrl[] = "http://localhost/echo";
23 static const char kMethodEchoUrl[] = "http://localhost/echo/method";
50 http::SendRequestAndBlock(request_type::kPost,
73 std::unique_ptr<http::Response> response) {
82 http::SendRequest(request_type::kPost,
100 // Check the correct HTTP method used
    [all...]
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
GZipIntegrationTest.java 47 import org.apache.http.Header;
48 import org.apache.http.HttpResponse;
49 import org.apache.http.client.methods.HttpGet;
50 import org.apache.http.impl.client.DecompressingHttpClient;
51 import org.apache.http.util.EntityUtils;
85 HttpGet request = new HttpGet("http://localhost:8192/");
97 HttpGet request = new HttpGet("http://localhost:8192/");
108 HttpGet request = new HttpGet("http://localhost:8192/");
119 HttpGet request = new HttpGet("http://localhost:8192/");
129 HttpGet request = new HttpGet("http://localhost:8192/")
    [all...]
  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
TestHttpServer.java 43 import org.apache.http.HttpEntity;
44 import org.apache.http.client.methods.CloseableHttpResponse;
45 import org.apache.http.client.methods.HttpGet;
46 import org.apache.http.impl.client.CloseableHttpClient;
47 import org.apache.http.impl.client.HttpClients;
93 HttpGet httpget = new HttpGet("http://localhost:9090/xxx/yyy.html");
102 HttpGet httpget = new HttpGet("http://localhost:9090/index.xml");
108 httpget = new HttpGet("http://localhost:9090/testdir/testdir/different.xml");
118 HttpGet httpget = new HttpGet("http://localhost:9090/testdir/test.html");
125 httpget = new HttpGet("http://localhost:9090/")
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 8 * http://www.apache.org/licenses/LICENSE-2.0
27 import net.oauth.http.HttpMessage;
28 import net.oauth.http.HttpResponseMessage;
39 * Construct an OAuthMessage from the HTTP response, including parameters
94 /** Return a complete description of the HTTP exchange. */
107 HttpURLConnection http = (connection instanceof HttpURLConnection) ? (HttpURLConnection) connection local
113 if (i == 0 && name != null && http != null) {
114 String firstLine = "HTTP " + getStatusCode();
115 String message = http.getResponseMessage();
  /external/python/oauth2client/tests/
test_transport.py 7 # http://www.apache.org/licenses/LICENSE-2.0
39 self.assertIsInstance(cached_http, httplib2.Http)
51 @mock.patch.object(httplib2, 'Http', return_value=object())
126 http = mock.Mock()
127 http.request = orig_req_method = object()
128 result = transport.wrap_http_for_auth(credentials, http)
130 self.assertNotEqual(http.request, orig_req_method)
131 self.assertIs(http.request.credentials, credentials)
  /external/syzkaller/vendor/google.golang.org/appengine/internal/
api.go 17 "net/http"
42 ticketHeader = http.CanonicalHeaderKey("X-AppEngine-API-Ticket")
43 dapperHeader = http.CanonicalHeaderKey("X-Google-DapperTraceInfo")
44 traceHeader = http.CanonicalHeaderKey("X-Cloud-Trace-Context")
45 curNamespaceHeader = http.CanonicalHeaderKey("X-AppEngine-Current-Namespace")
46 userIPHeader = http.CanonicalHeaderKey("X-AppEngine-User-IP")
47 remoteAddrHeader = http.CanonicalHeaderKey("X-AppEngine-Remote-Addr")
50 apiEndpointHeader = http.CanonicalHeaderKey("X-Google-RPC-Service-Endpoint")
52 apiMethodHeader = http.CanonicalHeaderKey("X-Google-RPC-Service-Method")
54 apiDeadlineHeader = http.CanonicalHeaderKey("X-Google-RPC-Service-Deadline"
    [all...]
  /external/python/oauth2client/tests/contrib/
test_multiprocess_file_storage.py 7 # http://www.apache.org/licenses/LICENSE-2.0
71 http = HttpMockSequence([
75 return http
124 http = _generate_token_response_http()
125 credentials.refresh(http)
159 http = _generate_token_response_http('b')
160 credentials.refresh(http)
173 http = mock.Mock()
174 credentials.refresh(http=http)
    [all...]
  /external/libevent/test/
regress_http.c 58 #include "event2/http.h"
65 #include "http-internal.h"
464 struct evhttp *http = http_setup(&port, data->base, server_flags); local
470 if (http_bind(http, &port2, server_flags) == -1) {
482 /* first half of the http request */
484 "GET /test HTTP/1.1\r\n"
509 "GET /test HTTP/1.1\r\n"
532 "GET http://somehost.net/test HTTP/1.1\r\n"
543 evhttp_free(http);
647 struct evhttp *http = http_setup(&port, data->base, 0); local
768 struct evhttp *http = http_setup(&port, data->base, 0); local
852 struct evhttp *http = http_setup(&port, data->base, 0); local
913 struct evhttp *http = http_setup(&port, data->base, 0); local
1021 struct evhttp *http; local
1150 struct evhttp *http = http_setup(&port, data->base, 0); local
1241 struct evhttp *http = http_setup(&port, data->base, 0); local
1426 struct evhttp *http = http_setup(&port, data->base, 0); local
1629 struct evhttp *http = http_setup(&port, data->base, 0); local
1879 struct evhttp *http = http_setup(&port, data->base, 0); local
1928 struct evhttp *http = http_setup(&port, data->base, 0); local
2067 struct evhttp *http = http_setup(&port, data->base, 0); local
2192 struct evhttp *http = http_setup(&port, data->base, 0); local
2282 struct evhttp *http = http_setup(&port, data->base, 0); local
2958 struct evhttp *http; local
3045 struct evhttp *http = http_setup(&port, data->base, ssl ? HTTP_BIND_SSL : 0); local
3264 struct evhttp *http = http_setup(&port, data->base, ssl ? HTTP_BIND_SSL : 0); local
3340 struct evhttp *http = http_setup(&port, data->base, ssl ? HTTP_BIND_SSL : 0); local
3413 struct evhttp *http = http_setup(&port, data->base, 0); local
3485 struct evhttp *http = http_setup(&port, data->base, 0); local
3537 struct evhttp *http = http_setup(&port, data->base, ssl ? HTTP_BIND_SSL : 0); local
3594 struct evhttp *http; member in struct:http_server
3612 struct evhttp *http = http_setup(&hs.port, data->base, ssl ? HTTP_BIND_SSL : 0); local
3655 struct evhttp *http = http_setup(&hs.port, data->base, ssl ? HTTP_BIND_SSL : 0); local
3816 struct evhttp *http = NULL; local
3850 struct evhttp *http = http_setup(&port, data->base, 0); local
3915 struct evhttp *http = http_setup(&port, data->base, 0); local
3985 struct evhttp *http = http_setup(&port, data->base, 0); local
4105 struct evhttp *http = http_setup(&port, data->base, 0); local
4258 struct evhttp *http = http_setup(&port, data->base, 0); local
4380 struct evhttp *http = http_setup(&port, data->base, 0); local
4449 struct evhttp *http = http_setup(&port, data->base, ssl ? HTTP_BIND_SSL : 0); local
4486 struct evhttp *http = http_setup(&port, data->base, 0); local
    [all...]
  /external/skia/infra/lottiecap/gold/
lottie-web-aggregator.go 24 "net/http"
83 http.HandleFunc("/report_gold_data", reporter)
84 http.HandleFunc("/dump_json", dumpJSON)
88 log.Fatal(http.ListenAndServe(":"+*port, nil))
94 func reporter(w http.ResponseWriter, r *http.Request) {
96 http.Error(w, "Only POST accepted", 400)
103 http.Error(w, "Malformed body", 400)
110 http.Error(w, "Could not unmarshal JSON", 400)
117 http.Error(w, "Could not write image to disk", 500
    [all...]
  /external/skia/infra/pathkit/gold/
wasm_gold_aggregator.go 22 "net/http"
89 http.HandleFunc("/report_gold_data", reporter)
90 http.HandleFunc("/dump_json", dumpJSON)
94 log.Fatal(http.ListenAndServe(":"+*port, nil))
100 func reporter(w http.ResponseWriter, r *http.Request) {
102 http.Error(w, "Only POST accepted", 400)
109 http.Error(w, "Malformed body", 400)
116 http.Error(w, "Could not unmarshal JSON", 400)
123 http.Error(w, "Could not write image to disk", 500
    [all...]
  /external/skqp/infra/lottiecap/gold/
lottie-web-aggregator.go 24 "net/http"
83 http.HandleFunc("/report_gold_data", reporter)
84 http.HandleFunc("/dump_json", dumpJSON)
88 log.Fatal(http.ListenAndServe(":"+*port, nil))
94 func reporter(w http.ResponseWriter, r *http.Request) {
96 http.Error(w, "Only POST accepted", 400)
103 http.Error(w, "Malformed body", 400)
110 http.Error(w, "Could not unmarshal JSON", 400)
117 http.Error(w, "Could not write image to disk", 500
    [all...]
  /external/skqp/infra/pathkit/gold/
wasm_gold_aggregator.go 22 "net/http"
89 http.HandleFunc("/report_gold_data", reporter)
90 http.HandleFunc("/dump_json", dumpJSON)
94 log.Fatal(http.ListenAndServe(":"+*port, nil))
100 func reporter(w http.ResponseWriter, r *http.Request) {
102 http.Error(w, "Only POST accepted", 400)
109 http.Error(w, "Malformed body", 400)
116 http.Error(w, "Could not unmarshal JSON", 400)
123 http.Error(w, "Could not write image to disk", 500
    [all...]

Completed in 1901 milliseconds

<<21222324252627282930>>