HomeSort by relevance Sort by last modified time
    Searched full:account (Results 276 - 300 of 4748) sorted by null

<<11121314151617181920>>

  /external/curl/docs/libcurl/opts/
CURLOPT_FTP_ACCOUNT.3 25 CURLOPT_FTP_ACCOUNT \- set account info for FTP
29 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_FTP_ACCOUNT, char *account);
32 server asks for "account data" after user name and password has been provided,
  /frameworks/base/core/java/android/accounts/
ChooseAccountActivity.java 56 // VISIBILITY_USER_MANAGED_NOT_VISIBLE accounts. It should be moved to account managed
73 mAccountInfos[i] = new AccountInfo(((Account) mAccounts[i]).name,
74 getDrawableForType(((Account) mAccounts[i]).type));
109 Log.w(TAG, "No icon name for account type " + accountType);
114 Log.w(TAG, "No icon resource for account type " + accountType);
122 Account account = (Account) mAccounts[position]; local
123 Log.d(TAG, "selected account " + account);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
CustomContactListFilterActivity.java 62 import com.android.contacts.model.account.AccountInfo;
63 import com.android.contacts.model.account.AccountWithDataSet;
64 import com.android.contacts.model.account.GoogleAccountType;
162 // Don't include the null account because it doesn't support writing to
165 final AccountWithDataSet account = info.getAccount(); local
169 .appendQueryParameter(Groups.ACCOUNT_NAME, account.name)
170 .appendQueryParameter(Groups.ACCOUNT_TYPE, account.type);
171 if (account.dataSet != null) {
172 groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
192 GroupDelta.fromSettings(resolver, account.name, account.type
    [all...]
ContactListFilter.java 19 import android.accounts.Account;
29 import com.android.contacts.model.account.AccountWithDataSet;
30 import com.android.contacts.model.account.GoogleAccountType;
102 AccountWithDataSet account) {
104 account.type, account.name, account.dataSet, icon);
133 return ListEvent.ListType.ACCOUNT;
166 return "account: " + accountType + (dataSet != null ? "/" + dataSet : "")
327 * Adds the account query parameters to the given {@code uriBuilder}
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/account/
DeviceLocalAccountType.java 16 package com.android.contacts.model.account;
39 public AccountInfo wrapAccount(Context context, AccountWithDataSet account) {
43 new AccountDisplayInfo(account, getDisplayLabel(context), getDisplayLabel(context),
AccountComparator.java 16 package com.android.contacts.model.account;
23 * Orders accounts for display such that the default account is first
68 private static boolean isWritableGoogleAccount(AccountWithDataSet account) {
69 return GoogleAccountType.ACCOUNT_TYPE.equals(account.type) && account.dataSet == null;
  /packages/apps/Settings/src/com/android/settings/accounts/
RemoveAccountPreferenceController.java 18 import android.accounts.Account;
52 private Account mAccount;
85 public void init(Account account, UserHandle userHandle) {
86 mAccount = account;
91 * Dialog to confirm with user about account removal
95 private static final String KEY_ACCOUNT = "account";
97 private Account mAccount;
101 Fragment parent, Account account, UserHandle userHandle)
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/dashboard/
SupportItemAdapterTest.java 19 import android.accounts.Account;
55 private final Account USER_1 = new Account("user1", ACCOUNT_TYPE);
56 private final Account USER_2 = new Account("user2", ACCOUNT_TYPE);
57 private final Account TWO_ACCOUNTS[] = {USER_1, USER_2};
58 private final Account ONE_ACCOUNT[] = {USER_1};
59 private final Account ZERO_ACCOUNT[] = {};
160 Account accounts[]) {
166 // Contains "Add account" option, so should be 'count+1
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/analytics/
Tracker.java 35 * Sets the email address of the account being tracked,
36 * @param accountManagerType The accountManagerType of account in account manager.
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
InlineAttachmentViewIntentBuilderCreator.java 20 import com.android.mail.providers.Account;
29 Account account, long conversationId);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
RecentFolderController.java 40 * consider registering for account changes using
42 * current account, but also updates to the account, in case of settings changes.
  /packages/apps/Email/provider_src/com/android/email/service/
PopImapSyncAdapterService.java 36 import com.android.emailcommon.provider.Account;
63 public void onPerformSync(android.accounts.Account account, Bundle extras,
65 PopImapSyncAdapterService.performSync(getContext(), account, extras, provider, local
108 Account account = Account.restoreAccountWithId(context, mailbox.mAccountKey);
109 if (account == null) return;
111 String protocol = account.getProtocol(context);
134 EmailServiceStub.sendMailImpl(context, account.mId)
    [all...]
EmailBroadcastProcessorService.java 43 import com.android.emailcommon.provider.Account;
158 final android.accounts.Account[] amAccounts =
161 for (android.accounts.Account amAccount: amAccounts) {
167 * Delete all periodic syncs for an account.
168 * @param amAccount The account for which to disable syncs.
171 private static void removePeriodicSyncs(final android.accounts.Account amAccount,
181 * Remove all existing periodic syncs for an account type, and add the necessary syncs.
182 * @param amAccountType The account type to handle.
183 * @param syncIntervals The map of all account addresses to sync intervals in the DB.
187 final android.accounts.Account[] amAccounts
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupIncomingFragment.java 48 import com.android.emailcommon.provider.Account;
61 * Provides UI for IMAP/POP account settings.
199 final Account account = mSetupData.getAccount(); local
200 final HostAuth recvAuth = account.getOrCreateHostAuthRecv(mAppContext);
218 new SpinnerOption(Account.DELETE_POLICY_NEVER,
221 new SpinnerOption(Account.DELETE_POLICY_ON_DELETE,
321 * Configure the editor for the account type
324 final Account account = mSetupData.getAccount() local
509 final Account account = setupData.getAccount(); local
529 final Account account = setupData.getAccount(); local
547 final Account account = mSetupData.getAccount(); local
640 final Account account = mSetupData.getAccount(); local
    [all...]
  /packages/apps/Contacts/
proguard.flags 37 -keep class com.android.contacts.model.account.AccountDisplayInfo { *; }
38 -keep class com.android.contacts.model.account.AccountDisplayInfoFactory { *; }
39 -keep class com.android.contacts.model.account.AccountInfo { *; }
40 -keep class com.android.contacts.model.account.AccountType { *; }
41 -keep class com.android.contacts.model.account.AccountType$* { *; }
42 -keep class com.android.contacts.model.account.AccountTypeWithDataSet { *; }
43 -keep class com.android.contacts.model.account.AccountWithDataSet { *; }
44 -keep class com.android.contacts.model.account.BaseAccountType { *; }
45 -keep class com.android.contacts.model.account.BaseAccountType$* { *; }
46 -keep class com.android.contacts.model.account.DeviceLocalAccountType { *;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/telecom/
EnablePhoneAccountTestActivity.java 53 PhoneAccount account = PhoneAccountUtils.getPhoneAccount(this);
54 if (account != null) {
65 PhoneAccount account = PhoneAccountUtils.getPhoneAccount(this);
66 if (account != null && account.isEnabled()) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequestPullPhoneBook.java 19 import android.accounts.Account;
41 private Account mAccount;
48 String pbName, Account account, long filter, byte format,
50 mAccount = account;
BluetoothPbapVcardList.java 19 import android.accounts.Account;
38 private final Account mAccount;
55 public BluetoothPbapVcardList(Account account, InputStream in, byte format) throws IOException {
56 mAccount = account;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
CalendarColorCache.java 28 * CalendarColorCache queries the provider and stores the account identifiers (name and type)
82 * Inserts a specified account into the set.
89 * Does a set lookup to determine if a specified account has more optional calendar colors.
103 * Generates a single key based on account name and account type for map lookup/insertion.
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/finalization/
DpcReceivedSuccessReceiver.java 23 import android.accounts.Account;
43 private final Account mMigratedAccount;
49 public DpcReceivedSuccessReceiver(@Nullable Account migratedAccount,
55 DpcReceivedSuccessReceiver(Account migratedAccount, boolean keepAccountMigrated,
79 // Note that we currently do not check if account migration worked
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
CustomVCardEntryConstructor.java 18 import android.accounts.Account;
65 private final Account mAccount;
77 public CustomVCardEntryConstructor(final int vcardType, final Account account) {
79 mAccount = account;
  /external/llvm/test/tools/llvm-profdata/
general.proftext 74 # DETAILED-SUMMARY: 3 blocks with count >= 576460752303423488 account for 80 percentage of the total counts.
75 # DETAILED-SUMMARY: 4 blocks with count >= 288230376151711744 account for 90 percentage of the total counts.
76 # DETAILED-SUMMARY: 4 blocks with count >= 288230376151711744 account for 95 percentage of the total counts.
77 # DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99 percentage of the total counts.
78 # DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99.9 percentage of the total counts.
79 # DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99.99 percentage of the total counts.
80 # DETAILED-SUMMARY: 6 blocks with count >= 72057594037927936 account for 99.999 percentage of the total counts.
83 # DETAILED-SUMMARY-2: 2 blocks with count >= 1152921504606846976 account for 60 percentage of the total counts.
86 # DETAILED-SUMMARY-3: 2 blocks with count >= 1152921504606846976 account for 60 percentage of the total counts.
87 # DETAILED-SUMMARY-3: 4 blocks with count >= 288230376151711744 account for 90 percentage of the total counts
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSetupOptionsTests.java 31 import com.android.emailcommon.provider.Account;
64 boolean hasPush = frequencySpinnerHasValue(Account.CHECK_INTERVAL_PUSH);
78 boolean hasPush = frequencySpinnerHasValue(Account.CHECK_INTERVAL_PUSH);
92 boolean hasPush = frequencySpinnerHasValue(Account.CHECK_INTERVAL_PUSH);
166 * Create an intent with the Account in it
170 final Account account = new Account(); local
171 account.setSenderName(name);
173 final HostAuth auth = account.getOrCreateHostAuthRecv(context)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/service/
EmailBroadcastProcessorServiceTests.java 26 import com.android.emailcommon.provider.Account;
69 * Returns the flags for the specified account. Throws an exception if the account cannot
73 Uri uri = ContentUris.withAppendedId(Account.CONTENT_URI, accountId);
87 Account account1 = ProviderTestUtils.setupAccount("eas-account1", false, mMockContext);
92 Account account2 = ProviderTestUtils.setupAccount("pop-account1", false, mMockContext);
98 Account account3 = ProviderTestUtils.setupAccount("pop-account2", false, mMockContext);
103 Account account4 = ProviderTestUtils.setupAccount("imap-account1", false, mMockContext);
109 Account account5 = ProviderTestUtils.setupAccount("imap-account2", false, mMockContext);
115 Account account6 = ProviderTestUtils.setupAccount("imap-account3", false, mMockContext)
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
StoreUtils.java 19 import android.accounts.Account;
52 private static final String ATTR_ACCOUNT_NAME = "account-name";
53 private static final String ATTR_ACCOUNT_TYPE = "account-type";
56 * Reads an account from a {@link PersistableBundle}.
58 public static Account persistableBundleToAccount(PersistableBundle bundle) {
59 return new Account(
65 * Writes an account to a {@link PersistableBundle}.
67 public static PersistableBundle accountToPersistableBundle(Account account) {
69 bundle.putString(ATTR_ACCOUNT_NAME, account.name)
    [all...]

Completed in 598 milliseconds

<<11121314151617181920>>