HomeSort by relevance Sort by last modified time
    Searched defs:addAccountExplicitly (Results 1 - 16 of 16) sorted by null

  /cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
AccountUtilsTest.java 55 assertTrue(mAccountManager.addAccountExplicitly(ACCOUNT, "password", null));
AccountManagementTest.java 97 // setAccountManagementDisabled(true) should not stop addAccountExplicitly().
98 assertTrue(mAccountManager.addAccountExplicitly(ACCOUNT, "password", null));
120 // setAccountManagementDisabled(true) should not stop addAccountExplicitly().
121 assertTrue(mAccountManager.addAccountExplicitly(ACCOUNT, "password", null));
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 82 private void addAccountExplicitly(Account account, String password, Bundle userdata) {
83 assertTrue(sAccountManager.addAccountExplicitly(account, password, userdata));
110 addAccountExplicitly(account, password, null /* userData */);
280 addAccountExplicitly(ACCOUNT, MockAccountAuthenticator.ACCOUNT_PASSWORD, null /* userData */);
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsAuthenticator.java 69 am.addAccountExplicitly(account, "password", new Bundle());
  /cts/hostsidetests/statsd/apps/statsdapp/src/com/android/server/cts/device/statsd/
StatsdAuthenticator.java 68 am.addAccountExplicitly(account, "password", new Bundle());
  /cts/tests/tests/content/SyncAccountAccessStubs/src/com/android/cts/stub/
StubAuthenticator.java 67 accountManager.addAccountExplicitly(new Account(accountName, accountType), "bar", null);
  /development/samples/DeviceAdminWhitelistedAccount/src/com/example/android/app/admin/whitelistedaccount/
MyAuthenticator.java 58 am.addAccountExplicitly(account, null, null);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAccountManager.java 114 protected boolean addAccountExplicitly(Account account, String password, Bundle userdata) {
  /cts/hostsidetests/backup/SyncAdapterSettingsApp/src/android/cts/backup/syncadaptersettingsapp/
SyncAdapterSettingsTest.java 240 am.addAccountExplicitly(mAccount, password, new Bundle());
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/
AuthenticatorContentProvider.java 91 am.addAccountExplicitly(account, Fixtures.PREFIX_PASSWORD + name, null);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsProvider2_AccountRemovalTest.java 64 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
65 mAccountManager.addAccountExplicitly(ACCT_2, null, null);
77 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
78 mAccountManager.addAccountExplicitly(ACCT_2, null, null);
96 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
107 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
108 mAccountManager.addAccountExplicitly(ACCT_2, null, null);
125 mAccountManager.addAccountExplicitly(ACCT_1, null, null);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticatorActivity.java 196 mAccountManager.addAccountExplicitly(account, mPassword, null);
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerUnaffiliatedAuthenticatorTests.java 91 mAccountManager.addAccountExplicitly(
95 fail("addAccountExplicitly should just barf if the caller isn't permitted.");
233 mAccountManager.addAccountExplicitly(Fixtures.ACCOUNT_UNAFFILIATED_FIXTURE_SUCCESS,
237 fail("addAccountExplicitly should just barf if the caller isn't permitted.");
MockAccountAuthenticator.java 169 am.addAccountExplicitly(AccountManagerTest.ACCOUNT, "fakePassword", null);
AccountManagerTest.java 388 private void addAccountExplicitly(Account account, String password, Bundle userdata) {
389 assertTrue(am.addAccountExplicitly(account, password, userdata));
568 * Test addAccountExplicitly(), renameAccount() and removeAccount().
576 addAccountExplicitly(ACCOUNT, ACCOUNT_PASSWORD, null /* userData */);
594 * Test addAccountExplicitly(), renameAccount() and removeAccount().
602 addAccountExplicitly(ACCOUNT_FOR_NEW_REMOVE_ACCOUNT_API, ACCOUNT_PASSWORD, null /* userData */);
625 * Test addAccountExplicitly(), renameAccount() and removeAccount() calling
634 addAccountExplicitly(ACCOUNT_FOR_DEFAULT_IMPL, ACCOUNT_PASSWORD, null /* userData */);
651 * Test addAccountExplicitly(), renameAccount() and removeAccount().
659 addAccountExplicitly(ACCOUNT, ACCOUNT_PASSWORD, null /* userData */)
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAccountManagerTest.java 133 boolean accountAdded = am.addAccountExplicitly(account, null, null);
139 boolean accountAddedTwice = am.addAccountExplicitly(account, null, null);
143 accountAdded = am.addAccountExplicitly(account, null, null);
151 am.addAccountExplicitly(null, null, null);
161 boolean accountAdded = am.addAccountExplicitly(account, "passwd", null);
172 boolean accountAdded = am.addAccountExplicitly(account, null, extras);
186 boolean accountAdded = am.addAccountExplicitly(account, "passwd", null);
195 boolean accountAdded = am.addAccountExplicitly(account, "passwd", null);
203 boolean accountAdded2 = am.addAccountExplicitly(account, "passwd", null);
211 boolean accountAdded = am.addAccountExplicitly(account, null, null)
    [all...]

Completed in 1275 milliseconds