HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 176 - 200 of 422) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/volley/src/main/java/com/android/volley/
Request.java 35 * @param <T> The type of parsed response this request expects.
75 private final Response.ErrorListener mErrorListener;
89 /** Whether or not a response has been delivered for this request yet. */
101 * a "Not Modified" response, we can be sure it hasn't been evicted from cache.
110 * the normal response listener is not provided here as delivery of responses
112 * already-parsed response.
114 * @deprecated Use {@link #Request(int, String, com.android.volley.Response.ErrorListener)}.
117 public Request(String url, Response.ErrorListener listener) {
123 * URL, and error listener. Note that the normal response listener is not provided here as
125 * an already-parsed response
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 94 import fi.iki.elonen.NanoHTTPD.Response.IStatus;
95 import fi.iki.elonen.NanoHTTPD.Response.Status;
318 * Response's HTTP Headers.
320 * @param response
321 * The Response object to which headers the queued cookies
324 public void unloadQueue(Response response) {
326 response.addHeader("Set-Cookie", cookie.getHTTPHeader());
596 throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Syntax error. Usage: GET /example/file.html");
602 throw new ResponseException(Response.Status.BAD_REQUEST, "BAD REQUEST: Missing URI. Usage: GET /example/file.html")
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/SmmTcg2PhysicalPresenceLib/
SmmTcg2PhysicalPresenceLib.c 38 Return TPM Operation Response to OS Environment.
43 @param[out] Response Response to the most recent operation request.
45 @return Return Code for Return TPM Operation Response to OS Environment.
51 OUT UINT32 *Response
73 *Response = 0;
79 *Response = PpData.PPResponse;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Cp.c 29 @param[in] Resp The response to the overwrite query (if always).
54 @param[out] Resp pointer to response from question. Pass back on looped calling
70 VOID *Response;
90 Response = *Resp;
102 // if the destination file existed check response and possibly prompt user
105 if (Response == NULL && !SilentMode) {
106 Status = ShellPromptForResponseHii(ShellPromptResponseTypeYesNoAllCancel, STRING_TOKEN (STR_GEN_DEST_EXIST_OVR), gShellLevel2HiiHandle, &Response);
109 // possibly return based on response
112 switch (*(SHELL_PROMPT_RESPONSE*)Response) {
119 *Resp = Response;
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
AuthenticatorAdapter.java 23 import com.squareup.okhttp.Response;
37 @Override public Request authenticate(Proxy proxy, Response response) throws IOException {
38 List<Challenge> challenges = response.challenges();
39 Request request = response.request();
59 @Override public Request authenticateProxy(Proxy proxy, Response response) throws IOException {
60 List<Challenge> challenges = response.challenges();
61 Request request = response.request();
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 23 import com.squareup.okhttp.Response;
64 * Creates an OkHttp {@link Response} using the supplied {@link URI} and {@link URLConnection}
66 * returns {@code null} the response is uncacheable.
68 public static Response createOkResponseForCachePut(URI uri, URLConnection urlConnection)
73 Response.Builder okResponseBuilder = new Response.Builder();
102 // A network response is required for the Cache to find any Vary headers it needs.
103 Response networkResponse = okResponseBuilder.build();
106 // Response headers
110 // Response bod
    [all...]
  /system/tpm/tpm_manager/client/
tpm_ownership_dbus_proxy_test.cc 56 auto response = dbus::Response::CreateEmpty();
57 dbus::MessageWriter writer(response.get());
67 response_callback.Run(response.release());
98 auto response = dbus::Response::CreateEmpty();
99 dbus::MessageWriter writer(response.get());
103 response_callback.Run(response.release());
131 auto response = dbus::Response::CreateEmpty()
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Application/AndroidFastboot/
AndroidFastbootApp.c 80 CHAR8 Response[FASTBOOT_COMMAND_MAX_LENGTH + 1] = "OKAY";
88 Status = mPlatform->GetVar (CmdArg, Response + 4);
92 mTransport->Send (AsciiStrLen (Response), Response, &mFatalSendErrorEvent);
103 CHAR8 Response[12] = "DATA";
108 // Response is "DATA" + that same 8-character string.
131 AsciiStrnCpy (Response + 4, NumBytesString, 8);
132 mTransport->Send (sizeof(Response), Response, &mFatalSendErrorEvent);
417 mTextOut->OutputString (mTextOut, L"Fatal error sending command response. Exiting.\r\n");
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Http.h 207 /// Response status code returned by the remote host.
242 /// When used to await a response, Response points to storage containing HTTP response
245 EFI_HTTP_RESPONSE_DATA *Response;
249 /// provided by the caller. On response, this count is provided by the HTTP driver.
254 /// caller. On response, this array is allocated and populated by the HTTP driver. It
256 /// response.
264 /// Body associated with the HTTP request or response. This can be NULL depending on
325 and response buffers without informing the appropriate hosts.
    [all...]
PlatformToDriverConfiguration.h 44 returned by the platform, and calls Response passing in the
46 Response must be the same value passed into the corresponding
192 information returned by the platform, and calls Response passing
196 call to Response is required passing in the same
261 /// Query() there must be a matching call to Response() so the
264 /// driver to use Response() to inform the platform it does not
270 EFI_PLATFORM_TO_DRIVER_CONFIGURATION_RESPONSE Response;
300 ///< this for processing and user feedback. The SM CLP Command Response string
310 ///< Response().
316 ///< OL and undefined prior to the call to Response().
    [all...]
  /external/autotest/frontend/client/src/autotest/common/
XhrJsonRpcProxy.java 8 import com.google.gwt.http.client.Response;
54 public void onResponseReceived(Request request, Response response) {
57 String responseText = response.getText();
58 int statusCode = response.getStatusCode();
61 response.getStatusText(),
62 response.getHeadersAsString() + "\n\n" + responseText);
  /external/libbrillo/brillo/dbus/
utils.cc 17 std::unique_ptr<dbus::Response> CreateDBusErrorResponse(
25 std::unique_ptr<dbus::Response> GetDBusError(dbus::MethodCall* method_call,
  /external/libchrome/dbus/
object_manager.h 132 class Response;
271 // Called by dbus:: in response to the GetManagedObjects() method call.
272 void OnGetManagedObjects(Response* response);
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
OkHttpAsync.java 23 import com.squareup.okhttp.Response;
72 @Override public void onResponse(Response response) throws IOException {
73 ResponseBody body = response.body();
77 long start = (Long) response.request().tag();
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/
AndroidShimResponseCache.java 61 Response okResponse = delegate.internalCache.get(okRequest);
69 Response okResponse = JavaApiConverter.createOkResponseForCachePut(uri, urlConnection);
110 * supply a response or validate a locally cached response.
117 * Returns the number of HTTP requests whose response was provided by the
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
JavaApiConverterTest.java 24 import com.squareup.okhttp.Response;
119 Response response = JavaApiConverter.createOkResponseForCacheGet(request, cacheResponse); local
120 Request cacheRequest = response.request();
125 assertEquals(Protocol.HTTP_1_1, response.protocol());
126 assertEquals(200, response.code());
127 assertEquals("Fantastic", response.message());
128 Headers okResponseHeaders = response.headers();
130 assertEquals("HelloWorld", response.body().string());
131 assertNull(response.handshake())
199 Response response = JavaApiConverter.createOkResponseForCacheGet(request, cacheResponse); local
    [all...]
  /external/v8/src/inspector/
v8-inspector-session-impl.cc 167 Response V8InspectorSessionImpl::findInjectedScript(
171 return Response::Error("Cannot find context with specified id");
176 return Response::Error("Cannot find context with specified id");
180 return Response::Error("Cannot find context with specified id");
185 return Response::Error("Cannot access specified execution context");
190 return Response::OK();
193 Response V8InspectorSessionImpl::findInjectedScript(
226 Response response = unwrapObject(toString16(objectId), object, context, local
228 if (!response.isSuccess())
244 Response response = RemoteObjectId::parse(objectId, &remoteId); local
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 66 import javax.sip.message.Response;
263 if (DBG) log("send request with challenge response: "
320 // response message from the other end.
355 Response response = mMessageFactory.createResponse(Response.RINGING, local
358 ToHeader toHeader = (ToHeader) response.getHeader(ToHeader.NAME);
360 response.addHeader(toHeader);
361 if (DBG) log("send RINGING: " + response);
362 transaction.sendResponse(response);
378 Response response = mMessageFactory.createResponse(Response.OK, local
405 Response response = mMessageFactory.createResponse( local
426 Response response = event.getResponse(); local
451 Response response = mMessageFactory.createResponse( local
485 Response response = mMessageFactory.createResponse( local
    [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/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/OvmfPkg/Include/IndustryStandard/
VirtioScsi.h 75 UINT8 Response;
86 // host response codes
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Smm/
Tcg2Smm.c 70 UINT32 Response;
75 &Response
78 mTcgNvs->PhysicalPresence.Response = Response;
Tcg2Smm.h 45 UINT32 Response;
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgSmm/
TcgSmm.h 45 UINT32 Response;
87 // 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

Completed in 2987 milliseconds

1 2 3 4 5 6 78 91011>>