HomeSort by relevance Sort by last modified time
    Searched refs:response (Results 151 - 175 of 2178) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant_8/src/eap_common/
chap.h 15 size_t challenge_len, u8 *response);
  /frameworks/volley/src/test/java/com/android/volley/mock/
MockResponseDelivery.java 20 import com.android.volley.Response;
33 public Response<?> responsePosted = null;
35 public void postResponse(Request<?> request, Response<?> response) {
37 responsePosted = response;
41 public void postResponse(Request<?> request, Response<?> response, Runnable runnable) {
43 responsePosted = response;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_docxmlrpc.py 98 response = self.client.getresponse()
100 self.assertEqual(response.status, 200)
101 self.assertEqual(response.getheader("Content-type"), "text/html")
104 response.read()
108 response = self.client.getresponse()
110 self.assertEqual(response.status, 404)
111 self.assertEqual(response.getheader("Content-type"), "text/plain")
113 response.read()
123 response = self.client.getresponse()
127 response.read()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_docxmlrpc.py 98 response = self.client.getresponse()
100 self.assertEqual(response.status, 200)
101 self.assertEqual(response.getheader("Content-type"), "text/html")
104 response.read()
108 response = self.client.getresponse()
110 self.assertEqual(response.status, 404)
111 self.assertEqual(response.getheader("Content-type"), "text/plain")
113 response.read()
123 response = self.client.getresponse()
127 response.read()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 98 response = self.client.getresponse()
100 self.assertEqual(response.status, 200)
101 self.assertEqual(response.getheader("Content-type"), "text/html")
104 response.read()
108 response = self.client.getresponse()
110 self.assertEqual(response.status, 404)
111 self.assertEqual(response.getheader("Content-type"), "text/plain")
113 response.read()
123 response = self.client.getresponse()
127 response.read()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 98 response = self.client.getresponse()
100 self.assertEqual(response.status, 200)
101 self.assertEqual(response.getheader("Content-type"), "text/html")
104 response.read()
108 response = self.client.getresponse()
110 self.assertEqual(response.status, 404)
111 self.assertEqual(response.getheader("Content-type"), "text/plain")
113 response.read()
123 response = self.client.getresponse()
127 response.read()
    [all...]
  /system/connectivity/shill/dbus/
chromeos_dbus_adaptor.cc 107 DBusMethodResponsePtr<> response) {
110 Passed(&response));
114 DBusMethodResponsePtr<string> response) {
117 Passed(&response));
121 DBusMethodResponsePtr<bool> response) {
124 Passed(&response));
129 // Invoke response if command is completed synchronously (either
136 void ChromeosDBusAdaptor::MethodReplyCallback(DBusMethodResponsePtr<> response,
140 response->ReplyWithError(chromeos_error.get());
142 response->Return()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
PowerTestHostLink.java 39 * The command/response link is through a TCP socket on the host side, forwarded via adb to a local
69 * Standard response types back to host. Host-side code must match these definitions.
146 // command and response handshake, so read all data
164 String response = processClientRequest(clientRequest); local
165 if (response != null) {
166 Log.d(TAG, "Sending response " + response);
167 streamOut.write(response.getBytes(), 0, response.length());
169 // null response means response is deferred awaiting user respons
209 String response = RESPONSE_ERR; local
269 String response; local
312 String response; local
386 String response; local
414 String response = RESPONSE_OK; local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
tab_list_backend.py 34 response = self._browser_backend.devtools_client.RequestNewTab(timeout)
36 response = json.loads(response)
37 context_id = response['id']
41 msg='Received response: %s' % response)
59 response = self._browser_backend.devtools_client.CloseTab(tab_id, timeout)
61 if response != 'Target is closing':
64 msg='Received response: %s' % response)
    [all...]
  /external/apache-http/src/org/apache/http/client/
RedirectHandler.java 42 * a new location in response to an HTTP response received from the target
61 * given the response from the target server.
63 * @param response the response received from the target server
69 boolean isRedirectRequested(HttpResponse response, HttpContext context);
73 * given the response from the target server and the current request
76 * @param response the response received from the target server
81 URI getLocationURI(HttpResponse response, HttpContext context
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
ResponseConnControl.java 47 * A response interceptor that suggests connection keep-alive to the client.
67 public void process(final HttpResponse response, final HttpContext context)
69 if (response == null) {
70 throw new IllegalArgumentException("HTTP response may not be null");
76 int status = response.getStatusLine().getStatusCode();
84 response.setHeader(HTTP.CONN_DIRECTIVE, HTTP.CONN_CLOSE);
89 HttpEntity entity = response.getEntity();
91 ProtocolVersion ver = response.getStatusLine().getProtocolVersion();
94 response.setHeader(HTTP.CONN_DIRECTIVE, HTTP.CONN_CLOSE);
104 response.setHeader(HTTP.CONN_DIRECTIVE, header.getValue())
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlet/
NoJspServlet.java 36 protected void doGet(HttpServletRequest req, HttpServletResponse response) throws ServletException, IOException
42 response.sendError(500,"JSP support not configured");
  /external/libmicrohttpd/src/examples/
fileserver_example.c 58 struct MHD_Response *response; local
78 response = MHD_create_response_from_buffer (strlen (PAGE),
81 ret = MHD_queue_response (connection, MHD_HTTP_NOT_FOUND, response);
82 MHD_destroy_response (response);
86 response = MHD_create_response_from_callback (buf.st_size, 32 * 1024, /* 32k page size */
90 if (response == NULL)
95 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
96 MHD_destroy_response (response);
https_fileserver_example.c 125 struct MHD_Response *response; local
147 response = MHD_create_response_from_buffer (strlen (EMPTY_PAGE),
150 ret = MHD_queue_response (connection, MHD_HTTP_NOT_FOUND, response);
151 MHD_destroy_response (response);
155 response = MHD_create_response_from_callback (buf.st_size, 32 * 1024, /* 32k PAGE_NOT_FOUND size */
158 if (response == NULL)
163 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
164 MHD_destroy_response (response);
authorization_example.c 51 struct MHD_Response *response; local
73 response = MHD_create_response_from_buffer (strlen (DENIED),
76 ret = MHD_queue_basic_auth_fail_response (connection,"TestRealm",response);
80 response = MHD_create_response_from_buffer (strlen (me),
83 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
86 MHD_destroy_response (response);
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
PromptHelper.java 43 private Object response = null; field in class:PromptHelper
68 response = value;
76 * Return the internal response value just before erasing and returning it.
79 Object value = response;
80 response = null;
86 * Request a prompt response from parent. This is a blocking call until user
92 Object response = null; local
108 response = popResponse();
113 return response;
117 * Request a string response from parent. This is a blocking call until use
    [all...]
  /frameworks/volley/src/main/java/com/android/volley/
AuthFailureError.java 35 public AuthFailureError(NetworkResponse response) {
36 super(response);
  /external/autotest/frontend/afe/json_rpc/
serviceHandler_unittest.py 56 response = self.serviceHandler.handleRequest(json_request1)
57 self.assertEquals(response, expected_response1)
61 response = self.serviceHandler.handleRequest(json_request2)
62 self.assertEquals(response, expected_response2)
66 response = self.serviceHandler.handleRequest(json_request3)
67 response_obj = eval(response.replace('null', 'None'))
  /external/chromium-trace/catapult/dashboard/dashboard/
can_bisect_test.py 29 response = self.testapp.post('/can_bisect', {
34 self.assertEqual('true', response.body)
37 response = self.testapp.post('/can_bisect', {
42 self.assertEqual('false', response.body)
45 response = self.testapp.post('/can_bisect', {})
46 self.assertEqual('false', response.body)
  /external/libmicrohttpd/doc/examples/
basicauthentication.c 30 struct MHD_Response *response; local
49 response =
54 response);
59 response =
62 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
64 MHD_destroy_response (response);
  /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/ppp/pppd/
chap-md5.c 59 unsigned char *challenge, unsigned char *response,
68 response_len = *response++;
77 /* Test if our hash matches the peer's response */
78 if (memcmp(hash, response, MD5_HASH_SIZE) == 0) {
88 chap_md5_make_response(unsigned char *response, int id, char *our_name,
100 MD5_Final(&response[1], &ctx);
101 response[0] = MD5_HASH_SIZE;
  /external/selinux/libsemanage/src/
booleans_active.c 24 semanage_bool_t ** response)
28 return dbase_query(handle, dconfig, key, response);
32 const semanage_bool_key_t * key, int *response)
36 return dbase_exists(handle, dconfig, key, response);
40 unsigned int *response)
44 return dbase_count(handle, dconfig, response);
booleans_local.c 32 semanage_bool_t ** response)
36 return dbase_query(handle, dconfig, key, response);
40 const semanage_bool_key_t * key, int *response)
44 return dbase_exists(handle, dconfig, key, response);
48 unsigned int *response)
52 return dbase_count(handle, dconfig, response);
booleans_policy.c 15 semanage_bool_t ** response)
19 return dbase_query(handle, dconfig, key, response);
23 const semanage_bool_key_t * key, int *response)
27 return dbase_exists(handle, dconfig, key, response);
30 int semanage_bool_count(semanage_handle_t * handle, unsigned int *response)
34 return dbase_count(handle, dconfig, response);

Completed in 1525 milliseconds

1 2 3 4 5 67 8 91011>>