/external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/ |
Response.java | 18 final class Response { 21 Response(String data) {
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
ResponseExt.java | 3 import javax.sip.message.Response; 6 *Extension for the jain-sip Response interface. This is a convenience 9 public interface ResponseExt extends Response, MessageExt {
|
/external/volley/src/test/java/com/android/volley/toolbox/ |
JsonRequestTest.java | 19 import com.android.volley.Response; 35 Response.Listener.class, Response.ErrorListener.class)); 37 Response.Listener.class, Response.ErrorListener.class)); 40 Response.Listener.class, Response.ErrorListener.class)); 42 Response.Listener.class, Response.ErrorListener.class)); 45 Response.Listener.class, Response.ErrorListener.class)) [all...] |
StringRequestTest.java | 19 import com.android.volley.Response; 32 assertNotNull(StringRequest.class.getConstructor(String.class, Response.Listener.class, 33 Response.ErrorListener.class)); 35 Response.Listener.class, Response.ErrorListener.class));
|
ResponseTest.java | 21 import com.android.volley.Response; 37 assertNotNull(Response.class.getMethod("success", Object.class, Cache.Entry.class)); 38 assertNotNull(Response.class.getMethod("error", VolleyError.class)); 39 assertNotNull(Response.class.getMethod("isSuccess")); 41 assertNotNull(Response.Listener.class.getDeclaredMethod("onResponse", Object.class)); 43 assertNotNull(Response.ErrorListener.class.getDeclaredMethod("onErrorResponse",
|
/external/nist-sip/java/javax/sip/ |
ServerTransaction.java | 3 import javax.sip.message.Response; 6 void sendResponse(Response response)
|
ResponseEvent.java | 4 import javax.sip.message.Response; 8 private Response mResponse; 12 Dialog dialog, Response response) { 15 mResponse = response; 23 public Response getResponse() {
|
/external/v8/src/inspector/ |
v8-heap-profiler-agent-impl.h | 19 using protocol::Response; 28 Response collectGarbage() override; 30 Response enable() override; 31 Response startTrackingHeapObjects(Maybe<bool> trackAllocations) override; 32 Response stopTrackingHeapObjects(Maybe<bool> reportProgress) override; 34 Response disable() override; 36 Response takeHeapSnapshot(Maybe<bool> reportProgress) override; 38 Response getObjectByHeapObjectId( 41 Response addInspectedHeapObject( 43 Response getHeapObjectId(const String16& objectId [all...] |
v8-profiler-agent-impl.h | 23 using protocol::Response; 34 Response enable() override; 35 Response disable() override; 36 Response setSamplingInterval(int) override; 37 Response start() override; 38 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 40 Response startPreciseCoverage() override; 41 Response stopPreciseCoverage() override; 42 Response takePreciseCoverage( 45 Response getBestEffortCoverage [all...] |
v8-console-agent-impl.h | 17 using protocol::Response; 25 Response enable() override; 26 Response disable() override; 27 Response clearMessages() override;
|
v8-console-agent-impl.cc | 29 Response V8ConsoleAgentImpl::enable() { 30 if (m_enabled) return Response::OK(); 35 return Response::OK(); 38 Response V8ConsoleAgentImpl::disable() { 39 if (!m_enabled) return Response::OK(); 43 return Response::OK(); 46 Response V8ConsoleAgentImpl::clearMessages() { return Response::OK(); }
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
InternalCache.java | 19 import com.squareup.okhttp.Response; 29 Response get(Request request) throws IOException; 31 CacheRequest put(Response response) throws IOException; 40 * Handles a conditional request hit by updating the stored cache response 41 * with the headers from {@code network}. The cached response body is not 42 * updated. If the stored response has changed since {@code cached} was 45 void update(Response cached, Response network) throws IOException; 50 /** Track an HTTP response being satisfied with {@code cacheStrategy}. * [all...] |
/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...] |
ResponseDelivery.java | 21 * Parses a response from the network or cache and delivers it. 23 void postResponse(Request<?> request, Response<?> response); 26 * Parses a response from the network or cache and delivers it. The provided 29 void postResponse(Request<?> request, Response<?> response, Runnable runnable);
|
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/ |
WebSocketListener.java | 18 import com.squareup.okhttp.Response; 34 void onOpen(WebSocket webSocket, Response response); 39 * @param response Present when the failure is a direct result of the response (e.g., failed 40 * upgrade, non-101 response code, etc.). {@code null} otherwise. 42 void onFailure(IOException e, Response response);
|
/device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm12CommandLib/ |
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)) {
|
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)) {
|
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)));
|
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);
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Authenticator.java | 27 * challenge in {@code response}. Returns null if the challenge cannot be 28 * satisfied. This method is called in response to an HTTP 401 unauthorized 36 * return response.request().newBuilder() 41 Request authenticate(Proxy proxy, Response response) throws IOException; 45 * challenge made by {@code response}. Returns null if the challenge cannot be 46 * satisfied. This method is called in response to an HTTP 407 unauthorized 54 * return response.request().newBuilder() 59 Request authenticateProxy(Proxy proxy, Response response) throws IOException [all...] |
Interceptor.java | 23 * on the request or response. 26 Response intercept(Chain chain) throws IOException; 30 Response proceed(Request request) throws IOException;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/async/ |
AsyncMessageInvocation.java | 32 * @param <Response> Class of the response data. 36 public abstract class AsyncMessageInvocation<Request, Response> implements Handler.Callback { 45 Request request, AsyncResultCallback<Response> resultCallback, Handler handler) { 54 AsyncResultCallback<Response> resultCallback = 55 (AsyncResultCallback<Response>) result.userObj; 70 /** Parses the asynchronous result returned by the method to a {@link Response}. */ 71 protected abstract Response parseResult(AsyncResult result) throws Throwable;
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
JsonArrayRequest.java | 21 import com.android.volley.Response; 22 import com.android.volley.Response.ErrorListener; 23 import com.android.volley.Response.Listener; 31 * A request for retrieving a {@link JSONArray} response body at a given URL. 38 * @param listener Listener to receive the JSON response 51 * @param listener Listener to receive the JSON response 61 protected Response<JSONArray> parseNetworkResponse(NetworkResponse response) { 63 String jsonString = new String(response.data, 64 HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET)) [all...] |
JsonObjectRequest.java | 21 import com.android.volley.Response; 22 import com.android.volley.Response.ErrorListener; 23 import com.android.volley.Response.Listener; 31 * A request for retrieving a {@link JSONObject} response body at a given URL, allowing for an 42 * @param listener Listener to receive the JSON response 64 protected Response<JSONObject> parseNetworkResponse(NetworkResponse response) { 66 String jsonString = new String(response.data, 67 HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET)); 68 return Response.success(new JSONObject(jsonString) [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;
|