HomeSort by relevance Sort by last modified time
    Searched refs:response (Results 1 - 25 of 2246) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/net/
ParseException.java 24 public String response; field in class:ParseException
26 ParseException(String response) {
27 this.response = response;
ICaptivePortal.aidl 25 oneway void appResponse(int response);
  /external/libmicrohttpd/src/microhttpd/
response.h 21 * @file response.h
22 * @brief Methods for managing response objects
31 * Increment response RC. Should this be part of the
35 MHD_increment_response_rc (struct MHD_Response *response);
response.c 21 * @file response.c
22 * @brief Methods for managing response objects
28 #include "response.h"
42 * Add a header or footer line to the response.
44 * @param response response to add a header to
51 add_response_entry (struct MHD_Response *response,
58 if ( (NULL == response) ||
84 hdr->next = response->first_header;
85 response->first_header = hdr
247 struct MHD_Response *response; local
318 struct MHD_Response *response = cls; local
340 struct MHD_Response *response = cls; local
368 struct MHD_Response *response; local
419 struct MHD_Response *response; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/beanstalk/
response.py 22 # Everything is either a 'Response', 'list', or 'None/str/int/bool'.
24 if isinstance(value, Response):
43 class Response(BaseObject):
44 def __init__(self, response):
45 super(Response, self).__init__()
47 if response['ResponseMetadata']:
48 self.response_metadata = ResponseMetadata(response['ResponseMetadata'])
54 def __init__(self, response):
57 self.request_id = str(response['RequestId'])
61 def __init__(self, response)
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
TunnelRefusedException.java 47 private final HttpResponse response; field in class:TunnelRefusedException
49 public TunnelRefusedException(final String message, final HttpResponse response) {
51 this.response = response;
55 return this.response;
  /system/tpm/trunks/aidl/android/trunks/
ITrunksClient.aidl 20 oneway void OnCommandResponse(in byte[] response);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/directconnect/
test_directconnect.py 36 response = conn.describe_connections()
38 self.assertTrue(response)
39 self.assertTrue('connections' in response)
40 self.assertIsInstance(response['connections'], list)
  /external/tpm2/include/tpm2/
ExecCommand_fp.h 11 unsigned int *responseSize, // OUT: response buffer size
12 unsigned char **response // OUT: response buffer
  /external/v8/build/android/pylib/remote/device/
remote_device_helper.py 15 def TestHttpResponse(response, error_msg):
16 """Checks the Http response from remote device service.
19 response: response dict from the remote device service.
20 error_msg: Error message to display if bad response is seen.
22 if response.status_code != 200:
24 '%s (%d: %s)' % (error_msg, response.status_code, response.reason))
  /system/keymaster/include/keymaster/
android_keymaster.h 53 void GetVersion(const GetVersionRequest& request, GetVersionResponse* response);
55 SupportedAlgorithmsResponse* response);
57 SupportedBlockModesResponse* response);
59 SupportedPaddingModesResponse* response);
61 SupportedDigestsResponse* response);
63 SupportedImportFormatsResponse* response);
65 SupportedExportFormatsResponse* response);
67 void AddRngEntropy(const AddEntropyRequest& request, AddEntropyResponse* response);
68 void GenerateKey(const GenerateKeyRequest& request, GenerateKeyResponse* response);
70 GetKeyCharacteristicsResponse* response);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudfront/
test_connection.py 38 response = self.service_connection.get_all_distributions()
40 self.assertTrue(isinstance(response, list))
41 self.assertEqual(len(response), 1)
42 self.assertTrue(isinstance(response[0], DistributionSummary))
43 self.assertEqual(response[0].id, "EEEEEEEEEEEEE")
44 self.assertEqual(response[0].domain_name, "abcdef12345678.cloudfront.net")
45 self.assertEqual(response[0].status, "InProgress")
46 self.assertEqual(response[0].cnames, ["static.example.com"])
47 self.assertEqual(response[0].enabled, True)
48 self.assertTrue(isinstance(response[0].origin, CustomOrigin)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 42 private MockResponse response; field in class:URLConnectionBenchmark.SingleResponseDispatcher
43 SingleResponseDispatcher(MockResponse response) {
44 this.response = response;
47 return response;
55 MockResponse response = new MockResponse(); local
56 responseHeaders.apply(response);
57 transferEncoding.setBody(response, bodySize, chunkSize);
59 // keep serving the same response for all iterations
60 server.setDispatcher(new SingleResponseDispatcher(response));
    [all...]
  /frameworks/base/tools/preload/loadclass/
LoadClass.java 59 StringBuilder response = new StringBuilder("DECAFBAD"); local
64 response.append(',').append(memoryInfo.nativeSharedDirty);
65 response.append(',').append(memoryInfo.dalvikSharedDirty);
66 response.append(',').append(memoryInfo.otherSharedDirty);
67 response.append(',').append(memoryInfo.nativePrivateDirty);
68 response.append(',').append(memoryInfo.dalvikPrivateDirty);
69 response.append(',').append(memoryInfo.otherPrivateDirty);
71 response.append(',').append(allocCount);
72 response.append(',').append(allocSize);
73 response.append(',').append(freedCount)
    [all...]
  /system/bt/hci/include/
hci_packet_parser.h 31 void (*parse_generic_command_complete)(BT_HDR *response);
34 BT_HDR *response,
40 BT_HDR *response,
45 BT_HDR *response,
50 BT_HDR *response,
56 BT_HDR *response,
64 BT_HDR *response,
69 BT_HDR *response,
75 BT_HDR *response,
81 BT_HDR *response,
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/rds/
test_snapshot.py 81 response = self.service_connection.get_all_dbsnapshots(instance_id='simcoprod01')
86 self.assertEqual(len(response), 3)
87 self.assertIsInstance(response[0], DBSnapshot)
88 self.assertEqual(response[0].id, 'mydbsnapshot')
89 self.assertEqual(response[0].status, 'available')
90 self.assertEqual(response[0].instance_id, 'simcoprod01')
91 self.assertEqual(response[0].engine_version, '5.1.50')
92 self.assertEqual(response[0].license_model, 'general-public-license')
93 self.assertEqual(response[0].iops, 1000)
94 self.assertEqual(response[0].option_group_name, 'myoptiongroupname'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/
test_spotinstance.py 29 response = self.service_connection.cancel_spot_instance_requests(['sir-1a2b3c4d',
38 self.assertEqual(len(response), 2)
39 self.assertEqual(response[0].id, 'sir-1a2b3c4d')
40 self.assertEqual(response[0].state, 'cancelled')
41 self.assertEqual(response[1].id, 'sir-9f8e7d6c')
42 self.assertEqual(response[1].state, 'cancelled')
75 response = self.service_connection.get_spot_price_history(
83 self.assertEqual(len(response), 2)
84 self.assertEqual(response.next_token,
86 self.assertEqual(response.nextToken
    [all...]
test_reservedinstance.py 37 response = self.service_connection.get_all_reserved_instances()
39 self.assertEqual(len(response), 1)
40 self.assertTrue(isinstance(response[0], ReservedInstance))
41 self.assertEquals(response[0].id, 'ididididid')
42 self.assertEquals(response[0].instance_count, 5)
43 self.assertEquals(response[0].start, '2014-05-03T14:10:10.944Z')
44 self.assertEquals(response[0].end, '2014-05-03T14:10:11.000Z')
  /system/keymaster/
android_keymaster.cpp 86 SupportedResponse<T>* response) {
88 response->error = KM_ERROR_UNSUPPORTED_ALGORITHM;
105 SupportedAlgorithmsResponse* response) {
106 if (response == NULL)
109 response->error = KM_ERROR_OK;
115 response->results_length = algorithm_count;
116 response->results = dup_array(algorithms, algorithm_count);
117 if (!response->results)
118 response->error = KM_ERROR_MEMORY_ALLOCATION_FAILED;
125 SupportedResponse<T>* response) {
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
tunes_db_test.py 112 response = self.service.add_artist(request)
113 response.check_initialized()
115 elvis = model.ArtistInfo.get(response.artist_id)
126 response = self.service.update_artist(request)
127 response.check_initialized()
129 self.assertTrue(response.artist_updated)
144 response = self.service.update_artist(request)
145 response.check_initialized()
147 self.assertFalse(response.artist_updated)
155 response = self.service.delete_artist(request
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/kinesis/
test_kinesis.py 50 response = kinesis.describe_stream('test')
52 if response['StreamDescription']['StreamStatus'] == 'ACTIVE':
53 shard_id = response['StreamDescription']['Shards'][0]['ShardId']
62 response = kinesis.list_tags_for_stream(stream_name='test')
63 self.assertEqual(len(response['Tags']), 1)
64 self.assertEqual(response['Tags'][0],
69 response = kinesis.list_tags_for_stream(stream_name='test')
70 self.assertEqual(len(response['Tags']), 0)
73 response = kinesis.get_shard_iterator('test', shard_id, 'TRIM_HORIZON')
74 shard_iterator = response['ShardIterator'
    [all...]
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
GZipIntegrationTest.java 60 public Response response; field in class:GZipIntegrationTest.TestServer
67 public Response serve(IHTTPSession session) {
68 return response;
72 protected boolean useGzipWhenAccepted(Response r) {
84 testServer.response = NanoHTTPD.newFixedLengthResponse("This is a test");
87 HttpResponse response = httpclient.execute(request); local
88 Header contentEncoding = response.getFirstHeader("content-encoding");
96 testServer.response = NanoHTTPD.newChunkedResponse(NanoHTTPD.Response.Status.OK, "text/plain", data)
99 HttpResponse response = httpclient.execute(request); local
110 HttpResponse response = httpclient.execute(request); local
121 HttpResponse response = httpclient.execute(request); local
131 HttpResponse response = new DecompressingHttpClient(httpclient).execute(request); local
141 HttpResponse response = new DecompressingHttpClient(httpclient).execute(request); local
149 HttpResponse response = httpclient.execute(request); local
161 HttpResponse response = httpclient.execute(request); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
test_response.py 24 from boto.glacier.response import GlacierResponse
30 response = self.create_response(status_code=204,header=[('Content-Type','application/json')])
31 result = GlacierResponse(response,response.getheaders())
32 self.assertEquals(result.status, response.status)
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
PushPromise.java 25 private final MockResponse response; field in class:PushPromise
27 public PushPromise(String method, String path, Headers headers, MockResponse response) {
31 this.response = response;
47 return response;
  /frameworks/base/core/java/android/accounts/
IAccountAuthenticator.aidl 31 void addAccount(in IAccountAuthenticatorResponse response, String accountType,
37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account,
43 void getAuthToken(in IAccountAuthenticatorResponse response, in Account account,
49 void getAuthTokenLabel(in IAccountAuthenticatorResponse response, String authTokenType);
54 void updateCredentials(in IAccountAuthenticatorResponse response, in Account account,
60 void editProperties(in IAccountAuthenticatorResponse response, String accountType);
66 void hasFeatures(in IAccountAuthenticatorResponse response, in Account account,
72 void getAccountRemovalAllowed(in IAccountAuthenticatorResponse response, in Account account);
77 void getAccountCredentialsForCloning(in IAccountAuthenticatorResponse response,
84 void addAccountFromCredentials(in IAccountAuthenticatorResponse response, in Account account
    [all...]

Completed in 1318 milliseconds

1 2 3 4 5 6 7 8 91011>>