Home | History | Annotate | Download | only in authenticator

Lines Matching defs:bundle

25 import android.os.Bundle;
48 public Bundle addAccount(AccountAuthenticatorResponse response,
50 Bundle options) {
56 final Bundle bundle = new Bundle();
57 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
58 return bundle;
65 public Bundle confirmCredentials(AccountAuthenticatorResponse response,
66 Account account, Bundle options) {
72 final Bundle result = new Bundle();
82 final Bundle bundle = new Bundle();
83 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
84 return bundle;
91 public Bundle editProperties(AccountAuthenticatorResponse response,
100 public Bundle getAuthToken(AccountAuthenticatorResponse response,
101 Account account, String authTokenType, Bundle loginOptions) {
103 final Bundle result = new Bundle();
114 final Bundle result = new Bundle();
130 final Bundle bundle = new Bundle();
131 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
132 return bundle;
151 public Bundle hasFeatures(AccountAuthenticatorResponse response,
153 final Bundle result = new Bundle();
170 public Bundle updateCredentials(AccountAuthenticatorResponse response,
171 Account account, String authTokenType, Bundle loginOptions) {
177 final Bundle bundle = new Bundle();
178 bundle.putParcelable(AccountManager.KEY_INTENT, intent);
179 return bundle;