HomeSort by relevance Sort by last modified time
    Searched refs:Response (Results 126 - 150 of 501) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/libchrome/dbus/
exported_object.h 27 class Response;
42 // Called to send a response from an exported method. |response| is the
43 // response message. Callers should pass NULL in the event of an error that
44 // prevents the sending of a response.
45 typedef base::Callback<void(std::unique_ptr<Response> response)>
49 // message. |sender| is the callback that's used to send a response.
146 // Callback invoked by service provider to send a response to a method call.
151 std::unique_ptr<Response> response)
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
SocksProxyTest.java 55 Response response1 = client.newCall(request1).execute();
59 Response response2 = client.newCall(request2).execute();
83 Response response = client.newCall(request).execute(); local
84 assertEquals("abc", response.body().string());
102 Response response1 = client.newCall(request).execute();
CacheTest.java 99 * Test that response caching is consistent with the RI and the spec.
106 // We can't test 100 because it's not really a response.
178 Response response = client.newCall(request).execute(); local
179 assertEquals(responseCode, response.code());
182 response.body().string();
184 Response cached = cache.get(request);
220 Response response1 = client.newCall(request).execute();
231 Response response2 = client.newCall(request).execute();
257 Response response1 = client.newCall(request).execute()
518 Response response = get(server.url("\/")); local
605 Response response = get(server.url("\/")); local
1054 Response response = client.newCall(request).execute(); local
1072 Response response = client.newCall(request).execute(); local
1090 Response response = client.newCall(request).execute(); local
1111 Response response = client.newCall(request).execute(); local
1130 Response response = client.newCall(request).execute(); local
1141 Response response = client.newCall(request).execute(); local
1160 Response response = client.newCall(request).execute(); local
1178 Response response = client.newCall(request).execute(); local
1195 Response response = client.newCall(request).execute(); local
1218 Response response = client.newCall(request).execute(); local
1237 Response response = client.newCall(request).execute(); local
1242 MockResponse response = new MockResponse() local
1254 MockResponse response = new MockResponse() local
1276 Response response = client.newCall(request).execute(); local
1325 Response response = client.newCall(request).execute(); local
1342 Response response = client.newCall(request).execute(); local
1507 Response response = client.newCall(request).execute(); local
1846 Response response = client.newCall(request).execute(); local
1861 Response response = get(server.url("\/")); local
1874 Response response = get(server.url("\/")); local
1882 Response response = get(server.url("\/")); local
1894 Response response = get(server.url("\/")); local
1953 Response response = get(url); local
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
Progress.java 21 import com.squareup.okhttp.Response;
50 @Override public Response intercept(Chain chain) throws IOException {
51 Response originalResponse = chain.proceed(chain.request());
58 Response response = client.newCall(request).execute(); local
59 if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
61 System.out.println(response.body().string());
  /external/skia/tools/skiaserve/urlhandlers/
ClipAlphaHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
ColorModeHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
DataHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
EnableGPUHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
InfoHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
OpBoundsHandler.cpp 11 #include "../Response.h"
14 using namespace Response;
OpsHandler.cpp 11 #include "../Response.h"
14 using namespace Response;
OverdrawHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
  /external/skqp/tools/skiaserve/urlhandlers/
ClipAlphaHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
ColorModeHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
DataHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
EnableGPUHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
InfoHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
OpBoundsHandler.cpp 11 #include "../Response.h"
14 using namespace Response;
OpsHandler.cpp 11 #include "../Response.h"
14 using namespace Response;
OverdrawHandler.cpp 12 #include "../Response.h"
14 using namespace Response;
  /external/volley/src/test/java/com/android/volley/mock/
TestRequest.java 21 import com.android.volley.Response;
32 public Base(String url, Response.ErrorListener listener) {
36 public Base(int method, String url, Response.ErrorListener listener) {
41 protected Response<byte[]> parseNetworkResponse(NetworkResponse response) {
46 protected void deliverResponse(byte[] response) {
  /system/nvram/hal/include/nvram/hal/
nvram_device_adapter.h 34 // parameters are passed in |request| and |response| will be filled in with
37 nvram::Response* response) = 0;
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 79 import javax.sip.message.Response;
122 // external address observed from any response
397 Response response = evt.getResponse(); local
398 ViaHeader viaHeader = (ViaHeader)(response.getHeader(
450 return Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST;
454 if (dialog == null) return Response.DECLINE;
459 return Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST;
466 return Response.CALL_OR_TRANSACTION_DOES_NOT_EXIST;
468 return Response.OK
477 int response = processInviteWithReplaces(event, replaces); local
951 Response response = event.getResponse(); local
977 Response response = event.getResponse(); local
    [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...]
  /external/libbrillo/brillo/dbus/
data_serialization_unittest.cc 20 using dbus::Response;
148 std::unique_ptr<Response> message = Response::CreateEmpty();
172 std::unique_ptr<Response> message = Response::CreateEmpty();
238 std::unique_ptr<Response> message = Response::CreateEmpty();
265 std::unique_ptr<Response> message = Response::CreateEmpty();
334 std::unique_ptr<Response> message = Response::CreateEmpty()
    [all...]

Completed in 1258 milliseconds

1 2 3 4 56 7 8 91011>>