/device/linaro/bootloader/edk2/SecurityPkg/Include/Library/ |
Tcg2PhysicalPresenceLib.h | 103 Return TPM Operation Response to OS Environment.
108 @param[out] Response Response to the most recent operation request.
110 @return Return Code for Return TPM Operation Response to OS Environment.
116 OUT UINT32 *Response
|
/external/libchrome/dbus/ |
object_proxy.h | 29 class Response; 69 // Called when an error response is returned or no response is returned. 73 // Called when the response is returned. Used for CallMethod(). 74 typedef base::Callback<void(Response*)> ResponseCallback; 96 // Calls the method of the remote object and blocks until the response 101 virtual std::unique_ptr<Response> CallMethodAndBlockWithErrorDetails( 106 // Calls the method of the remote object and blocks until the response 110 virtual std::unique_ptr<Response> CallMethodAndBlock(MethodCall* method_call, 118 // cases). If the caller is not interested in the response from th [all...] |
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
HttpChunkedResponseTest.java | 36 import static fi.iki.elonen.NanoHTTPD.Response.Status.OK; 88 this.testServer.response = new NanoHTTPD(0) { 90 this.testServer.response.setChunkedTransfer(true);
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/ |
ShutdownTest.java | 57 public Response serve(IHTTPSession session) {
|
/external/nanohttpd/samples/src/main/java/fi/iki/elonen/ |
HelloServer.java | 60 public Response serve(IHTTPSession session) {
|
/external/nist-sip/java/javax/sip/message/ |
Response.java | 5 public interface Response extends Message {
|
/external/skia/tools/skiaserve/urlhandlers/ |
ImgHandler.cpp | 12 #include "../Response.h" 14 using namespace Response;
|
/external/v8/src/inspector/ |
v8-inspector-session-impl.h | 29 using protocol::Response; 47 Response findInjectedScript(int contextId, InjectedScript*&); 48 Response findInjectedScript(RemoteObjectIdBase*, InjectedScript*&); 60 Response unwrapObject(const String16& objectId, v8::Local<v8::Value>*,
|
v8-value-copier.h | 24 protocol::Response toProtocolValue(v8::Local<v8::Context>, v8::Local<v8::Value>,
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
StatusLine.java | 4 import com.squareup.okhttp.Response; 8 /** An HTTP response status line like "HTTP/1.1 200 OK". */ 25 public static StatusLine get(Response response) { 26 return new StatusLine(response.protocol(), response.code(), response.message()); 57 // Parse response code like "200". Always 3 digits. 68 // Parse an optional response message like "OK" or "Not Modified". If it 69 // exists, it is separated from the response code by a space [all...] |
HttpEngine.java | 30 import com.squareup.okhttp.Response; 70 * Handles a single HTTP request/response pair. Each HTTP engine follows this 78 * <li>The HTTP response message is read with readResponse(). After the 79 * response has been read the response headers and body can be read. 80 * All responses have a response body input stream, though in some 84 * <p>The request and response may be served by the HTTP response cache, by the 109 private final Response priorResponse; 143 * The cached response, or null if the cache doesn't exist or cannot be use 722 Response response = readNetworkResponse(); local [all...] |
OkHeaders.java | 7 import com.squareup.okhttp.Response; 43 * Synthetic response header: the local time when the request was sent. 48 * Synthetic response header: the local time when the response was received. 53 * Synthetic response header: the selected 58 /** Synthetic response header: the location from which the response was loaded. */ 59 public static final String RESPONSE_SOURCE = PREFIX + "-Response-Source"; 68 public static long contentLength(Response response) { [all...] |
/external/volley/src/test/java/com/android/volley/ |
RequestTest.java | 61 protected void deliverResponse(Object response) { 65 protected Response<Object> parseNetworkResponse(NetworkResponse response) { 89 protected void deliverResponse(Object response) { 93 protected Response<Object> parseNetworkResponse(NetworkResponse response) {
|
/prebuilts/go/darwin-x86/src/net/http/ |
response.go | 5 // HTTP Response reading and parsing. 28 // Response represents the response from an HTTP request. 30 type Response struct { 37 // Header maps header keys to values. If the response had multiple 47 // Body represents the response body. 73 // ReadResponse nor Response.Write ever closes a connection. 76 // Uncompressed reports whether the response was sent compressed but 81 // from the responseHeader. To get the original response from 99 // Request is the request that was sent to obtain this Response [all...] |
response_test.go | 26 Resp Response 39 // Unchunked response without Content-Length. 46 Response{ 63 // Unchunked HTTP/1.1 response without Content-Length or 70 Response{ 85 // Unchunked HTTP/1.1 204 response without Content-Length. 91 Response{ 106 // Unchunked response with Content-Length. 114 Response{ 132 // Chunked response without Content-Length [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
response.go | 5 // HTTP Response reading and parsing. 28 // Response represents the response from an HTTP request. 30 type Response struct { 37 // Header maps header keys to values. If the response had multiple 47 // Body represents the response body. 73 // ReadResponse nor Response.Write ever closes a connection. 76 // Uncompressed reports whether the response was sent compressed but 81 // from the responseHeader. To get the original response from 99 // Request is the request that was sent to obtain this Response [all...] |
response_test.go | 26 Resp Response 39 // Unchunked response without Content-Length. 46 Response{ 63 // Unchunked HTTP/1.1 response without Content-Length or 70 Response{ 85 // Unchunked HTTP/1.1 204 response without Content-Length. 91 Response{ 106 // Unchunked response with Content-Length. 114 Response{ 132 // Chunked response without Content-Length [all...] |
/external/libbrillo/brillo/http/ |
http_request.h | 82 // HTTP response header names 164 // No response acceptable to client found 191 // Error response received from gateway 201 class Response; // Just a forward declaration. 211 // and obtain the server response. The returned Response object can be 212 // used to inspect the response code, HTTP headers and/or response body. 249 // Adds a stream for the response. Otherwise a MemoryStream will be used. 278 // Sends the request to the server and blocks until the response is received [all...] |
http_utils.cc | 24 std::unique_ptr<Response> GetAndBlock(const std::string& url, 45 std::unique_ptr<Response> HeadAndBlock(const std::string& url, 64 std::unique_ptr<Response> PostTextAndBlock(const std::string& url, 91 std::unique_ptr<Response> SendRequestAndBlock( 107 return std::unique_ptr<Response>(); 112 std::unique_ptr<Response> SendRequestWithNoDataAndBlock( 182 std::unique_ptr<Response> PostBinaryAndBlock( 236 std::unique_ptr<Response> PostFormDataAndBlock( 252 std::unique_ptr<Response> PostFormDataAndBlock( 261 return std::unique_ptr<Response>(); [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/ |
AccountManagerServiceTest.java | 398 null, // response 415 mMockAccountManagerResponse, // response 436 mMockAccountManagerResponse, // response 468 mMockAccountManagerResponse, // response 490 mMockAccountManagerResponse, // response 525 mMockAccountManagerResponse, // response 546 Response response = new Response(latch, mMockAccountManagerResponse); local 550 response, // respons 577 Response response = new Response(latch, mMockAccountManagerResponse); local 615 Response response = new Response(latch, mMockAccountManagerResponse); local 644 Response response = new Response(latch, mMockAccountManagerResponse); local 675 Response response = new Response(latch, mMockAccountManagerResponse); local 730 Response response = new Response(latch, mMockAccountManagerResponse); local 760 Response response = new Response(latch, mMockAccountManagerResponse); local 797 Response response = new Response(latch, mMockAccountManagerResponse); local 826 Response response = new Response(latch, mMockAccountManagerResponse); local 857 Response response = new Response(latch, mMockAccountManagerResponse); local 1051 Response response = new Response(latch, mMockAccountManagerResponse); local 1097 Response response = new Response(latch, mMockAccountManagerResponse); local 1124 Response response = new Response(latch, mMockAccountManagerResponse); local 1150 Response response = new Response(latch, mMockAccountManagerResponse); local 1211 Response response = new Response(latch, mMockAccountManagerResponse); local 1228 Response response = new Response(latch, mMockAccountManagerResponse); local 1291 Response response = new Response(latch, mMockAccountManagerResponse); local 1307 Response response = new Response(latch, mMockAccountManagerResponse); local 1375 Response response = new Response(latch, mMockAccountManagerResponse); local 1397 Response response = new Response(latch, mMockAccountManagerResponse); local 1422 Response response = new Response(latch, mMockAccountManagerResponse); local 1444 Response response = new Response(latch, mMockAccountManagerResponse); local 1471 Response response = new Response(latch, mMockAccountManagerResponse); local 1560 Response response = new Response(latch, mMockAccountManagerResponse); local 1579 Response response = new Response(latch, mMockAccountManagerResponse); local 1626 Response response = new Response(latch, mMockAccountManagerResponse); local 1656 Response response = new Response(latch, mMockAccountManagerResponse); local 1693 Response response = new Response(latch, mMockAccountManagerResponse); local 1725 Response response = new Response(latch, mMockAccountManagerResponse); local 1751 Response response = new Response(latch, mMockAccountManagerResponse); local 1922 Response response = new Response(latch, mMockAccountManagerResponse); local 1964 Response response = new Response(latch, mMockAccountManagerResponse); local 1992 Response response = new Response(latch, mMockAccountManagerResponse); local 2018 Response response = new Response(latch, mMockAccountManagerResponse); local 2071 Response response = new Response(latch, mMockAccountManagerResponse); local 2102 Response response = new Response(latch, mMockAccountManagerResponse); local 2128 Response response = new Response(latch, mMockAccountManagerResponse); local 2152 Response response = new Response(latch, mMockAccountManagerResponse); local 2203 Response response = new Response(latch, mMockAccountManagerResponse); local 2235 Response response = new Response(latch, mMockAccountManagerResponse); local 2263 Response response = new Response(latch, mMockAccountManagerResponse); local 2287 Response response = new Response(latch, mMockAccountManagerResponse); local 2350 Response response = new Response(latch, mMockAccountManagerResponse); local 2626 Response response = new Response(latch, mMockAccountManagerResponse); local 2648 Response response = new Response(latch, mMockAccountManagerResponse); local 2673 Response response = new Response(latch, mMockAccountManagerResponse); local 2695 Response response = new Response(latch, mMockAccountManagerResponse); local [all...] |
/external/libbrillo/brillo/dbus/ |
dbus_method_invoker_unittest.cc | 26 using dbus::Response; 62 Response* CreateResponse(dbus::MethodCall* method_call, 72 auto response = Response::CreateEmpty(); local 73 MessageWriter writer(response.get()); 75 return response.release(); 85 auto response = Response::CreateEmpty(); local 86 MessageWriter writer(response.get()); 88 return response.release() 95 auto response = Response::CreateEmpty(); local 109 std::unique_ptr<dbus::Response> response = local 122 std::unique_ptr<dbus::Response> response = local 135 std::unique_ptr<dbus::Response> response = local 158 std::unique_ptr<dbus::Response> response = local 230 auto response = Response::CreateEmpty(); local [all...] |
/prebuilts/go/darwin-x86/src/cmd/vet/ |
httpresponse.go | 5 // This file contains the check for http.Response values being used before 21 if typ := importType("net/http", "Response"); typ != nil { 27 // if http.Response or http.Client are not defined don't register this check. 33 "check errors are checked before using an http Response", 56 return // could not find the http.Response in the assignment. 75 // returns (*http.Response, error). 88 return false // the first return type is not *http.Response.
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
httpresponse.go | 5 // This file contains the check for http.Response values being used before 21 if typ := importType("net/http", "Response"); typ != nil { 27 // if http.Response or http.Client are not defined don't register this check. 33 "check errors are checked before using an http Response", 56 return // could not find the http.Response in the assignment. 75 // returns (*http.Response, error). 88 return false // the first return type is not *http.Response.
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Cache.java | 65 * the response, the client will issue a conditional {@code GET}. The server will then send either 66 * the updated response if it has changed, or a short 'not modified' response if the client's copy 74 * <h3>Force a Network Response</h3> 85 * If it is only necessary to force a cached response to be validated by the server, use the more 96 * <h3>Force a Cache Response</h3> 108 * Response forceCacheResponse = client.newCall(request).execute(); 115 * This technique works even better in situations where a stale response is better than no response. 127 * <p>The {@link CacheControl} class can configure request caching directives and parse response 200 Response response = entry.response(request, snapshot); local 659 public Response response(Request request, DiskLruCache.Snapshot snapshot) { method in class:Entry [all...] |
/external/okhttp/okhttp-logging-interceptor/src/test/java/com/squareup/okhttp/logging/ |
HttpLoggingInterceptorTest.java | 23 import com.squareup.okhttp.Response; 147 Response response = client.newCall(request().build()).execute(); local 148 response.body().close(); 165 Response response = client.newCall(request().build()).execute(); local 166 response.body().close(); 198 Response response = client.newCall(request).execute(); local 199 response.body().close() 235 Response response = client.newCall(request).execute(); local 278 Response response = client.newCall(request().post(body).build()).execute(); local 315 Response response = client.newCall(request().build()).execute(); local 349 Response response = client.newCall(request().build()).execute(); local 390 Response response = client.newCall(request().build()).execute(); local 423 Response response = client.newCall(request).execute(); local 465 Response response = client.newCall(request().build()).execute(); local 505 Response response = client.newCall(request().build()).execute(); local 547 Response response = client.newCall(request().build()).execute(); local [all...] |