Home | History | Annotate | Download | only in deviceandprofileowner

Lines Matching refs:ACCOUNT

19 import android.accounts.Account;
31 * These tests verify that the device / profile owner can use account management APIs to add
37 * which provides authenticator for a mock account type.
41 // Account type for MockAccountAuthenticator
43 "com.android.cts.devicepolicy.accountmanagement.account.type";
44 private final static String ACCOUNT_TYPE_2 = "com.dummy.account";
45 private final static Account ACCOUNT = new Account("user0", ACCOUNT_TYPE_1);
97 // But MockAccountAuthenticator returns a new account straightway.
113 // But MockAccountAuthenticator returns a new account straightway.
116 result = mAccountManager.removeAccount(ACCOUNT, null, null, null).getResult();
123 // throwing an Exception, so it's not necessary to add the account before removal.
124 Bundle result = mAccountManager.removeAccount(ACCOUNT, null, null, null).getResult();