HomeSort by relevance Sort by last modified time
    Searched full:accountauthenticatorresponse (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/base/core/java/android/accounts/
AccountAuthenticatorResponse.java 28 public class AccountAuthenticatorResponse implements Parcelable {
36 public AccountAuthenticatorResponse(IAccountAuthenticatorResponse response) {
40 public AccountAuthenticatorResponse(Parcel parcel) {
48 Log.v(TAG, "AccountAuthenticatorResponse.onResult: "
60 Log.v(TAG, "AccountAuthenticatorResponse.onRequestContinued");
71 Log.v(TAG, "AccountAuthenticatorResponse.onError: " + errorCode + ", " + errorMessage);
88 public static final Creator<AccountAuthenticatorResponse> CREATOR =
89 new Creator<AccountAuthenticatorResponse>() {
90 public AccountAuthenticatorResponse createFromParcel(Parcel source) {
91 return new AccountAuthenticatorResponse(source)
    [all...]
AbstractAccountAuthenticator.java 90 * the {@link AccountAuthenticatorResponse} as {@link AccountManager#KEY_ACCOUNT_MANAGER_RESPONSE}.
91 * The activity must then call {@link AccountAuthenticatorResponse#onResult} or
92 * {@link AccountAuthenticatorResponse#onError} when it is complete.
129 new AccountAuthenticatorResponse(response),
151 new AccountAuthenticatorResponse(response), account, options);
197 new AccountAuthenticatorResponse(response), account,
221 new AccountAuthenticatorResponse(response), account,
242 new AccountAuthenticatorResponse(response), accountType);
256 new AccountAuthenticatorResponse(response), account, features);
270 new AccountAuthenticatorResponse(response), account)
    [all...]
AccountAuthenticatorActivity.java 38 private AccountAuthenticatorResponse mAccountAuthenticatorResponse = null;
52 * Retreives the AccountAuthenticatorResponse from either the intent of the icicle, if the
GrantCredentialsPermissionActivity.java 187 AccountAuthenticatorResponse response = intent.getParcelableExtra(EXTRAS_RESPONSE);
  /cts/tests/src/android/content/cts/
MockAccountAuthenticator.java 21 import android.accounts.AccountAuthenticatorResponse;
50 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
57 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
62 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
68 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
77 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
88 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
StaticAccountAuthenticator.java 21 import android.accounts.AccountAuthenticatorResponse;
58 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
63 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
70 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
78 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
89 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
95 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
TestAuthenticator.java 21 import android.accounts.AccountAuthenticatorResponse;
62 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
82 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
95 AccountAuthenticatorResponse response, Account account, Bundle options) {
101 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
115 AccountAuthenticatorResponse response, Account account, String[] features) {
126 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
  /packages/apps/Email/src/com/android/email/service/
EasTestAuthenticatorService.java 21 import android.accounts.AccountAuthenticatorResponse;
48 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
78 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
84 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
89 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
101 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
107 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
EasAuthenticatorService.java 26 import android.accounts.AccountAuthenticatorResponse;
58 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
120 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
126 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
131 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
143 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
149 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
PopImapAuthenticatorService.java 26 import android.accounts.AccountAuthenticatorResponse;
56 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
98 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
104 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
109 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
121 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
127 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountAuthenticator.java 21 import android.accounts.AccountAuthenticatorResponse;
34 private AccountAuthenticatorResponse mResponse;
55 public AccountAuthenticatorResponse getResponse() {
105 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
122 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
139 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
151 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
168 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
193 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account,
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
Authenticator.java 24 import android.accounts.AccountAuthenticatorResponse;
64 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
76 AccountAuthenticatorResponse response, Account account, Bundle options) {
82 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
88 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account,
136 AccountAuthenticatorResponse response, Account account, String[] features) {
147 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
  /frameworks/base/docs/html/sdk/api_diff/18/changes/
android.accounts.AbstractAccountAuthenticator.html 86 <A NAME="android.accounts.AbstractAccountAuthenticator.addAccountFromCredentials_added(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)"></A>
87 <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/accounts/AbstractAccountAuthenticator.html#addAccountFromCredentials(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" target="_top"><code>addAccountFromCredentials</code></A>(<code>AccountAuthenticatorResponse,</nobr> Account<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
93 <A NAME="android.accounts.AbstractAccountAuthenticator.getAccountCredentialsForCloning_added(android.accounts.AccountAuthenticatorResponse, android.accounts.Account)"></A>
94 <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/accounts/AbstractAccountAuthenticator.html#getAccountCredentialsForCloning(android.accounts.AccountAuthenticatorResponse, android.accounts.Account)" target="_top"><code>getAccountCredentialsForCloning</code></A>(<code>AccountAuthenticatorResponse,</nobr> Account<nobr><nobr></code>)</nobr>
methods_index_additions.html 68 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.addAccountFromCredentials_added(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>addAccountFromCredentials</b>
69 (<code>AccountAuthenticatorResponse, Account, Bundle</code>)</A></nobr><br>
198 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.getAccountCredentialsForCloning_added(android.accounts.AccountAuthenticatorResponse, android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getAccountCredentialsForCloning</b>
199 (<code>AccountAuthenticatorResponse, Account</code>)</A></nobr><br>
    [all...]
methods_index_all.html 69 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.addAccountFromCredentials_added(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>addAccountFromCredentials</b>
70 (<code>AccountAuthenticatorResponse, Account, Bundle</code>)</A></nobr><br>
212 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.getAccountCredentialsForCloning_added(android.accounts.AccountAuthenticatorResponse, android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getAccountCredentialsForCloning</b>
213 (<code>AccountAuthenticatorResponse, Account</code>)</A></nobr><br>
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/6/changes/
android.accounts.AbstractAccountAuthenticator.html 86 <A NAME="android.accounts.AbstractAccountAuthenticator.confirmCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)"></A>
87 <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/accounts/AbstractAccountAuthenticator.html#confirmCredentials(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" target="_top"><code>confirmCredentials</code></A>(<code>AccountAuthenticatorResponse,</nobr> Account<nobr>,</nobr> Bundle<nobr><nobr></code>) </nobr>
96 <A NAME="android.accounts.AbstractAccountAuthenticator.updateCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)"></A>
97 <nobr><code>Bundle</code>&nbsp;<A HREF="../../../../reference/android/accounts/AbstractAccountAuthenticator.html#updateCredentials(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)" target="_top"><code>updateCredentials</code></A>(<code>AccountAuthenticatorResponse,</nobr> Account<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>) </nobr>
methods_index_all.html 55 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.confirmCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" class="hiddenlink" target="rightframe">confirmCredentials
56 (<code>AccountAuthenticatorResponse, Account, Bundle</code>)</A></nobr><br>
62 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.updateCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">updateCredentials
63 (<code>AccountAuthenticatorResponse, Account, String, Bundle</code>)</A></nobr><br>
methods_index_changes.html 55 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.confirmCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" class="hiddenlink" target="rightframe">confirmCredentials
56 (<code>AccountAuthenticatorResponse, Account, Bundle</code>)</A></nobr><br>
62 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.updateCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">updateCredentials
63 (<code>AccountAuthenticatorResponse, Account, String, Bundle</code>)</A></nobr><br>
alldiffs_index_changes.html 93 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.confirmCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" class="hiddenlink" target="rightframe">confirmCredentials
94 (<code>AccountAuthenticatorResponse, Account, Bundle</code>)</A></nobr><br>
131 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.updateCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">updateCredentials
132 (<code>AccountAuthenticatorResponse, Account, String, Bundle</code>)</A></nobr><br>
alldiffs_index_all.html 99 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.confirmCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)" class="hiddenlink" target="rightframe">confirmCredentials
100 (<code>AccountAuthenticatorResponse, Account, Bundle</code>)</A></nobr><br>
188 <nobr><A HREF="android.accounts.AbstractAccountAuthenticator.html#android.accounts.AbstractAccountAuthenticator.updateCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">updateCredentials
189 (<code>AccountAuthenticatorResponse, Account, String, Bundle</code>)</A></nobr><br>
  /frameworks/base/docs/html/training/sync-adapters/
creating-authenticator.jd 85 AccountAuthenticatorResponse r, String s) {
91 AccountAuthenticatorResponse r,
101 AccountAuthenticatorResponse r,
109 AccountAuthenticatorResponse r,
123 AccountAuthenticatorResponse r,
131 AccountAuthenticatorResponse r,
  /frameworks/base/docs/html/sdk/api_diff/6/
user_comments_for_5_to_6.xml 91 <identifier id="android.accounts.AbstractAccountAuthenticator.confirmCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, android.os.Bundle)"/>
97 <identifier id="android.accounts.AbstractAccountAuthenticator.updateCredentials_changed(android.accounts.AccountAuthenticatorResponse, android.accounts.Account, java.lang.String, android.os.Bundle)"/>
  /packages/apps/Email/src/com/android/email/activity/setup/
SetupData.java 22 import android.accounts.AccountAuthenticatorResponse;
63 private AccountAuthenticatorResponse mAccountAuthenticatorResponse = null;
160 static public AccountAuthenticatorResponse getAccountAuthenticatorResponse() {
164 static public void setAccountAuthenticatorResponse(AccountAuthenticatorResponse response) {
AccountSetupOptions.java 19 import android.accounts.AccountAuthenticatorResponse;
172 AccountAuthenticatorResponse authenticatorResponse =
325 AccountAuthenticatorResponse authenticatorResponse =
AccountSetupBasics.java 19 import android.accounts.AccountAuthenticatorResponse;
257 // Set aside incoming AccountAuthenticatorResponse, if there was any
258 AccountAuthenticatorResponse authenticatorResponse =
336 AccountAuthenticatorResponse authenticatorResponse =

Completed in 340 milliseconds

1 2