Home
last modified time | relevance | path

Searched refs:mAccount (Results 1 – 12 of 12) sorted by relevance

/frameworks/volley/src/com/android/volley/toolbox/
DAndroidAuthenticator.java34 private final Account mAccount; field in AndroidAuthenticator
58 mAccount = account; in AndroidAuthenticator()
67 return mAccount; in getAccount()
73 AccountManagerFuture<Bundle> future = accountManager.getAuthToken(mAccount, in getAuthToken()
98 AccountManager.get(mContext).invalidateAuthToken(mAccount.type, authToken); in invalidateAuthToken()
/frameworks/base/core/java/android/accounts/
DGrantCredentialsPermissionActivity.java46 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()
/frameworks/base/core/java/android/content/
DSyncActivityTooManyDeletes.java42 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()
DAbstractThreadedSyncAdapter.java228 private final Account mAccount; field in AbstractThreadedSyncAdapter.SyncThread
237 mAccount = account; in SyncThread()
259 AbstractThreadedSyncAdapter.this.onPerformSync(mAccount, mExtras, in run()
DSyncRequest.java203 mAccountToSync = b.mAccount; in SyncRequest()
294 private Account mAccount; field in SyncRequest.Builder
415 mAccount = account; in setSyncAdapter()
588 if (mAccount == null) { in build()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardEntryConstructor.java54 private final Account mAccount; field in VCardEntryConstructor
78 mAccount = account; in VCardEntryConstructor()
106 mCurrentEntry = new VCardEntry(mVCardType, mAccount); in onEntryStarted()
DVCardEntry.java1741 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/
DBaseEmailAddressAdapter.java180 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/
DBaseRecipientAdapter.java280 paramsList = setupOtherDirectories(mContext, directoryCursor, mAccount); in performFiltering()
461 private Account mAccount; field in BaseRecipientAdapter
579 mAccount = account; in setAccount()
887 if (mAccount != null) { in doQuery()
888 builder.appendQueryParameter(PRIMARY_ACCOUNT_NAME, mAccount.name); in doQuery()
889 builder.appendQueryParameter(PRIMARY_ACCOUNT_TYPE, mAccount.type); in doQuery()
1055 return mAccount; in getAccount()
/frameworks/base/services/java/com/android/server/accounts/
DAccountManagerService.java794 private final Account mAccount; field in AccountManagerService.TestFeaturesSession
801 mAccount = account; in TestFeaturesSession()
807 mAuthenticator.hasFeatures(this, mAccount, mFeatures); in run()
842 + ", " + mAccount in toDebugString()
889 final Account mAccount; field in AccountManagerService.RemoveAccountSession
894 mAccount = account; in RemoveAccountSession()
900 + ", account " + mAccount; in toDebugString()
905 mAuthenticator.getAccountRemovalAllowed(this, mAccount); in run()
914 removeAccountInternal(mAccounts, mAccount); in onResult()
/frameworks/base/docs/html/training/sync-adapters/
Drunning-sync-adapter.jd486 Account mAccount;
497 mAccount = CreateSyncAccount(this);
522 ContentResolver.requestSync(mAccount, AUTHORITY, settingsBundle);
Dcreating-sync-adapter.jd391 Account mAccount;
398 mAccount = CreateSyncAccount(this);