HomeSort by relevance Sort by last modified time
    Searched defs:Response (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/skia/tools/skiaserve/
Response.h 15 namespace Response {
16 // SendOK just sends an empty response with a 200 OK status code.
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/
Response.h 15 namespace Response {
16 // SendOK just sends an empty response with a 200 OK status code.
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...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12CommandLib/
Tpm12SelfTest.c 26 @retval EFI_BUFFER_TOO_SMALL Response data buffer is too small.
37 TPM_RSP_COMMAND_HDR Response;
46 Length = sizeof (Response);
47 return Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
Tpm12Ownership.c 34 TPM_RSP_COMMAND_HDR Response;
43 Length = sizeof (Response);
45 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
49 switch (SwapBytes32 (Response.returnCode)) {
Tpm12Pcr.c 46 @retval EFI_BUFFER_TOO_SMALL Response data buffer is too small.
60 TPM_RSP_EXTEND Response;
71 Length = sizeof (Response);
72 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
77 if (SwapBytes32(Response.Hdr.returnCode) != TPM_SUCCESS) {
78 DEBUG ((EFI_D_ERROR, "Tpm12Extend: Response Code error! 0x%08x\r\n", SwapBytes32(Response.Hdr.returnCode)));
83 CopyMem (NewPcrValue, &Response.TpmDigest, sizeof (*NewPcrValue));
Tpm12PhysicalPresence.c 37 @retval EFI_BUFFER_TOO_SMALL Response data buffer is too small.
49 TPM_RSP_COMMAND_HDR Response;
59 Length = sizeof (Response);
61 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
66 if (SwapBytes32(Response.returnCode) != TPM_SUCCESS) {
67 DEBUG ((EFI_D_ERROR, "Tpm12PhysicalPresence: Response Code error! 0x%08x\r\n", SwapBytes32(Response.returnCode)));
Tpm12Startup.c 47 TPM_RSP_COMMAND_HDR Response;
57 Length = sizeof (Response);
58 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
62 switch (SwapBytes32(Response.returnCode)) {
67 // In warm reset, TPM may response TPM_INVALID_POSTINIT
89 TPM_RSP_COMMAND_HDR Response;
98 Length = sizeof (Response);
99 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
103 switch (SwapBytes32 (Response.returnCode)) {
Tpm12GetCapability.c 52 @retval EFI_BUFFER_TOO_SMALL Response data buffer is too small.
64 TPM_RSP_GET_CAPABILITY_PERMANENT_FLAGS Response;
76 Length = sizeof (Response);
77 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
83 CopyMem (TpmPermanentFlags, &Response.Flags, MIN (sizeof (*TpmPermanentFlags), Response.ResponseSize));
105 TPM_RSP_GET_CAPABILITY_STCLEAR_FLAGS Response;
117 Length = sizeof (Response);
118 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
124 CopyMem (VolatileFlags, &Response.Flags, MIN (sizeof (*VolatileFlags), Response.ResponseSize));
    [all...]
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
Response.java 18 final class Response {
21 Response(String data) {
  /frameworks/base/telecomm/java/android/telecom/
Response.java 22 public interface Response<IN, OUT> {
  /external/volley/src/main/java/com/android/volley/
Response.java 20 * Encapsulates a parsed response for delivery.
22 * @param <T> Parsed type of this response
24 public class Response<T> {
28 /** Called when a response is received. */
29 void onResponse(T response);
41 /** Returns a successful response containing the parsed result. */
42 public static <T> Response<T> success(T result, Cache.Entry cacheEntry) {
43 return new Response<T>(result, cacheEntry);
47 * Returns a failed response containing the given error code and an optional
50 public static <T> Response<T> error(VolleyError error)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
response.go 5 // HTTP Response reading and parsing.
28 // Response represents the response from an HTTP request.
31 // the response headers have been received. The response body
33 type Response struct {
40 // Header maps header keys to values. If the response had multiple
51 // Body represents the response body.
53 // The response body is streamed on demand as the Body field
55 // terminates the response, Body.Read calls return an error
    [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.
31 // the response headers have been received. The response body
33 type Response struct {
40 // Header maps header keys to values. If the response had multiple
51 // Body represents the response body.
53 // The response body is streamed on demand as the Body field
55 // terminates the response, Body.Read calls return an error
    [all...]
  /system/netd/server/dns/
DnsTlsQueryMap.h 46 typedef DnsTlsServer::Response Response;
61 // Process a response, including a new ID. If the response
63 void onResponse(std::vector<uint8_t> response);
DnsTlsServer.h 38 enum class Response : uint8_t { success, network_error, limit_error, internal_error };
41 Response code;
42 std::vector<uint8_t> response; member in struct:android::net::DnsTlsServer::Result
DnsTlsTransport.h 50 typedef DnsTlsServer::Response Response;
62 void onResponse(std::vector<uint8_t> response) override;
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioGpuDxe/
Commands.c 120 // request, response.
227 success, elicits a VirtioGpuRespOkNodata response
232 producing a response. If Fence is TRUE, then
268 volatile VIRTIO_GPU_CONTROL_HEADER Response;
295 VirtioAppendDesc (&VgpuDev->Ring, (UINTN)&Response, sizeof Response,
308 // Parse the response.
310 if (ResponseSize != sizeof Response) {
311 DEBUG ((EFI_D_ERROR, "%a: malformed response to Request=0x%x\n",
316 if (Response.Type == VirtioGpuRespOkNodata) {
    [all...]
  /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/EmbeddedPkg/Universal/MmcDxe/
MmcBlockIo.c 36 UINT32 Response[4];
56 //Read Response
57 MmcHost->ReceiveResponse (MmcHost, MMC_RESPONSE_TYPE_R1, Response);
58 PrintResponseR1 (Response[0]);
116 UINT32 Response[4];
121 MmcHost->ReceiveResponse (MmcHost, MMC_RESPONSE_TYPE_R1b, Response);
144 UINT32 Response[4];
191 Response[0] = 0;
192 while(!(Response[0] & MMC_R0_READY_FOR_DATA)
193 && (MMC_R0_CURRENTSTATE (Response) != MMC_R0_STATE_TRAN)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiCHAP.c 75 The initator checks the CHAP response replied by target against its own
79 @param[in] TargetResponse The response from target.
81 @retval EFI_SUCCESS The response from target passed authentication.
82 @retval EFI_SECURITY_VIOLATION The response from target was not expected value.
115 This function checks the received iSCSI Login Response during the security
120 @retval EFI_SUCCESS The Login Response passed the CHAP validation.
141 CHAR8 *Response;
162 // Build the key-value list from the data segment of the Login Response.
175 // The first Login Response.
236 // Calculate Response value
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Tpm2Acpi.h 46 UINT64 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/NetworkPkg/IScsiDxe/
IScsiCHAP.c 97 The initator checks the CHAP response replied by target against its own
101 @param[in] TargetResponse The response from target.
103 @retval EFI_SUCCESS The response from target passed authentication.
104 @retval EFI_SECURITY_VIOLATION The response from target was not expected value.
139 This function checks the received iSCSI Login Response during the security
144 @retval EFI_SUCCESS The Login Response passed the CHAP validation.
166 CHAR8 *Response;
187 // Build the key-value list from the data segment of the Login Response.
200 // The first Login Response.
269 // Calculate Response value.
    [all...]

Completed in 711 milliseconds

1 2 3 4 5