/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/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 | 24 using protocol::Response; 35 Response enable() override; 36 Response disable() override; 37 Response setSamplingInterval(int) override; 38 Response start() override; 39 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; 41 Response startPreciseCoverage(Maybe<bool> binary, 43 Response stopPreciseCoverage() override; 44 Response takePreciseCoverage( 47 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/volley/src/test/java/com/android/volley/toolbox/ |
JsonRequestTest.java | 21 import com.android.volley.Response; 38 Response.Listener.class, 39 Response.ErrorListener.class)); 45 Response.Listener.class, 46 Response.ErrorListener.class)); 50 String.class, Response.Listener.class, Response.ErrorListener.class)); 56 Response.Listener.class, 57 Response.ErrorListener.class)); 63 Response.Listener.class [all...] |
StringRequestTest.java | 21 import com.android.volley.Response; 34 String.class, Response.Listener.class, Response.ErrorListener.class)); 39 Response.Listener.class, 40 Response.ErrorListener.class));
|
ResponseTest.java | 23 import com.android.volley.Response; 36 assertNotNull(Response.class.getMethod("success", Object.class, Cache.Entry.class)); 37 assertNotNull(Response.class.getMethod("error", VolleyError.class)); 38 assertNotNull(Response.class.getMethod("isSuccess")); 40 assertNotNull(Response.Listener.class.getDeclaredMethod("onResponse", Object.class)); 43 Response.ErrorListener.class.getDeclaredMethod(
|
/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/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/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/ |
InternalCache.java | 20 import com.android.okhttp.Response; 31 Response get(Request request) throws IOException; 33 CacheRequest put(Response response) throws IOException; 42 * Handles a conditional request hit by updating the stored cache response 43 * with the headers from {@code network}. The cached response body is not 44 * updated. If the stored response has changed since {@code cached} was 47 void update(Response cached, Response network) throws IOException; 52 /** 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<>(result, cacheEntry); 47 * Returns a failed response containing the given error code and an optional localized message 50 public static <T> Response<T> error(VolleyError error) [all...] |
ResponseDelivery.java | 20 /** Parses a response from the network or cache and delivers it. */ 21 void postResponse(Request<?> request, Response<?> response); 24 * Parses a response from the network or cache and delivers it. The provided Runnable will be 27 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)));
|
/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;
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
Authenticator.java | 29 * challenge in {@code response}. Returns null if the challenge cannot be 30 * satisfied. This method is called in response to an HTTP 401 unauthorized 38 * return response.request().newBuilder() 43 Request authenticate(Proxy proxy, Response response) throws IOException; 47 * challenge made by {@code response}. Returns null if the challenge cannot be 48 * satisfied. This method is called in response to an HTTP 407 unauthorized 56 * return response.request().newBuilder() 61 Request authenticateProxy(Proxy proxy, Response response) throws IOException [all...] |
Interceptor.java | 24 * on the request or response. 28 Response intercept(Chain chain) throws IOException; 32 Response proceed(Request request) throws IOException;
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
JsonArrayRequest.java | 22 import com.android.volley.Response; 23 import com.android.volley.Response.ErrorListener; 24 import com.android.volley.Response.Listener; 29 /** A request for retrieving a {@link JSONArray} response body at a given URL. */ 36 * @param listener Listener to receive the JSON response 51 * @param listener Listener to receive the JSON response 69 protected Response<JSONArray> parseNetworkResponse(NetworkResponse response) { 73 response.data, 74 HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET)) [all...] |
JsonObjectRequest.java | 22 import com.android.volley.Response; 23 import com.android.volley.Response.ErrorListener; 24 import com.android.volley.Response.Listener; 30 * 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 79 protected Response<JSONObject> parseNetworkResponse(NetworkResponse response) { 83 response.data, 84 HttpHeaderParser.parseCharset(response.headers, PROTOCOL_CHARSET)); 85 return Response.success [all...] |