/packages/apps/Email/res/xml/ |
senders.xml | 25 networks, and test accounts must be easily obtainable. No entries should be added
|
/packages/apps/KeyChain/support/src/com/android/keychain/tests/support/ |
IKeyChainServiceTestSupport.aidl | 18 import android.accounts.Account;
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
CustomVCardEntry.java | 18 import android.accounts.Account;
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
AutoSyncPersonalDataPreferenceController.java | 16 package com.android.settings.accounts;
|
AutoSyncWorkDataPreferenceController.java | 16 package com.android.settings.accounts;
|
ProviderPreference.java | 17 package com.android.settings.accounts;
|
AccountTypePreferenceLoader.java | 18 package com.android.settings.accounts; 20 import android.accounts.Account; 21 import android.accounts.AuthenticatorDescription; 43 import com.android.settingslib.accounts.AuthenticatorHelper; 56 "com.android.settings.accounts.LAUNCHING_LOCATION_SETTINGS";
|
/packages/apps/Settings/src/com/android/settings/notification/ |
AdjustVolumeRestrictedPreferenceController.java | 25 import com.android.settings.accounts.AccountRestrictionHelper;
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/accounts/ |
AccountDetailDashboardFragmentTest.java | 16 package com.android.settings.accounts; 18 import android.accounts.Account; 19 import android.accounts.AccountManager; 20 import android.accounts.AuthenticatorDescription;
|
RemoveUserFragmentTest.java | 17 package com.android.settings.accounts;
|
AccountPreferenceControllerTest.java | 16 package com.android.settings.accounts; 18 import android.accounts.Account; 19 import android.accounts.AccountManager; 20 import android.accounts.AuthenticatorDescription; 342 Account[] accounts = {new Account("Account1", "com.acct1")}; local 343 when(mAccountManager.getAccountsAsUser(anyInt())).thenReturn(accounts); 421 Account[] accounts = {new Account("Acct1", "com.acct1")}; local 422 when(mAccountManager.getAccountsAsUser(anyInt())).thenReturn(accounts); 456 Account[] accounts = {new Account("Acct1", "com.acct1")}; local 457 when(mAccountManager.getAccountsAsUser(anyInt())).thenReturn(accounts); 513 Account[] accounts = {new Account("Acct1", "com.acct1")}; local 538 Account[] accounts = {new Account("Acct1", "com.acct1")}; local [all...] |
/packages/services/Telecomm/res/xml/ |
enable_account_preference.xml | 17 <!-- Settings screen that lets the user enable and disable registered phone accounts.
|
/prebuilts/sdk/4/ |
framework.aidl | 1 interface android.accounts.IAccountsService;
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
defined3.d | 9 # accounts for formats that can't tell a .text symbol from an absolute
|
/frameworks/base/services/tests/servicestests/ |
AndroidManifest.xml | 62 <service android:name="com.android.server.accounts.TestAccountType1AuthenticatorService" 65 <action android:name="android.accounts.AccountAuthenticator" /> 67 <meta-data android:name="android.accounts.AccountAuthenticator" 71 <service android:name="com.android.server.accounts.TestAccountType2AuthenticatorService" 74 <action android:name="android.accounts.AccountAuthenticator" /> 76 <meta-data android:name="android.accounts.AccountAuthenticator" 134 <activity android:name="com.android.server.accounts.AccountAuthenticatorDummyActivity" />
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapAppObserver.java | 133 // Notify on any removed accounts 139 // Notify on any new accounts 265 // Add all accounts to mFullList 309 * Method to get a list of the accounts (across all apps) that are set to be shared 311 * @return Arraylist<BluetoothMapAccountItem> containing all enabled accounts 336 * Method to get a list of the accounts (across all apps). 337 * @return Arraylist<BluetoothMapAccountItem> containing all accounts
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
PbapClientService.java | 19 import android.accounts.Account; 20 import android.accounts.AccountManager; 115 // Find all accounts that match the type "pbap" and delete them. 117 Account[] accounts = local 119 Log.w(TAG, "Found " + accounts.length + " unclean accounts"); 120 for (Account acc : accounts) {
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactListFilter.java | 19 import android.accounts.Account; 403 public boolean isSyncable(List<AccountWithDataSet> accounts) { 413 if (accounts != null && accounts.size() > 0) { 416 for (AccountWithDataSet account : accounts) { 435 * Returns the Google accounts (see {@link #isGoogleAccountType) for this ContactListFilter. 437 public List<Account> getSyncableAccounts(List<AccountWithDataSet> accounts) { 445 if (accounts != null && accounts.size() > 0) { 446 for (AccountWithDataSet account : accounts) { [all...] |
/docs/source.android.com/src/devices/tech/admin/ |
managed-profiles.jd | 63 <h3 id=accounts>Accounts</h3> 65 <p>Accounts in the managed profile are distinctly unique from the primary user. 67 apps in their respective context are able to access their respective accounts.</p> 97 <p>The AccountManagerService maintains a separate list of accounts for each
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
AccountFilterUtil.java | 19 import android.accounts.Account; 137 private List<ContactListFilter> getFiltersForAccounts(List<AccountInfo> accounts) { 139 AccountInfo.sortAccounts(getDefaultAccount(getContext()), accounts); local 141 for (AccountInfo accountInfo : accounts) { 148 // Hide extensions and device accounts with no raw_contacts.
|
/packages/apps/Contacts/tests/src/com/android/contacts/editor/ |
ContactEditorUtilsTest.java | 93 * starting with 0 accounts. 125 // Add new accounts: ACCOUNT_2_A, ACCOUNT_2EX_A. 160 * starting with 1 accounts. 181 * starting with 0 accounts, and the user selected "local only". 192 // Now there are no accounts, and default account is null.
|
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | 17 package android.accounts; 75 * online accounts. The user enters credentials (username and password) once 79 * <p>Different online services have different ways of handling accounts and 101 * <li>List the available accounts using {@link #getAccountsByType} or 103 * be interested in accounts with one particular <em>type</em>, which 109 * <li>Select one or more of the available accounts, possibly by asking the 110 * user for their preference. If no suitable accounts are available, 116 * of accounts returned by {@link #getAccountsByType}. Requesting an auth token 224 public static final String KEY_ACCOUNTS = "accounts"; 283 "android.accounts.AccountAuthenticator" [all...] |
/cts/tests/tests/accounts/src/android/accounts/cts/ |
MockAccountAuthenticator.java | 17 package android.accounts.cts; 19 import android.accounts.AbstractAccountAuthenticator; 20 import android.accounts.Account; 21 import android.accounts.AccountAuthenticatorResponse; 22 import android.accounts.AccountManager; 23 import android.accounts.NetworkErrorException; 24 import android.accounts.cts.common.Fixtures; 210 intent.setClassName("android.accounts.cts", "android.accounts.cts.AccountDummyActivity");
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
AttachPhotoActivity.java | 135 // Start loading accounts in case they are needed. 357 Preconditions.checkNotNull(mAccountsFuture, "Accounts future must be initialized first"); 358 // If there is no default account or the accounts have changed such that we need to 363 // presses the save button which should allow plenty of time for the accounts to 364 // finish loading. Note also that this could be stale if the accounts have changed since 366 // the accounts 369 final List<AccountWithDataSet> accounts = AccountInfo.extractAccounts(accountInfos); local 370 if (editorUtils.shouldShowAccountChangedNotification(accounts)) { 377 final AccountWithDataSet targetAccount = editorUtils.getOnlyOrDefaultAccount(accounts);
|
/development/apps/Development/src/com/android/development/ |
SyncAdapterDriver.java | 47 import android.accounts.Account; 48 import android.accounts.AccountManager; 138 Account accounts[] = AccountManager.get(this).getAccountsByType( local 140 String[] accountNames = new String[accounts.length]; 141 for (int i = 0; i < accounts.length; i++) { 142 accountNames[i] = accounts[i].name;
|