/device/linaro/bootloader/edk2/EmbeddedPkg/Application/AndroidFastboot/ |
AndroidFastbootApp.c | 112 CHAR8 Response[FASTBOOT_COMMAND_MAX_LENGTH + 1] = "OKAY";
120 Status = mPlatform->GetVar (CmdArg, Response + 4);
124 mTransport->Send (AsciiStrLen (Response), Response, &mFatalSendErrorEvent);
135 CHAR8 Response[13];
140 // Response is "DATA" + that same 8-character string.
163 ZeroMem (Response, sizeof Response);
167 AsciiSPrint (Response, sizeof Response, "DATA%x", [all...] |
/external/libchrome/dbus/ |
object_proxy.cc | 133 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlockWithErrorDetails( 142 return std::unique_ptr<Response>(); 163 return std::unique_ptr<Response>(); 169 return Response::FromRawMessage(response_message); 172 std::unique_ptr<Response> ObjectProxy::CallMethodAndBlock( 207 nullptr /* response */, nullptr /* error_response */); 222 // Wait for the response in the D-Bus thread. 235 Response* response, ErrorResponse* error_response) { 236 if (response) { 361 std::unique_ptr<Response> response; local [all...] |
/external/python/apitools/apitools/base/py/ |
batch_test.py | 87 def __ConfigureMock(self, mock_request, expected_request, response): 89 if isinstance(response, list): 90 response = list(response) 95 if isinstance(response, list): 96 return response.pop(0) 97 return response 122 http_wrapper.Response({ 147 self.assertIsNone(api_request_responses[0].response) 156 def _Callback(response, exception) [all...] |
/device/linaro/bootloader/edk2/OvmfPkg/VirtioScsiDxe/ |
VirtioScsi.c | 273 Parse the virtio-scsi device's response, translate it to an EFI status code,
280 output this parameter is updated with response or
283 @param[in] Response The virtio-scsi response structure to parse. We expect
297 IN CONST volatile VIRTIO_SCSI_RESP *Response
306 ResponseSenseLen = MIN (Response->SenseLen, VIRTIO_SCSI_SENSE_SIZE);
311 ((UINT8 *) Packet->SenseData)[Idx] = Response->Sense[Idx];
328 if (Response->Residual <= Packet->InTransferLength) {
329 Packet->InTransferLength -= Response->Residual;
332 Packet->OutTransferLength -= Response->Residual - Packet->InTransferLength; [all...] |
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordSmm/ |
OpalNvmeMode.c | [all...] |
/cts/tests/tests/syncmanager/src/android/content/syncmanager/cts/ |
BroadcastRpc.java | 45 public Payload.Response invoke(String targetPackage, Consumer<Builder> c) throws Exception {
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PlatformToDriverConfiguration/ |
PlatformToDriverConfiguration.h | 102 for freeing the ParameterBlock after Response is called.
167 EFI_PLATFORM_TO_DRIVER_CONFIGURATION_RESPONSE Response;
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
PlatformToDriverConfiguration.h | 44 returned by the platform, and calls Response passing in the
46 Response must be the same value passed into the corresponding
48 Response until EFI_NOT_FOUND is returned by Query.
50 calls Response with a ConfigurationAction of
52 must then continue calling Query and Response until EFI_NOT_FOUND
214 information returned by the platform, and calls Response passing
218 call to Response is required passing in the same
283 /// Query() there must be a matching call to Response() so the
286 /// driver to use Response() to inform the platform it does not
292 EFI_PLATFORM_TO_DRIVER_CONFIGURATION_RESPONSE Response;
[all...] |
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/ |
VirtioScsi.h | 75 UINT8 Response;
86 // host response codes
|
/device/linaro/bootloader/edk2/SecurityPkg/Include/Library/ |
Tcg2PhysicalPresenceLib.h | 110 Return TPM Operation Response to OS Environment.
115 @param[out] Response Response to the most recent operation request.
117 @return Return Code for Return TPM Operation Response to OS Environment.
123 OUT UINT32 *Response
|
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Smm/ |
Tcg2Smm.h | 49 UINT32 Response;
|
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgSmm/ |
TcgSmm.h | 45 UINT32 Response;
88 // The return code for Return TPM Operation Response to OS Environment
|
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEESmm/ |
TrEESmm.h | 46 UINT32 Response;
88 // The return code for Return TPM Operation Response to OS Environment
|
/external/libbrillo/brillo/http/ |
http_connection.h | 22 class Response; 34 // http::Request and http::Response classes use it for communication. 35 // Effectively this class is the interface for the request/response objects to 39 // response object until all the data is sent to the server and the response 52 // response. 60 // If needed, this function can be called to customize where the response 64 // to receive the response data. The method will block until the whole 65 // response message is received, or if an error occur in which case the 68 // Send the request asynchronously and invoke the callback with the response [all...] |
http_proxy_unittest.cc | 41 dbus::Response* ResolveProxyHandler(dbus::MethodCall* method_call, 67 std::unique_ptr<dbus::Response> CreateDBusResponse( 74 std::unique_ptr<dbus::Response> response = local 75 dbus::Response::FromMethodCall(method_call); 76 dbus::MessageWriter writer(response.get()); 79 return response; 82 return response;
|
/external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/bindings/ |
InterfacesTest.java | 23 import org.chromium.mojo.bindings.test.mojom.sample.Response; 127 Response response = new Response(); local 128 response.x = 42; 129 callback.call(response, "Hello"); 156 * Implementation of DoStuffResponse that keeps track of if the response is called. 166 public void call(Response response, String string) { 287 DoStuffResponseImpl response = new DoStuffResponseImpl() local [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
RecordingCallback.java | 37 @Override public synchronized void onResponse(Response response) throws IOException { 38 String body = response.body().string(); 39 responses.add(new RecordedResponse(response.request(), response, null, body, null)); 44 * Returns the recorded response triggered by {@code request}. Throws if the 45 * response isn't enqueued before the timeout. 63 throw new AssertionError("Timed out waiting for response to " + url); 69 throw new AssertionError("Expected no response for " + url);
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
HeadersTest.java | 21 import com.squareup.okhttp.Response; 44 Response response = Http2xStream.readSpdy3HeadersList(headerBlock).request(request).build(); local 45 Headers headers = response.headers(); 47 assertEquals(Protocol.SPDY_3, response.protocol()); 48 assertEquals(200, response.code()); 49 assertEquals("OK", response.message()); 68 Response response = Http2xStream.readSpdy3HeadersList(headerBlock).request(request).build(); local 69 Headers headers = response.headers() 79 Response response = Http2xStream.readHttp2HeadersList(headerBlock).request(request).build(); local [all...] |
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/ |
WebSocketCall.java | 22 import com.squareup.okhttp.Response; 88 * <p>This client will later call back {@code responseCallback} with either an HTTP response or a 96 @Override public void onResponse(Response response) throws IOException { 98 createWebSocket(response, listener); 100 listener.onFailure(e, response); 117 private void createWebSocket(Response response, WebSocketListener listener) throws IOException { 118 if (response.code() != 101) { 119 Util.closeQuietly(response.body()) [all...] |
/external/skia/tools/skiaserve/ |
Response.cpp | 8 #include "Response.h" 42 namespace Response { 43 // SendOK just sends an empty response with a 200 OK status code. 47 MHD_Response* response = MHD_create_response_from_buffer(strlen(data), local 50 int ret = MHD_queue_response(connection, 200, response); 51 MHD_destroy_response(response); 56 MHD_Response* response = MHD_create_response_from_buffer(strlen(msg), local 59 int ret = MHD_queue_response(connection, 500, response); 60 MHD_destroy_response(response); 66 MHD_Response* response = MHD_create_response_from_buffer(data->size() local 83 MHD_Response* response = MHD_create_response_from_buffer( local [all...] |
/external/skia/tools/skiaserve/urlhandlers/ |
CmdHandler.cpp | 12 #include "../Response.h" 14 using namespace Response;
|
PostHandler.cpp | 12 #include "../Response.h" 14 using namespace Response;
|
/external/skqp/tools/skiaserve/ |
Response.cpp | 8 #include "Response.h" 42 namespace Response { 43 // SendOK just sends an empty response with a 200 OK status code. 47 MHD_Response* response = MHD_create_response_from_buffer(strlen(data), local 50 int ret = MHD_queue_response(connection, 200, response); 51 MHD_destroy_response(response); 56 MHD_Response* response = MHD_create_response_from_buffer(strlen(msg), local 59 int ret = MHD_queue_response(connection, 500, response); 60 MHD_destroy_response(response); 66 MHD_Response* response = MHD_create_response_from_buffer(data->size() local 83 MHD_Response* response = MHD_create_response_from_buffer( local [all...] |
/external/skqp/tools/skiaserve/urlhandlers/ |
CmdHandler.cpp | 12 #include "../Response.h" 14 using namespace Response;
|
PostHandler.cpp | 12 #include "../Response.h" 14 using namespace Response;
|