/frameworks/support/volley/src/com/android/volley/toolbox/ |
D | AndroidAuthenticator.java | 34 private final Account mAccount; field in AndroidAuthenticator 45 mAccount = account; in AndroidAuthenticator() 53 return mAccount; in getAccount() 59 AccountManagerFuture<Bundle> future = accountManager.getAuthToken(mAccount, in getAuthToken() 84 AccountManager.get(mContext).invalidateAuthToken(mAccount.type, authToken); in invalidateAuthToken()
|
/frameworks/base/core/java/android/accounts/ |
D | GrantCredentialsPermissionActivity.java | 46 private Account mAccount; field in GrantCredentialsPermissionActivity 68 mAccount = extras.getParcelable(EXTRAS_ACCOUNT); in onCreate() 74 if (mAccount == null || mAuthTokenType == null || packages == null) { in onCreate() 83 accountTypeLabel = getAccountLabel(mAccount); in onCreate() 114 AccountManager.get(this).getAuthTokenLabel(mAccount.type, mAuthTokenType, callback, null); in onCreate() 131 ((TextView) findViewById(R.id.account_name)).setText(mAccount.name); in onCreate() 162 AccountManager.get(this).updateAppPermission(mAccount, mAuthTokenType, mUid, true); in onClick() 170 AccountManager.get(this).updateAppPermission(mAccount, mAuthTokenType, mUid, false); in onClick()
|
D | AccountManagerService.java | 583 private final Account mAccount; field in AccountManagerService.TestFeaturesSession 590 mAccount = account; in TestFeaturesSession() 595 mAuthenticator.hasFeatures(this, mAccount, mFeatures); in run() 628 + ", " + mAccount in toDebugString() 665 final Account mAccount; field in AccountManagerService.RemoveAccountSession 670 mAccount = account; in RemoveAccountSession() 675 + ", account " + mAccount; in toDebugString() 679 mAuthenticator.getAccountRemovalAllowed(this, mAccount); in run() 687 removeAccountInternal(mAccounts, mAccount); in onResult()
|
/frameworks/base/core/java/android/content/ |
D | SyncActivityTooManyDeletes.java | 42 private Account mAccount; field in SyncActivityTooManyDeletes 57 mAccount = (Account) extras.getParcelable("account"); in onCreate() 82 mNumDeletes, mProvider, mAccount.name)); in onCreate() 122 ContentResolver.requestSync(mAccount, mAuthority, extras); in startSyncReallyDelete() 131 ContentResolver.requestSync(mAccount, mAuthority, extras); in startSyncUndoDeletes()
|
D | AbstractThreadedSyncAdapter.java | 223 private final Account mAccount; field in AbstractThreadedSyncAdapter.SyncThread 232 mAccount = account; in SyncThread() 254 AbstractThreadedSyncAdapter.this.onPerformSync(mAccount, mExtras, in run()
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardEntryConstructor.java | 54 private final Account mAccount; field in VCardEntryConstructor 78 mAccount = account; in VCardEntryConstructor() 106 mCurrentEntry = new VCardEntry(mVCardType, mAccount); in onEntryStarted()
|
D | VCardEntry.java | 1741 private final Account mAccount; field in VCardEntry 1762 mAccount = account; in VCardEntry() 2550 if (mAccount != null) { in constructInsertOperations() 2551 builder.withValue(RawContacts.ACCOUNT_NAME, mAccount.name); in constructInsertOperations() 2552 builder.withValue(RawContacts.ACCOUNT_TYPE, mAccount.type); in constructInsertOperations()
|
/frameworks/ex/common/java/com/android/common/contacts/ |
D | BaseEmailAddressAdapter.java | 180 if (mAccount != null) { in performFiltering() 181 builder.appendQueryParameter(PRIMARY_ACCOUNT_NAME, mAccount.name); in performFiltering() 182 builder.appendQueryParameter(PRIMARY_ACCOUNT_TYPE, mAccount.type); in performFiltering() 255 private Account mAccount; field in BaseEmailAddressAdapter 282 mAccount = account; in setAccount() 406 if (mAccount != null && mAccount.name.equals(partition.accountName) && in onDirectoryLoadFinished() 407 mAccount.type.equals(partition.accountType)) { in onDirectoryLoadFinished()
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
D | BaseRecipientAdapter.java | 418 private Account mAccount; field in BaseRecipientAdapter 530 mAccount = account; in setAccount() 577 if (mAccount != null && mAccount.name.equals(params.accountName) && in setupOtherDirectories() 578 mAccount.type.equals(params.accountType)) { in setupOtherDirectories() 774 if (mAccount != null) { in doQuery() 775 builder.appendQueryParameter(PRIMARY_ACCOUNT_NAME, mAccount.name); in doQuery() 776 builder.appendQueryParameter(PRIMARY_ACCOUNT_TYPE, mAccount.type); in doQuery()
|