/cts/tests/tests/accounts/src/android/accounts/cts/ |
AbstractAuthenticatorTests.java | 17 package android.accounts.cts; 19 import android.accounts.Account; 20 import android.accounts.AccountManager; 21 import android.accounts.AccountManagerFuture; 22 import android.accounts.AuthenticatorException; 23 import android.accounts.OperationCanceledException; 24 import android.accounts.cts.common.AuthenticatorContentProvider; 25 import android.accounts.cts.common.Fixtures; 26 import android.accounts.cts.common.tx.AddAccountTx; 27 import android.accounts.cts.common.tx.UpdateCredentialsTx [all...] |
AccountDummyActivity.java | 17 package android.accounts.cts;
|
MockAccountService.java | 17 package android.accounts.cts;
|
/frameworks/base/packages/Shell/tests/src/com/android/shell/ |
BugreportProgressServiceTest.java | 27 import android.accounts.Account; 28 import android.accounts.AccountManager; 118 // No accounts. 138 // 2 accounts, same domain 149 // 2 accounts, different domains 174 * accounts. The expected results are the same as the original. 181 // Work profile has no accounts 185 // No accounts. 205 // 2 accounts, same domain 216 // 2 accounts, different domain [all...] |
/frameworks/base/test-runner/src/android/test/ |
IsolatedContext.java | 21 import android.accounts.AccountManager; 22 import android.accounts.AccountManagerCallback; 23 import android.accounts.AccountManagerFuture; 24 import android.accounts.AuthenticatorException; 25 import android.accounts.OnAccountsUpdateListener; 26 import android.accounts.OperationCanceledException; 27 import android.accounts.Account;
|
/packages/apps/Gallery2/src/com/android/photos/data/ |
PhotoDatabase.java | 22 import com.android.photos.data.PhotoProvider.Accounts; 43 // Photos.ACCOUNT_ID is a foreign key to Accounts._ID 58 // Albums.ACCOUNT_ID is a foreign key to Accounts._ID 82 { Accounts._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" }, 83 { Accounts.ACCOUNT_NAME, "TEXT UNIQUE NOT NULL" }, 88 createTable(db, Accounts.TABLE, getAccountTableDefinition()); 116 dropTable(db, Accounts.TABLE);
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
RemoveAccountPreferenceController.java | 16 package com.android.settings.accounts; 18 import android.accounts.Account; 19 import android.accounts.AccountManager; 20 import android.accounts.AccountManagerCallback; 21 import android.accounts.AccountManagerFuture; 22 import android.accounts.AuthenticatorException; 23 import android.accounts.OperationCanceledException;
|
/cts/tests/tests/content/src/android/content/cts/ |
ContentResolverSyncTestCase.java | 19 import android.accounts.Account; 20 import android.accounts.AccountManager; 21 import android.accounts.AccountManagerCallback; 22 import android.accounts.AccountManagerFuture; 23 import android.accounts.AuthenticatorException; 24 import android.accounts.OperationCanceledException; 335 * Test to verify that a SyncAdapter is called on all the accounts accounts 354 requestSync(null /* all accounts */, AUTHORITY, LATCH_TIMEOUT_MS);
|
/development/samples/SampleSyncAdapter/ |
_index.html | 9 href="../../../reference/android/accounts/AccountManager.html">account 18 href="../../../reference/android/accounts/AbstractAccountAuthenticator.html"> 38 Accounts & Sync" to view the account and change its sync settings. </p>
|
/frameworks/base/core/java/android/accounts/ |
ChooseTypeAndAccountActivity.java | 16 package android.accounts; 56 * A Parcelable ArrayList of Account objects that limits the choosable accounts to those 62 * A Parcelable ArrayList of String objects that limits the accounts to choose to those 126 // TODO Redesign flow to show NOT_VISIBLE accounts 128 // Currently NOT_VISBILE accounts are not shown at all. 182 Parcelable[] accounts = local 187 for (int i = 0; i < accounts.length; i++) { 188 mAccounts.put((Account) accounts[i], visibility.get(i)); 229 // If there are no relevant accounts and only one relevant account type go directly to 280 Parcelable[] accounts = new Parcelable[mAccounts.size()] local [all...] |
/frameworks/base/services/core/java/com/android/server/accounts/ |
IAccountAuthenticatorCache.java | 17 package com.android.server.accounts; 19 import android.accounts.AuthenticatorDescription; 36 * matched the specified {@link android.accounts.AuthenticatorDescription} or null
|
/packages/apps/Contacts/src/com/android/contacts/preference/ |
DefaultAccountPreference.java | 48 public void setAccounts(List<AccountInfo> accounts) { 49 mAccounts = accounts; 51 mListAdapter.setAccounts(accounts, null);
|
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/ |
MockAccountTypeManager.java | 18 import android.accounts.Account; 41 public MockAccountTypeManager(AccountType[] types, AccountWithDataSet[] accounts) { 43 this.mAccounts = accounts;
|
/packages/apps/Email/res/xml/ |
oauth.xml | 30 auth_endpoint="https://accounts.google.com/o/oauth2/auth" 31 token_endpoint="https://accounts.google.com/o/oauth2/token" 32 refresh_endpoint="https://accounts.google.com/o/oauth2/token"
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
DrawerFragment.java | 26 * The drawer shows a list of accounts, the recent folders, and a list of top-level folders for 29 * account, the list of accounts, and the current folder from the {@link ControllableActivity}. 32 * user to change folders and accounts.
|
/development/apps/Development/src/com/android/development/ |
AccountsTester.java | 19 import android.accounts.Account; 20 import android.accounts.AccountManager; 21 import android.accounts.AccountManagerCallback; 22 import android.accounts.AccountManagerFuture; 23 import android.accounts.AuthenticatorDescription; 24 import android.accounts.AuthenticatorException; 25 import android.accounts.OnAccountsUpdateListener; 26 import android.accounts.OperationCanceledException; 102 public AccountArrayAdapter(Context context, Account[] accounts) { 103 super(context, R.layout.account_list_item, accounts); 410 Parcelable[] accounts = result.getParcelableArray(AccountManager.KEY_ACCOUNTS); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/ |
AccountsSettingsFragment.java | 41 import com.android.inputmethod.latin.accounts.AccountStateChangedListener; 42 import com.android.inputmethod.latin.accounts.LoginAccountUtils; 52 * "Accounts & Privacy" settings sub screen. 205 * Two reasons for disable - work profile or no accounts on device. 280 * @param hasAccountsPermission whether the app has the permission to read accounts. 283 * @param hasAccountsForLogin whether the device has enough accounts for login. 338 * Creates an account picker dialog showing the given accounts in a list and selecting 339 * the selected account by default. The list of accounts must not be null/empty. 343 * @param accounts list of accounts on the device [all...] |
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/ |
EditPropertiesTx.java | 1 package android.accounts.cts.common.tx;
|
GetAuthTokenLabelTx.java | 1 package android.accounts.cts.common.tx;
|
/development/apps/PushApiTestAppOne/src/com/example/android/pushapithirdpartyone/ |
MessageReceiver.java | 19 import android.accounts.Account;
|
/development/apps/PushApiTestAppTwo/src/com/example/android/pushapithirdpartytwo/ |
MessageReceiver.java | 19 import android.accounts.Account;
|
/external/autotest/client/site_tests/security_AccountsBaseline/ |
control | 10 PURPOSE = ("To ensure required accounts consistently appear with the same "
|
/external/autotest/client/site_tests/security_StatefulPermissions/ |
control | 8 Accounts for various permissions on the contents of the stateful parititon.
|
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
UserCredentialHash.java | 7 * tend to prefer to store information in user accounts using such a
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowPeriodicSync.java | 3 import android.accounts.Account;
|