HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 26 - 50 of 436) sorted by null

12 3 4 5 6 7 8 91011>>

  /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);
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));
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...]
Tpm12NvStorage.c 77 TPM_RSP_COMMAND_HDR Response;
107 Length = sizeof (Response);
108 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
112 DEBUG ((DEBUG_INFO, "Tpm12NvDefineSpace - ReturnCode = %x\n", SwapBytes32 (Response.returnCode)));
113 switch (SwapBytes32 (Response.returnCode)) {
143 TPM_RSP_NV_READ_VALUE Response;
155 Length = sizeof (Response);
156 Status = Tpm12SubmitCommand (sizeof (Command), (UINT8 *)&Command, &Length, (UINT8 *)&Response);
160 DEBUG ((DEBUG_INFO, "Tpm12NvReadValue - ReturnCode = %x\n", SwapBytes32 (Response.Hdr.returnCode)));
161 switch (SwapBytes32 (Response.Hdr.returnCode)) {
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpStream.java 20 import com.squareup.okhttp.Response;
48 /** Read and return response headers. */
49 Response.Builder readResponseHeaders() throws IOException;
51 /** Returns a stream that reads the response body. */
52 ResponseBody openResponseBody(Response response) throws IOException;
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
HttpStream.java 21 import com.android.okhttp.Response;
52 /** Read and return response headers. */
53 Response.Builder readResponseHeaders() throws IOException;
55 /** Returns a stream that reads the response body. */
56 ResponseBody openResponseBody(Response response) throws IOException;
  /external/v8/src/inspector/
remote-object-id.h 12 using protocol::Response;
30 static Response parse(const String16&, std::unique_ptr<RemoteObjectId>*);
42 static Response parse(const String16&, std::unique_ptr<RemoteCallFrameId>*);
v8-runtime-agent-impl.h 51 using protocol::Response;
62 Response enable() override;
63 Response disable() override;
82 Response releaseObject(const String16& objectId) override;
83 Response getProperties(
91 Response releaseObjectGroup(const String16& objectGroup) override;
92 Response runIfWaitingForDebugger() override;
93 Response setCustomObjectFormatterEnabled(bool) override;
94 Response setMaxCallStackSizeToCapture(int) override;
95 Response discardConsoleEntries() override
    [all...]
remote-object-id.cc 31 Response RemoteObjectId::parse(const String16& objectId,
36 if (!parsedObjectId) return Response::Error("Invalid remote object id");
39 if (!success) return Response::Error("Invalid remote object id");
41 return Response::OK();
47 Response RemoteCallFrameId::parse(const String16& objectId,
52 if (!parsedObjectId) return Response::Error("Invalid call frame id");
56 if (!success) return Response::Error("Invalid call frame id");
58 return Response::OK();
v8-schema-agent-impl.h 16 using protocol::Response;
24 Response getDomains(
v8-debugger-agent-impl.h 28 using protocol::Response;
44 Response enable(String16* outDebuggerId) override;
45 Response disable() override;
46 Response setBreakpointsActive(bool active) override;
47 Response setSkipAllPauses(bool skip) override;
48 Response setBreakpointByUrl(
55 Response setBreakpoint(
59 Response setBreakpointOnFunctionCall(const String16& functionObjectId,
62 Response removeBreakpoint(const String16& breakpointId) override;
63 Response continueToLocation(std::unique_ptr<protocol::Debugger::Location>
    [all...]
v8-heap-profiler-agent-impl.cc 175 Response V8HeapProfilerAgentImpl::collectGarbage() {
177 return Response::OK();
180 Response V8HeapProfilerAgentImpl::startTrackingHeapObjects(
187 return Response::OK();
190 Response V8HeapProfilerAgentImpl::stopTrackingHeapObjects(
195 return Response::OK();
198 Response V8HeapProfilerAgentImpl::enable() {
200 return Response::OK();
203 Response V8HeapProfilerAgentImpl::disable() {
212 return Response::OK()
274 Response response = local
    [all...]
v8-runtime-agent-impl.cc 78 void sendFailure(const protocol::DispatchResponse& response) override {
79 return m_callback->sendFailure(response);
98 Response response = injectedScript->wrapEvaluateResult( local
101 if (response.isSuccess()) {
105 callback->sendFailure(response);
127 Response response = scope.injectedScript()->resolveCallArgument( local
129 if (!response.isSuccess()) {
130 callback->sendFailure(response);
154 Response response = scope.initialize(); local
241 Response response = ensureContext(m_inspector, m_session->contextGroupId(), local
305 Response response = scope.initialize(); local
340 Response response = scope.initialize(); local
355 Response response = local
388 Response response = scope.initialize(); local
424 protocol::Response response = scope.injectedScript()->wrapObject( local
441 Response response = scope.initialize(); local
487 Response response = ensureContext(m_inspector, m_session->contextGroupId(), local
539 Response response = ensureContext(m_inspector, m_session->contextGroupId(), local
598 Response response = scope.initialize(); local
614 Response response = ensureContext(m_inspector, m_session->contextGroupId(), local
    [all...]
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
SimpleComponent.java 23 ListenableFuture<Response> response(); method in interface:SimpleComponent
ResponseProducerModule.java 31 static Response response(String greeting, Request request, int requestNumber) { method in class:ResponseProducerModule
32 return new Response(String.format("%s, %s #%d!", greeting, request.name(), requestNumber));
  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
DummyPlugin.java 42 import fi.iki.elonen.NanoHTTPD.Response;
43 import fi.iki.elonen.NanoHTTPD.Response.Status;
57 public Response serveFile(String uri, Map<String, String> headers, IHTTPSession session, File file, String mimeType) {
60 return new Response(Status.OK, "text/xml", data, bytes.length);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Callback.java 30 * Called when the HTTP response was successfully returned by the remote
31 * server. The callback may proceed to read the response body with {@link
32 * Response#body}. The response is still live until its response body is
33 * closed with {@code response.body().close()}. The recipient of the callback
34 * may even consume the response body on another thread.
36 * <p>Note that transport-layer success (receiving a HTTP response code,
38 * success: {@code response} may still indicate an unhappy HTTP response
    [all...]
Response.java 32 * An HTTP response. Instances of this class are not immutable: the response
36 public final class Response {
44 private Response networkResponse;
45 private Response cacheResponse;
46 private final Response priorResponse;
50 private Response(Builder builder) {
64 * The wire-level request that initiated this HTTP response. This is not
69 * <li>It may be the request generated in response to an HTTP redirect or
105 * Returns the TLS handshake of the connection that carried this response, o
    [all...]
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/
Callback.java 34 * Called when the HTTP response was successfully returned by the remote
35 * server. The callback may proceed to read the response body with {@link
36 * Response#body}. The response is still live until its response body is
37 * closed with {@code response.body().close()}. The recipient of the callback
38 * may even consume the response body on another thread.
40 * <p>Note that transport-layer success (receiving a HTTP response code,
42 * success: {@code response} may still indicate an unhappy HTTP response
    [all...]
Response.java 33 * An HTTP response. Instances of this class are not immutable: the response
38 public final class Response {
51 private Response networkResponse;
52 private Response cacheResponse;
53 private final Response priorResponse;
57 private Response(Builder builder) {
71 * The wire-level request that initiated this HTTP response. This is not
76 * <li>It may be the request generated in response to an HTTP redirect or
112 * Returns the TLS handshake of the connection that carried this response, o
    [all...]
  /external/volley/src/main/java/com/android/volley/
ExecutorDelivery.java 28 * Creates a new response delivery interface.
44 * Creates a new response delivery interface, mockable version for testing.
53 public void postResponse(Request<?> request, Response<?> response) {
54 postResponse(request, response, null);
58 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) {
60 request.addMarker("post-response");
61 mResponsePoster.execute(new ResponseDeliveryRunnable(request, response, runnable));
67 Response<?> response = Response.error(error) local
    [all...]
  /external/volley/src/main/java/com/android/volley/toolbox/
StringRequest.java 23 import com.android.volley.Response;
24 import com.android.volley.Response.ErrorListener;
25 import com.android.volley.Response.Listener;
28 /** A canned request for retrieving the response body at a given URL as a String. */
43 * @param listener Listener to receive the String response
59 * @param listener Listener to receive the String response
76 protected void deliverResponse(String response) {
77 Response.Listener<String> listener;
82 listener.onResponse(response);
88 protected Response<String> parseNetworkResponse(NetworkResponse response)
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
RecordingOkAuthenticator.java 20 import com.squareup.okhttp.Response;
26 public final List<Response> responses = new ArrayList<>();
34 public Response onlyResponse() {
44 @Override public Request authenticate(Proxy proxy, Response response) {
45 responses.add(response);
47 return response.request().newBuilder()
52 @Override public Request authenticateProxy(Proxy proxy, Response response) {
53 responses.add(response);
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_param_reader_unittest.cc 14 using dbus::Response;
20 std::unique_ptr<Response> message = Response::CreateEmpty();
29 std::unique_ptr<Response> message = Response::CreateEmpty();
44 std::unique_ptr<Response> message = Response::CreateEmpty();
65 std::unique_ptr<Response> message = Response::CreateEmpty();
88 std::unique_ptr<Response> message = Response::CreateEmpty()
    [all...]
dbus_param_writer_unittest.cc 15 using dbus::Response;
21 std::unique_ptr<Response> message = Response::CreateEmpty();
28 std::unique_ptr<Response> message = Response::CreateEmpty();
52 std::unique_ptr<Response> message = Response::CreateEmpty();
72 std::unique_ptr<Response> message = Response::CreateEmpty();
79 std::unique_ptr<Response> message = Response::CreateEmpty()
    [all...]

Completed in 1327 milliseconds

12 3 4 5 6 7 8 91011>>