Home
last modified time | relevance | path

Searched defs:account (Results 1 – 25 of 231) sorted by relevance

12345678910

/packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
DSendersFormattingTests.java50 final Account account = createAccount(); in testMeFromNullName() local
51 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); in testMeFromNullName() local
62 final Account account = createAccount(); in testMeFromEmptyName() local
63 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); in testMeFromEmptyName() local
75 final Account account = createAccount(); in testMeFromDuplicateEmptyNames() local
76 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); in testMeFromDuplicateEmptyNames() local
90 final Account account = createAccount(); in testDuplicates() local
91 SendersView.format(getContext(), conv, "", 100, strings, null, null, account, false, false); in testDuplicates() local
138 final Account account = createAccount(); in testSenderAvatarIsSenderOfFirstUnreadMessage() local
140 senderAvatarModel, account, false, false); in testSenderAvatarIsSenderOfFirstUnreadMessage() local
[all …]
/packages/apps/Dialer/src/com/android/dialer/calllog/
DPhoneAccountUtils.java43 PhoneAccount account = telecomManager.getPhoneAccount(accountHandle); in getSubscriptionPhoneAccounts() local
66 PhoneAccount account = getAccountOrNull(context, accountHandle); in getAccountLabel() local
79 final PhoneAccount account = telecomManager.getPhoneAccount(accountHandle); in getAccountColor() local
95 final PhoneAccount account = telecomManager.getPhoneAccount(accountHandle); in getAccountSupportsCallSubject() local
109 final PhoneAccount account = telecomManager.getPhoneAccount(accountHandle); in getAccountOrNull() local
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/accounts/
DAccountStateChangedListener.java55 public static void onSyncPreferenceChanged(@Nullable String account, boolean syncEnabled) { in onSyncPreferenceChanged()
64 public static void forceSync(@Nullable String account) { in forceSync()
73 public static void forceDelete(@Nullable String account) { in forceDelete()
/packages/apps/UnifiedEmail/src/com/android/mail/photo/
DMailPhotoViewActivity.java52 public static void startMailPhotoViewActivity(final Context context, final String account, in startMailPhotoViewActivity()
62 context.startActivity(wrapIntent(builder.build(), account, accountType, msg)); in startMailPhotoViewActivity() local
70 public static void startMailPhotoViewActivity(final Context context, final String account, in startMailPhotoViewActivity()
78 final Context context, final String account, final String accountType, in buildMailPhotoViewActivityIntent()
91 final Intent intent, final String account, final String accountType, in wrapIntent()
/packages/apps/Email/provider_src/com/android/email/
DNotificationController.java30 void cancelNotifications(final Context context, final Account account); in cancelNotifications()
32 void showSecurityNeededNotification(Account account); in showSecurityNeededNotification()
33 void showSecurityUnsupportedNotification(Account account); in showSecurityUnsupportedNotification()
34 void showSecurityChangedNotification(Account account); in showSecurityChangedNotification()
DSecurityPolicy.java459 Account account = Account.restoreAccountWithId(context, accountId); in setAccountHoldFlag() local
479 public static void setAccountHoldFlag(Context context, Account account, boolean newState) { in setAccountHoldFlag()
499 Account account = Account.restoreAccountWithId(mContext, accountId); in policiesRequired() local
522 public static void clearAccountPolicy(Context context, Account account) { in clearAccountPolicy()
536 public static void setAccountPolicy(Context context, Account account, Policy policy, in setAccountPolicy()
579 private static void syncAccount(final Context context, final Account account) { in syncAccount()
593 public void syncAccount(final Account account) { in syncAccount()
599 Account account = Account.restoreAccountWithId(mContext, accountId); in setAccountPolicy() local
/packages/apps/UnifiedEmail/src/com/android/mail/
DConversationListContext.java50 public final Account account; field in ConversationListContext
70 Account account = bundle.getParcelable(Utils.EXTRA_ACCOUNT); in forBundle() local
81 public static ConversationListContext forFolder(Account account, Folder folder) { in forFolder()
88 public static ConversationListContext forSearchQuery(Account account, Folder folder, in forSearchQuery()
DMailIntentService.java79 final Account account = intent.getParcelableExtra(Utils.EXTRA_ACCOUNT); in onHandleIntent() local
95 final Account account = intent.getParcelableExtra(Utils.EXTRA_ACCOUNT); in onHandleIntent() local
107 final Account account = intent.getParcelableExtra(Utils.EXTRA_ACCOUNT); in onHandleIntent() local
/packages/apps/Email/provider_src/com/android/email/service/
DEasTestAuthenticatorService.java56 final Account account = new Account(options.getString(OPTIONS_USERNAME), in addAccount() local
79 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
90 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
102 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
108 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
DAuthenticatorService.java70 final Account account = new Account(options.getString(OPTIONS_USERNAME), in addAccount() local
121 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
132 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
144 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
150 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
DTestAuthenticator.java67 final Account account = new Account(newUniqueUserName(), accountType); in addAccount() local
82 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
95 AccountAuthenticatorResponse response, Account account, Bundle options) { in confirmCredentials()
115 AccountAuthenticatorResponse response, Account account, String[] features) { in hasFeatures()
126 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
/packages/apps/Email/provider_src/com/android/email/mail/
DSender.java40 public static Sender newInstance(Account account) throws MessagingException { in newInstance()
45 private static Sender instantiateSender(Context context, String className, Account account) in instantiateSender()
70 private static Sender findSender(Context context, int resourceId, Account account) in findSender()
107 public synchronized static Sender getInstance(Context context, Account account) in getInstance()
DStore.java65 static Store newInstance(Account account) throws MessagingException { in newInstance()
84 public synchronized static Store getInstance(Account account, Context context) in getInstance()
107 private synchronized static Store createInstanceInternal(final Account account, in createInstanceInternal()
143 public synchronized static Store removeInstance(Account account, Context context) in removeInstance()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DReplyFromAccount.java45 public Account account; field in ReplyFromAccount
53 public ReplyFromAccount(Account account, Uri baseAccountUri, String address, String name, in ReplyFromAccount()
79 public static ReplyFromAccount deserialize(Account account, JSONObject json) { in deserialize()
96 public static ReplyFromAccount deserialize(Account account, String stringExtra) { in deserialize()
110 public static boolean matchesAccountOrCustomFrom(Account account, String possibleCustomFrom, in matchesAccountOrCustomFrom()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DUserHistoryDictionary.java48 @Nullable final String account) { in UserHistoryDictionary()
60 @Nullable final File dictFile, @Nullable final String account) { in getUserHistoryDictName()
71 @Nullable final File dictFile, @Nullable final String account) { in getUserHistoryDictNamePerAccount()
86 final File dictFile, final String dictNamePrefix, @Nullable final String account) { in getDictionary()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/
DTrafficFlags.java58 public static int getSyncFlags(Context context, Account account) { in getSyncFlags()
69 public static int getAttachmentFlags(Context context, Account account) { in getAttachmentFlags()
80 public static int getSmtpFlags(Context context, Account account) { in getSmtpFlags()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
DAccountImageUriGetter.java38 public AccountImageUriGetter(Context context, Account account) { in AccountImageUriGetter()
42 public AccountImageUriGetter(Context context, Account account, Uri changeNotifyUri) { in AccountImageUriGetter()
DAccountSyncSettings.java150 Account account = action.getIntent().getParcelableExtra(EXTRA_ACCOUNT); in onActionClicked() local
230 final Account account = accounts[i]; in getActions() local
276 private Action getAction(Account account, String authority, List<SyncInfo> currentSyncs) { in getAction()
369 Account account = action.getIntent().getParcelableExtra(EXTRA_ACCOUNT); in requestOrCancelSyncForEnabledProviders() local
388 private void requestOrCancelSync(Account account, String authority, boolean sync) { in requestOrCancelSync()
398 private boolean isSyncing(List<SyncInfo> currentSyncs, Account account, String authority) { in isSyncing()
/packages/apps/Contacts/src/com/android/contacts/activities/
DContactEditorAccountsChangedActivity.java113 final AccountWithDataSet account = accounts.get(0); in onCreate() local
172 AccountWithDataSet account = mEditorUtils.getCreatedAccount(resultCode, data); in onActivityResult() local
182 private void saveAccountAndReturnResult(AccountWithDataSet account) { in saveAccountAndReturnResult()
/packages/apps/Email/tests/src/com/android/email/
DAccountTestCase.java59 final android.accounts.Account account = makeAccountManagerAccount(username); in createAccountManagerAccount() local
76 Account account = new Account(); in makeExchangeServiceAccountList() local
86 protected void deleteAccountManagerAccount(android.accounts.Account account) { in deleteAccountManagerAccount()
/packages/apps/Email/provider_src/com/android/email/mail/internet/
DAuthenticationCache.java62 public String retrieveAccessToken(Context context, Account account) throws in retrieveAccessToken()
83 public String refreshAccessToken(Context context, Account account) throws in refreshAccessToken()
92 private CacheEntry getEntry(Context context, Account account) { in getEntry()
144 final Account account = Account.restoreAccountWithId(context, entry.mAccountId); in saveEntry() local
/packages/services/Telecomm/src/com/android/server/telecom/settings/
DEnableAccountPreferenceFragment.java44 public AccountSwitchPreference(Context context, PhoneAccount account) { in AccountSwitchPreference()
92 PhoneAccount account = mTelecomManager.getPhoneAccount(handle); in onResume() local
/packages/apps/Email/provider_src/com/android/email/mail/store/
DServiceStore.java41 public ServiceStore(Account account, Context context) throws MessagingException { in ServiceStore()
49 public static Store newInstance(Account account, Context context) throws MessagingException { in newInstance()
/packages/services/Telecomm/src/com/android/server/telecom/
DPhoneAccountRegistrar.java171 PhoneAccount account = getPhoneAccountCheckCallingUser(accountHandle); in getSubscriptionIdForPhoneAccount() local
220 PhoneAccount account = getPhoneAccountCheckCallingUser(mState.defaultOutgoing); in getUserSelectedOutgoingPhoneAccount() local
237 PhoneAccount account = getPhoneAccount(accountHandle); in setUserSelectedOutgoingPhoneAccount() local
376 PhoneAccount account = getPhoneAccount(accountHandle); in enablePhoneAccount() local
394 private boolean isVisibleForUser(PhoneAccount account) { in isVisibleForUser()
506 public void registerPhoneAccount(PhoneAccount account) { in registerPhoneAccount()
525 private void addOrReplacePhoneAccount(PhoneAccount account) { in addOrReplacePhoneAccount()
554 PhoneAccount account = getPhoneAccount(accountHandle); in unregisterPhoneAccount() local
712 PhoneAccount account = getPhoneAccount(handle); in getPhoneAccountCheckCallingUser() local
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/accounts/
DAuthUtils.java52 public AccountManagerFuture<Bundle> getAuthToken(final Account account, in getAuthToken()
62 public String blockingGetAuthToken(final Account account, final String authTokenType, in blockingGetAuthToken()

12345678910