Searched refs:mAccount (Results 1 - 10 of 10) sorted by relevance

/frameworks/volley/src/com/android/volley/toolbox/
H A DAndroidAuthenticator.java34 private final Account mAccount; field in class:AndroidAuthenticator
58 mAccount = account;
67 return mAccount;
73 AccountManagerFuture<Bundle> future = accountManager.getAuthToken(mAccount,
98 AccountManager.get(mContext).invalidateAuthToken(mAccount.type, authToken);
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java42 private Account mAccount; field in class:SyncActivityTooManyDeletes
57 mAccount = (Account) extras.getParcelable("account");
82 mNumDeletes, mProvider, mAccount.name));
94 // if (desc.type.equals(mAccount.type)) {
122 ContentResolver.requestSync(mAccount, mAuthority, extras);
131 ContentResolver.requestSync(mAccount, mAuthority, extras);
H A DAbstractThreadedSyncAdapter.java228 private final Account mAccount; field in class:AbstractThreadedSyncAdapter.SyncThread
237 mAccount = account;
259 AbstractThreadedSyncAdapter.this.onPerformSync(mAccount, mExtras,
H A DSyncRequest.java203 mAccountToSync = b.mAccount;
294 private Account mAccount; field in class:SyncRequest.Builder
415 mAccount = account;
588 if (mAccount == null) {
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryConstructor.java54 private final Account mAccount; field in class:VCardEntryConstructor
78 mAccount = account;
106 mCurrentEntry = new VCardEntry(mVCardType, mAccount);
H A DVCardEntry.java1741 private final Account mAccount; field in class:VCardEntry
1762 mAccount = account;
2550 if (mAccount != null) {
2551 builder.withValue(RawContacts.ACCOUNT_NAME, mAccount.name);
2552 builder.withValue(RawContacts.ACCOUNT_TYPE, mAccount.type);
/frameworks/base/core/java/android/accounts/
H A DGrantCredentialsPermissionActivity.java46 private Account mAccount; field in class:GrantCredentialsPermissionActivity
68 mAccount = extras.getParcelable(EXTRAS_ACCOUNT);
74 if (mAccount == null || mAuthTokenType == null || packages == null) {
83 accountTypeLabel = getAccountLabel(mAccount);
114 AccountManager.get(this).getAuthTokenLabel(mAccount.type, mAuthTokenType, callback, null);
131 ((TextView) findViewById(R.id.account_name)).setText(mAccount.name);
162 AccountManager.get(this).updateAppPermission(mAccount, mAuthTokenType, mUid, true);
170 AccountManager.get(this).updateAppPermission(mAccount, mAuthTokenType, mUid, false);
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java180 if (mAccount != null) {
181 builder.appendQueryParameter(PRIMARY_ACCOUNT_NAME, mAccount.name);
182 builder.appendQueryParameter(PRIMARY_ACCOUNT_TYPE, mAccount.type);
255 private Account mAccount; field in class:BaseEmailAddressAdapter
282 mAccount = account;
406 if (mAccount != null && mAccount.name.equals(partition.accountName) &&
407 mAccount.type.equals(partition.accountType)) {
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java275 paramsList = setupOtherDirectories(mContext, directoryCursor, mAccount);
456 private Account mAccount; field in class:BaseRecipientAdapter
574 mAccount = account;
879 if (mAccount != null) {
880 builder.appendQueryParameter(PRIMARY_ACCOUNT_NAME, mAccount.name);
881 builder.appendQueryParameter(PRIMARY_ACCOUNT_TYPE, mAccount.type);
1047 return mAccount;
/frameworks/base/services/java/com/android/server/accounts/
H A DAccountManagerService.java790 private final Account mAccount; field in class:AccountManagerService.TestFeaturesSession
797 mAccount = account;
803 mAuthenticator.hasFeatures(this, mAccount, mFeatures);
838 + ", " + mAccount
884 final Account mAccount; field in class:AccountManagerService.RemoveAccountSession
889 mAccount = account;
895 + ", account " + mAccount;
900 mAuthenticator.getAccountRemovalAllowed(this, mAccount);
909 removeAccountInternal(mAccounts, mAccount);

Completed in 307 milliseconds