Searched refs:account (Results 251 - 275 of 381) sorted by relevance

<<111213141516

/packages/services/Telephony/src/com/android/phone/
H A DSimContacts.java139 final Cursor cursor, final ContentResolver resolver, Account account) {
158 if (account != null) {
159 builder.withValue(RawContacts.ACCOUNT_NAME, account.name);
160 builder.withValue(RawContacts.ACCOUNT_TYPE, account.type);
138 actuallyImportOneSimContact( final Cursor cursor, final ContentResolver resolver, Account account) argument
/packages/services/Telecomm/src/com/android/server/telecom/
H A DTelecomServiceImpl.java262 // parent user's in call UI need to be able to get phone account from the
263 // profile's phone account handle.
407 public void registerPhoneAccount(PhoneAccount account) {
419 account.getAccountHandle().getComponentName().getPackageName());
420 if (account.hasCapabilities(PhoneAccount.CAPABILITY_SELF_MANAGED)) {
422 if (account.hasCapabilities(PhoneAccount.CAPABILITY_CALL_PROVIDER) ||
423 account.hasCapabilities(
425 account.hasCapabilities(
432 // For self-managed CS, the phone account registrar will override the
433 // label the user has set for the phone account
[all...]
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DPeopleActivity.java86 import com.android.contacts.model.account.AccountInfo;
87 import com.android.contacts.model.account.AccountWithDataSet;
189 // The account the new group will be created under.
713 // actually at least one real account (not "local" account) on device.
729 // even without an account.
1111 // Select the account to create the group
1113 final Account account = extras == null ? null :
1115 if (account == null) {
1121 account
1149 onAccountChosen(AccountWithDataSet account, Bundle extraArgs) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DRawContactEditorView.java61 import com.android.contacts.model.account.AccountInfo;
62 import com.android.contacts.model.account.AccountType;
63 import com.android.contacts.model.account.AccountWithDataSet;
101 * Invoked when the editor should rebind editors for a new account.
104 * @param oldAccount Old account associated with oldState.
105 * @param newAccount New account to be used.
519 // Update the account header
753 final AccountInfo account = mCurrentRawContactDelta != null
760 mAccounts.add(account);
763 // Get the account informatio
[all...]
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
H A DLogUtils.java26 private static final String ACCOUNT_PREFIX = "account:";
105 // This assumes that the first path segment is the account
106 final String account = pathSegments.get(0);
108 builder = builder.appendPath(sanitizeAccountName(account));
116 /** Sanitizes an account name. If debug logging is not enabled, a sanitized name is returned. */
/packages/apps/Email/src/com/android/email/activity/setup/
H A DSetupDataFragment.java16 * Headless fragment to hold setup data for the account setup or settings flows
23 // either return to the caller (if we're in an account type flow) or go to the message list
35 private static final String SAVESTATE_ACCOUNT = "SetupDataFragment.account";
58 // Protocol the user chose in the account manager "Add an account" screen
116 public void setAccount(Account account) { argument
117 mAccount = account;
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
H A DCopyAccountToUserTaskTest.java81 // GIVEN an account on the source user
90 // THEN the account migration was triggered
105 // GIVEN an account on the source user
114 // THEN the account migration was triggered
129 // GIVEN no account is passed
145 // GIVEN an account on a user
161 // GIVEN an account on the source user
167 // WHEN copying the account from the source user to the target user
168 // THEN the account migration succeeds
174 // GIVEN an account o
200 createTask(int sourceUserId, Account account) argument
[all...]
/packages/apps/Settings/src/com/android/settings/support/
H A DSupportDisclaimerDialogFragment.java54 public static SupportDisclaimerDialogFragment newInstance(Account account, argument
58 bundle.putParcelable(SupportDisclaimerDialogFragment.EXTRA_ACCOUNT, account);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DSubjectAndFolderView.java106 public void setFolders(ConversationViewHeaderCallbacks callbacks, Account account, argument
113 final Settings settings = account.settings;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAttachmentTileGrid.java72 public void configureGrid(FragmentManager fragmentManager, Account account, argument
76 mAccount = account;
H A DLeaveBehindItem.java109 public void bind(int pos, Account account, AnimatedAdapter adapter, argument
113 mAccount = account;
H A DSecureConversationViewFragment.java57 public SecureConversationWebViewClient(Account account) { argument
58 super(account);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DLogUtils.java35 private static final String ACCOUNT_PREFIX = "account:";
131 // This assumes that the first path segment is the account
132 final String account = pathSegments.get(0);
134 builder = builder.appendPath(sanitizeAccountName(account));
143 * Sanitizes an account name. If debug logging is not enabled, a sanitized name
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DTestInCallUI.java192 PhoneAccount account = tm.getPhoneAccount(h);
193 Bundle extras = account.getExtras();
/packages/apps/Contacts/src/com/android/contacts/database/
H A DSimContactDaoImpl.java47 import com.android.contacts.model.account.AccountWithDataSet;
63 * SIM contacts to a CP2 account.
185 * Finds SIM contacts that exist in CP2 and associates the account of the CP2 contact with
229 final AccountWithDataSet account = AccountQuery.getAccount(accountsCursor);
231 if (!result.containsKey(account)) {
232 result.put(account, new HashSet<SimContact>());
235 result.get(account).add(contact);
/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DContactLoaderTest.java33 import com.android.contacts.model.account.AccountType;
34 import com.android.contacts.model.account.AccountWithDataSet;
35 import com.android.contacts.model.account.BaseAccountType;
77 AccountWithDataSet account =
82 new AccountType[]{accountType}, new AccountWithDataSet[]{account}));
/packages/apps/Email/provider_src/com/android/email/mail/store/
H A DImapStore.java99 public static Store newInstance(Account account, Context context) throws MessagingException { argument
100 return new ImapStore(context, account);
104 * Creates a new store for the given account. Always use
107 private ImapStore(Context context, Account account) throws MessagingException { argument
109 mAccount = account;
111 HostAuth recvAuth = account.getOrCreateHostAuthRecv(context);
188 * AGUID A device+account UID
192 * @param userName the username of the account
193 * @param host the host (server) of the account
368 * @param accountId The ID of the account th
[all...]
H A DPop3Store.java67 public static Store newInstance(Account account, Context context) throws MessagingException { argument
68 return new Pop3Store(context, account);
72 * Creates a new store for the given account.
74 private Pop3Store(Context context, Account account) throws MessagingException { argument
76 mAccount = account;
78 HostAuth recvAuth = account.getOrCreateHostAuthRecv(context);
119 * Used by account setup to test if an account's settings are appropriate. The definition
120 * of "checked" here is simply, can you log into the account and does it meet some minimum set
123 * @throws MessagingException if there was some problem with the account
[all...]
/packages/apps/Dialer/java/com/android/incallui/call/
H A DDialerCall.java170 * Indicates whether the phone account associated with this call supports specifying a call
487 // If the phone account handle of the call is set, cache capability bit indicating whether
488 // the phone account supports call subjects.
726 * @return {@code true} if the call's phone account supports call subjects, {@code false}
1093 PhoneAccount account = getPhoneAccount();
1094 if (account != null && !TextUtils.isEmpty(account.getLabel())) {
1098 callProviderLabel = account.getLabel().toString();
1162 PhoneAccount account =
1164 if (account !
[all...]
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
H A DBitmapWorkerTask.java324 for (Account account : AccountManager.get(context).
326 if (account.name.equals(accountName)) {
327 thisAccount = account;
H A DDrawableLoader.java362 for (Account account : AccountManager.get(context).
364 if (account.name.equals(accountName)) {
365 thisAccount = account;
/packages/apps/Contacts/src/com/android/contacts/list/
H A DMultiSelectContactsListFragment.java44 import com.android.contacts.model.account.AccountType;
45 import com.android.contacts.model.account.AccountWithDataSet;
46 import com.android.contacts.model.account.GoogleAccountType;
330 * Show account icon, count of contacts and account name in the header of the list.
345 // Set text of count of contacts and account name
357 // Set icon of the account
362 // If it's a writable Google account, we set icon size as 24dp; otherwise, we set it as
/packages/apps/Calendar/src/com/android/calendar/
H A DExtensionsFactory.java124 public boolean subscribeToGroup(String senderId, String account, String groupId)
/packages/apps/Contacts/src/com/android/contacts/
H A DMoreContactUtils.java29 import com.android.contacts.model.account.AccountType;
223 * Returns the intent to launch for the given invitable account type and contact lookup URI.
224 * This will return null if the account type is not invitable (i.e. there is no
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupMetaData.java29 import com.android.contacts.model.account.AccountType;

Completed in 5048 milliseconds

<<111213141516