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

<<61626364656667686970>>

  /external/opencensus-java/contrib/http_util/src/main/java/io/opencensus/contrib/http/util/
HttpMeasureConstants.java 8 * http://www.apache.org/licenses/LICENSE-2.0
17 package io.opencensus.contrib.http.util;
25 * A helper class which holds OpenCensus's default HTTP {@link Measure}s and {@link TagKey}s.
48 "opencensus.io/http/client/sent_bytes",
62 "opencensus.io/http/client/received_bytes",
74 "opencensus.io/http/client/roundtrip_latency",
87 "opencensus.io/http/server/received_bytes",
101 "opencensus.io/http/server/sent_bytes",
113 "opencensus.io/http/server/server_latency",
119 * {@link TagKey} for the value of the client-side HTTP host header
    [all...]
HttpViews.java 8 * http://www.apache.org/licenses/LICENSE-2.0
17 package io.opencensus.contrib.http.util;
26 * A helper class that allows users to register HTTP views easily.
53 * <p>It is recommended to call this method before doing any HTTP call to avoid missing stats.
71 * <p>It is recommended to call this method before doing any HTTP call to avoid missing stats.
90 * <p>It is recommended to call this method before doing any HTTP call to avoid missing stats.
  /external/opencensus-java/contrib/http_util/src/test/java/io/opencensus/contrib/http/util/
HttpViewsTest.java 8 * http://www.apache.org/licenses/LICENSE-2.0
17 package io.opencensus.contrib.http.util;
  /external/python/apitools/apitools/base/py/
http_wrapper_test.py 8 # http://www.apache.org/licenses/LICENSE-2.0
79 http={'connections': {}}, http_request=_MockHttpRequest(),
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowHttpResponseCacheTest.java 5 import android.net.http.HttpResponseCache;
  /external/syzkaller/vendor/google.golang.org/api/gensupport/
resumable.go 11 "net/http"
29 Client *http.Client
55 // doUploadRequest performs a single HTTP request to upload data.
59 func (rx *ResumableUpload) doUploadRequest(ctx context.Context, data io.Reader, off, size int64, final bool) (*http.Response, error) {
60 req, err := http.NewRequest("POST", rx.URI, data)
85 // and sets the upload-specific "X-HTTP-Status-Code-Override:
92 func statusResumeIncomplete(resp *http.Response) bool {
95 return resp != nil && resp.Header.Get("X-Http-Status-Code-Override") == "308"
112 // transferChunk performs a single HTTP request to upload a single chunk from rx.Media.
113 func (rx *ResumableUpload) transferChunk(ctx context.Context) (*http.Response, error)
    [all...]
  /external/toolchain-utils/cros_utils/
html_tools.py 7 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  /external/volley/src/test/java/com/android/volley/toolbox/
HttpStackConformanceTest.java 22 import org.apache.http.Header;
23 import org.apache.http.HttpRequest;
24 import org.apache.http.client.HttpClient;
25 import org.apache.http.client.methods.HttpUriRequest;
139 when(mMockRequest.getUrl()).thenReturn("http://127.0.0.1");
  /external/webrtc/webrtc/common_audio/signal_processing/
spl_sqrt_floor_arm.S 22 @ http://www.finesse.demon.co.uk/steven/sqrt.html.
  /external/apache-http/android/src/android/net/http/
Headers.java 8 * http://www.apache.org/licenses/LICENSE-2.0
17 package android.net.http;
23 import org.apache.http.HeaderElement;
24 import org.apache.http.entity.ContentLengthStrategy;
25 import org.apache.http.message.BasicHeaderValueParser;
26 import org.apache.http.message.ParserCursor;
27 import org.apache.http.protocol.HTTP;
28 import org.apache.http.util.CharArrayBuffer;
34 private static final String LOGTAG = "Http";
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/conn/tsccm/ConnPoolByRoute.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
27 * <http://www.apache.org/>.
31 package org.apache.http.impl.conn.tsccm;
44 import org.apache.http.conn.routing.HttpRoute;
45 import org.apache.http.conn.ClientConnectionOperator;
46 import org.apache.http.conn.ConnectionPoolTimeoutException;
47 import org.apache.http.conn.params.ConnPerRoute;
48 import org.apache.http.conn.params.ConnManagerParams
    [all...]
  /external/python/cpython3/PC/layout/support/
appxmanifest.py 74 "": "http://schemas.microsoft.com/appx/manifest/foundation/windows10",
75 "m": "http://schemas.microsoft.com/appx/manifest/foundation/windows10",
76 "uap": "http://schemas.microsoft.com/appx/manifest/uap/windows10",
77 "rescap": "http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities",
78 "rescap4": "http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/4",
79 "desktop4": "http://schemas.microsoft.com/appx/manifest/desktop/windows10/4",
80 "desktop6": "http://schemas.microsoft.com/appx/manifest/desktop/windows10/6",
81 "uap3": "http://schemas.microsoft.com/appx/manifest/uap/windows10/3",
82 "uap4": "http://schemas.microsoft.com/appx/manifest/uap/windows10/4",
83 "uap5": "http://schemas.microsoft.com/appx/manifest/uap/windows10/5"
    [all...]
  /external/syzkaller/vendor/cloud.google.com/go/compute/metadata/
metadata.go 7 // http://www.apache.org/licenses/LICENSE-2.0
27 "net/http"
67 metaClient = &http.Client{
68 Transport: &http.Transport{
76 subscribeClient = &http.Client{
77 Transport: &http.Transport{
99 // The suffix is appended to "http://${GCE_METADATA_HOST}/computeMetadata/v1/".
113 func getETag(client *http.Client, suffix string) (value, etag string, err error) {
128 url := "http://" + host + "/computeMetadata/v1/" + suffix
129 req, _ := http.NewRequest("GET", url, nil
    [all...]
  /external/syzkaller/vendor/google.golang.org/grpc/transport/
http_util.go 9 * http://www.apache.org/licenses/LICENSE-2.0
27 "net/http"
44 // http://http2.github.io/http2-spec/#SettingValues
84 http.StatusBadRequest: codes.Internal,
86 http.StatusUnauthorized: codes.Unauthenticated,
88 http.StatusForbidden: codes.PermissionDenied,
90 http.StatusNotFound: codes.Unimplemented,
92 http.StatusTooManyRequests: codes.Unavailable,
94 http.StatusBadGateway: codes.Unavailable,
96 http.StatusServiceUnavailable: codes.Unavailable
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 8 * http://www.apache.org/licenses/LICENSE-2.0
19 import org.apache.http.HttpEntity;
20 import org.apache.http.HttpResponse;
21 import org.apache.http.HttpStatus;
22 import org.apache.http.client.methods.HttpGet;
32 import android.net.http.AndroidHttpClient;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urlparse.py 35 uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
38 uses_netloc = ['ftp', 'http', 'gopher', 'nntp', 'telnet',
44 uses_params = ['ftp', 'hdl', 'prospero', 'http', 'imap',
47 uses_query = ['http', 'wais', 'imap', 'https', 'shttp', 'mms',
49 uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news',
175 if url[:i] == 'http': # optimize the common case
  /external/bcc/src/lua/src/
squish.lua 137 function fetch.http(url)
138 local http = require "socket.http";
140 local body, status = http.request(url);
144 return false, "HTTP status code: "..tostring(status);
147 function fetch.http(url)
148 return false, "Module not found. Re-squish with --use-http option to fetch it from "..url;
226 data, err = fetch.http(module.url:gsub("%?", module.path));
  /external/opencensus-java/exporters/trace/jaeger/src/test/java/io/opencensus/exporter/trace/jaeger/
JaegerExporterHandlerIntegrationTest.java 8 * http://www.apache.org/licenses/LICENSE-2.0
25 import com.google.api.client.http.GenericUrl;
26 import com.google.api.client.http.HttpRequest;
27 import com.google.api.client.http.HttpRequestFactory;
28 import com.google.api.client.http.HttpResponse;
29 import com.google.api.client.http.javanet.NetHttpTransport;
217 "http://%s:%s/api/traces",
223 "http://%s:%s/api/traces?service=%s",
  /external/syzkaller/vendor/golang.org/x/net/http2/
server.go 20 // Request.Body. This would be a somewhat semantic change from HTTP/1
21 // (or at least what we expose in net/http), so I'd probably want to
38 "net/http"
49 "golang.org/x/net/http/httpguts"
83 // Server is an HTTP/2 server.
85 // MaxHandlers limits the number of http.Handler ServeHTTP goroutines
93 // time. This is unrelated to the number of http.Handler goroutines
96 // the HTTP/2 spec's recommendations.
106 // cipher suites prohibited by the HTTP/2 spec.
115 // control window for each connections. The HTTP/2 spec does no
    [all...]
  /external/libcups/cups/
usersys.c 11 * missing or damaged, see the license at "http://www.cups.org/".
166 http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */
173 if (!http)
174 http = _cupsConnect();
176 return ((cg->password_cb)(prompt, http, method, resource, cg->password_data));
286 if (cg->http)
287 httpEncryption(cg->http, e);
421 if (cg->http)
423 httpClose(cg->http);
424 cg->http = NULL
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 9 * http://www.apache.org/licenses/LICENSE-2.0
35 import com.squareup.okhttp.internal.http.HttpDate;
36 import com.squareup.okhttp.internal.http.HttpEngine;
37 import com.squareup.okhttp.internal.http.HttpMethod;
38 import com.squareup.okhttp.internal.http.OkHeaders;
39 import com.squareup.okhttp.internal.http.RequestException;
40 import com.squareup.okhttp.internal.http.RetryableSink;
41 import com.squareup.okhttp.internal.http.RouteException;
42 import com.squareup.okhttp.internal.http.StatusLine;
43 import com.squareup.okhttp.internal.http.StreamAllocation
    [all...]
  /external/okhttp/repackaged/okhttp-urlconnection/src/main/java/com/android/okhttp/internal/huc/
HttpURLConnectionImpl.java 10 * http://www.apache.org/licenses/LICENSE-2.0
36 import com.android.okhttp.internal.http.HttpDate;
37 import com.android.okhttp.internal.http.HttpEngine;
38 import com.android.okhttp.internal.http.HttpMethod;
39 import com.android.okhttp.internal.http.OkHeaders;
40 import com.android.okhttp.internal.http.RequestException;
41 import com.android.okhttp.internal.http.RetryableSink;
42 import com.android.okhttp.internal.http.RouteException;
43 import com.android.okhttp.internal.http.StatusLine;
44 import com.android.okhttp.internal.http.StreamAllocation
    [all...]
  /external/wpa_supplicant_8/hs20/client/
est.c 27 #include "utils/http-utils.h"
138 http_ocsp_set(ctx->http, 1);
139 res = http_download_file(ctx->http, buf, "Cert/est-cacerts.txt",
141 http_ocsp_set(ctx->http,
620 http_ocsp_set(ctx->http, 1);
621 res = http_download_file(ctx->http, buf, "Cert/est-csrattrs.txt",
623 http_ocsp_set(ctx->http,
721 http_ocsp_set(ctx->http, 1);
722 resp = http_post(ctx->http, buf, req, "application/pkcs10",
726 http_ocsp_set(ctx->http,
    [all...]
spp_client.c 17 #include "http-utils.h"
130 "http://localhost:12345/");
359 ret_node = soap_send_receive(ctx->http, node);
447 ret_node = soap_send_receive(ctx->http, node);
449 if (soap_reinit_client(ctx->http) < 0)
456 ret_node = soap_send_receive(ctx->http, node);
494 ret_node = soap_send_receive(ctx->http, node);
761 ret_node = soap_send_receive(ctx->http, payload);
763 const char *err = http_get_err(ctx->http);
765 wpa_printf(MSG_INFO, "HTTP error: %s", err)
    [all...]
  /build/soong/cc/config/
clang.go 7 // http://www.apache.org/licenses/LICENSE-2.0
120 // See http://petereisentraut.blogspot.com/2011/05/ccache-and-clang.html.
127 // http://b/68236239 Allow 0/NULL instead of using nullptr everywhere.
157 // Bug: http://b/29823425 Disable -Wnull-dereference until the
163 // http://b/72331526 Disable -Wtautological-* until the instances detected by these
184 // http://b/72331524 Allow null pointer arithmetic until the instances detected by
188 // Bug: http://b/29823425 Disable -Wnull-dereference until the

Completed in 911 milliseconds

<<61626364656667686970>>