HomeSort by relevance Sort by last modified time
    Searched refs:response (Results 426 - 450 of 2555) sorted by null

<<11121314151617181920>>

  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
AccountAuthenticator.java 71 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
78 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
83 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
89 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
98 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
109 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
118 public Bundle getAccountCredentialsForCloning(AccountAuthenticatorResponse response, Account account) {
128 public Bundle addAccountFromCredentials(AccountAuthenticatorResponse response, Account account,
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 64 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
68 intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
76 AccountAuthenticatorResponse response, Account account, Bundle options) {
82 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
88 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
121 intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
136 AccountAuthenticatorResponse response, Account account, String[] features) {
147 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
  /external/apache-http/src/org/apache/http/impl/
AbstractHttpServerConnection.java 170 public void sendResponseHeader(final HttpResponse response)
172 if (response == null) {
173 throw new IllegalArgumentException("HTTP response may not be null");
176 this.responseWriter.write(response);
177 if (response.getStatusLine().getStatusCode() >= 200) {
182 public void sendResponseEntity(final HttpResponse response)
184 if (response.getEntity() == null) {
189 response,
190 response.getEntity());
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRedirectHandler.java 81 final HttpResponse response,
83 if (response == null) {
84 throw new IllegalArgumentException("HTTP response may not be null");
86 int statusCode = response.getStatusLine().getStatusCode();
99 final HttpResponse response,
101 if (response == null) {
102 throw new IllegalArgumentException("HTTP response may not be null");
105 Header locationHeader = response.getFirstHeader("location");
107 // got a redirect response, but no location header
109 "Received redirect response " + response.getStatusLine(
    [all...]
  /external/autotest/client/site_tests/hardware_I2CProbe/
hardware_I2CProbe.py 27 response = i2c_detect(bus, addr)
28 return (re.search('^\d\d:\s+(UU|[0-9a-f]{2})', response, re.MULTILINE) is
  /external/autotest/frontend/migrations/
046_merge_databases.py 23 response = raw_input(
29 if response != 'yes':
  /external/curl/docs/cmdline-opts/
ftp-skip-pasv-ip.d 7 Tell curl to not use the IP address the server suggests in its response
tr-encoding.d 6 Request a compressed Transfer-Encoding response using one of the algorithms
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
InterfaceControlMessagesHelper.java 42 RunResponseMessageParams response = local
44 mCallback.call(response);
77 RunResponseMessageParams response = new RunResponseMessageParams(); local
78 response.output = new RunOutput();
80 response.output.setQueryVersionResult(new QueryVersionResult());
81 response.output.getQueryVersionResult().version = manager.getVersion();
83 response.output = null;
86 return responder.accept(response.serializeWithHeader(
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
HelpCommandHandler.java 64 public void setHelpMessage(String response) {
65 this.helpMessage = response;
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpChunkedResponseTest.java 36 import static fi.iki.elonen.NanoHTTPD.Response.Status.OK;
88 this.testServer.response = new NanoHTTPD(0) {
90 this.testServer.response.setChunkedTransfer(true);
  /external/nos/host/android/hals/keymaster/citadel/
service.cpp 58 ProvisionPresharedSecretResponse response; local
62 request, &response);
68 const ErrorCode error_code = translate_error_code(response.error_code());
70 LOG(ERROR) << "ProvisionPresharedSecret() response error code: "
74 if (response.status() == PresharedSecretStatus::ALREADY_SET) {
104 ProvisionPresharedSecretResponse response; local
109 request, &response);
115 if (response.error_code() != ErrorCodeNos::OK) {
117 << response.error_code();
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 47 * Construct an OAuthMessage from the HTTP response, including parameters
49 * come first, followed by the ones from the response body.
51 public HttpMethodResponse(HttpRequestBase request, HttpResponse response, byte[] requestBody,
56 this.httpResponse = response;
121 StringBuilder response = new StringBuilder(); local
123 response.append(value).append(EOL);
127 response.append(name).append(": ").append(value).append(EOL);
129 response.append(EOL);
131 response.append(new String(((ExcerptInputStream) body).getExcerpt(),
134 into.put(HttpMessage.RESPONSE, response.toString())
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
ConfigureTimeouts.java 20 import com.squareup.okhttp.Response;
38 Response response = client.newCall(request).execute(); local
39 System.out.println("Response completed: " + response);
  /external/tensorflow/tensorflow/contrib/tpu/profiler/
capture_tpu_profile.cc 85 ProfileResponse response; local
86 TF_QCHECK_OK(FromGrpcStatus(stub->Profile(&context, request, &response)));
87 return response;
138 tensorflow::ProfileResponse response; local
143 response = tensorflow::tpu::Profile(FLAGS_service_addr, duration_ms, opts);
144 if (remaining_attempts <= 0 || !response.encoded_trace().empty()) break;
150 if (response.encoded_trace().empty()) {
164 FLAGS_logdir, run, response, &std::cout));
  /external/tensorflow/tensorflow/core/distributed_runtime/
tensor_coding.h 73 // Initialize tensor from *response.
74 // Leaves *response with unspecified contents.
75 Status InitFrom(RecvTensorResponse* response);
77 // Initialize tensor metadata from response and allocate
79 void InitPartial(const RecvTensorResponse& response);
  /external/toolchain-utils/cwp/bartlett/
server.py 54 def get(self, response=''): # pylint: disable-msg=C6409
55 if response:
56 self.response.out.write('<html><body>')
57 self.response.out.write("""<br>
83 self.response.out.write(getfile.key())
95 self.response.out.write(request.profile_data)
112 self.response.out.write(delimiter.join(str_list) + '</br>')
135 webpage.response.out.write('Not Authenticated')
  /external/volley/src/main/java/com/android/volley/toolbox/
ClearCacheRequest.java 22 import com.android.volley.Response;
63 protected Response<Object> parseNetworkResponse(NetworkResponse response) {
68 protected void deliverResponse(Object response) {
  /frameworks/base/core/java/android/accounts/
AccountManagerResponse.java 25 * Used to return a response to the AccountManager.
32 public AccountManagerResponse(IAccountManagerResponse response) {
33 mResponse = response;
  /frameworks/base/core/java/android/content/
IRestrictionsManager.aidl 32 void notifyPermissionResponse(in String packageName, in PersistableBundle response);
  /frameworks/support/jetifier/jetifier/source-transformer/
rewriteMake.py 111 response = raw_input("Ok? [y/n]") variable
112 if response == "y":
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionService.java 49 * Process a response from the BackgroundWorker in the ActionService
52 final Action action, final Bundle response) {
53 ActionServiceImpl.handleResponseFromBackgroundWorker(action, response);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rdma/
rdma_user_cm.h 78 __u64 response; member in struct:rdma_ucm_create_id
89 __u64 response; member in struct:rdma_ucm_destroy_id
99 __u64 response; member in struct:rdma_ucm_bind_addr
117 __u64 response; member in struct:rdma_ucm_query_route
185 __u64 response; member in struct:rdma_ucm_init_qp_attr
196 __u64 response; /* rdma_ucm_create_id_resp */ member in struct:rdma_ucm_join_mcast
203 __u64 response; member in struct:rdma_ucm_get_event
239 __u64 response; member in struct:rdma_ucm_migrate_id
  /system/tpm/tpm_manager/server/
dbus_service.cc 131 std::unique_ptr<DBusMethodResponse<const ReplyProtobufType&>> response,
133 // Convert |response| to a shared_ptr so |nvram_service_| can safely copy the
138 auto callback = [](const SharedResponsePointer& response,
140 response->Return(reply);
144 base::Bind(callback, SharedResponsePointer(std::move(response))));
153 std::unique_ptr<DBusMethodResponse<const ReplyProtobufType&>> response,
155 // Convert |response| to a shared_ptr so |ownership_service_| can safely
160 auto callback = [](const SharedResponsePointer& response,
162 response->Return(reply);
166 base::Bind(callback, SharedResponsePointer(std::move(response))));
    [all...]
  /tools/test/connectivity/tools/lab/metrics/
read_metric.py 29 # Fields for response dictionary
82 # Create response dictionary
83 response = {
87 return response

Completed in 603 milliseconds

<<11121314151617181920>>