Home
last modified time | relevance | path

Searched defs:account (Results 1 – 25 of 94) sorted by relevance

1234

/cts/tests/devicepolicy/src/android/devicepolicy/cts/
DAccountMigrationTest.kt58 val account = addAccount() in removeAccount_hasRemoveAccountsPermission_removesAccount() constant
78 val account = addAccount() in copyAccountToUser_hasCopyAccountsPermission_copiesAccountToOtherUser() constant
102 val account = addAccount() in copyAccountToUser_noPermission_throwsSecurityException() constant
121 val account = addAccount() in migrateAccount_hasCopyAccountsAndRemoveAccountsPermission_migratesAccountToOtherUser() constant
/cts/common/device-side/bedstead/remoteaccountauthenticator/src/test/java/com/android/bedstead/remoteaccountauthenticator/
DRemoteAccountAuthenticatorTest.java70 AccountReference account = authenticator.addAccount().add(); in addAccount_accountIsAdded() local
80 AccountReference account = authenticator.addAccount().add(); in remove_accountIsRemoved() local
91 AccountReference account = authenticator.addAccount().add(); in accountAutoclose_accountIsRemoved() local
92 try (account) { in accountAutoclose_accountIsRemoved() argument
/cts/hostsidetests/securitybulletin/test-apps/CVE-2024-43086/test-app/src/android/security/cts/CVE_2024_43086_test/
DPocAuthService.java44 AccountAuthenticatorResponse response, Account account) in getAccountRemovalAllowed()
67 AccountAuthenticatorResponse response, Account account, Bundle options) in confirmCredentials()
75 Account account, in getAuthToken()
90 Account account, in updateCredentials()
99 AccountAuthenticatorResponse response, Account account, String[] features) in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2024-43086/helper-app-2/src/android/security/cts/CVE_2024_43086_helper/
DPocAuthService.java44 AccountAuthenticatorResponse response, Account account) in getAccountRemovalAllowed()
67 AccountAuthenticatorResponse response, Account account, Bundle options) in confirmCredentials()
75 Account account, in getAuthToken()
90 Account account, in updateCredentials()
99 AccountAuthenticatorResponse response, Account account, String[] features) in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2024-43086/helper-app-1/src/android/security/cts/CVE_2024_43086_helper/
DPocAuthService.java44 AccountAuthenticatorResponse response, Account account) in getAccountRemovalAllowed()
67 AccountAuthenticatorResponse response, Account account, Bundle options) in confirmCredentials()
75 Account account, in getAuthToken()
90 Account account, in updateCredentials()
99 AccountAuthenticatorResponse response, Account account, String[] features) in hasFeatures()
/cts/common/device-side/bedstead/testapp/src/testapps/main/java/com/android/bedstead/testapp/
DTestAppAccountAuthenticator.java80 Account account = new Account(name, accountType); in addAccount() local
95 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
107 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
116 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
127 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
145 Account account) throws NetworkErrorException { in getAccountCredentialsForCloning()
153 Account account, in addAccountFromCredentials()
/cts/hostsidetests/content/test-apps/CtsSyncInvalidAccountAuthorityTestCases/src/android/content/sync/cts/
DStubAuthenticator.java67 Account account, Bundle bundle) throws NetworkErrorException { in confirmCredentials()
73 Account account, String type, Bundle bundle) throws NetworkErrorException { in getAuthToken()
84 Account account, String tokenType, Bundle bundle) in updateCredentials()
91 Account account, String[] options) throws NetworkErrorException { in hasFeatures()
97 Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
/cts/tests/tests/content/src/android/content/cts/
DContentResolverSyncTestCase.java82 private void addAccountExplicitly(Account account, String password, Bundle userdata) { in addAccountExplicitly()
86 private boolean removeAccount(AccountManager am, Account account, in removeAccount()
105 private void addAccountAndVerifyInitSync(Account account, String password, in addAccountAndVerifyInitSync()
128 private void cancelSync(Account account, String authority, int latchTimeoutMillis) { in cancelSync()
158 private void requestSync(Account account, String authority, int latchTimeoutMillis) { in requestSync()
174 private void setIsSyncable(Account account, String authority, boolean b) { in setIsSyncable()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2021-0704/stub-app/src/android/security/cts/CVE_2021_0704_stub/
DStubAuthenticator.java68 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
75 Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
85 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
96 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
102 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/tests/tests/syncmanager/apps/app1/src/android/content/syncmanager/cts/app/
DSyncManagerCtsAuthenticator.java66 final Account account = new Account(name, getAccountType()); in ensureTestAccount() local
116 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
122 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
128 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
139 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DAccountAuthenticator.java83 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
89 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
98 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
109 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
118 …ic Bundle getAccountCredentialsForCloning(AccountAuthenticatorResponse response, Account account) { in getAccountCredentialsForCloning()
128 public Bundle addAccountFromCredentials(AccountAuthenticatorResponse response, Account account, in addAccountFromCredentials()
/cts/tests/tests/content/SyncAccountAccessStubs/src/com/android/cts/stub/
DStubAuthenticator.java79 Account account, Bundle bundle) throws NetworkErrorException { in confirmCredentials()
85 Account account, String type, Bundle bundle) throws NetworkErrorException { in getAuthToken()
99 Account account, String tokenType, Bundle bundle) in updateCredentials()
106 Account account, String[] options) throws NetworkErrorException { in hasFeatures()
112 Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2023-20944/test-app/src/android/security/cts/CVE_2023_20944_test/
DPocAuthService.java57 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
63 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
74 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
80 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/tests/tests/appenumeration/app/target/src/android/appenumeration/testapp/
DMockAuthenticatorService.java60 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
66 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
77 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
83 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2021-0685/src/android/security/cts/CVE_2021_0685/
DPocAuthService.java56 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
62 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
73 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
79 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2023-35669/test-app/src/android/security/cts/CVE_2023_35669_test/
DPocAuthService.java67 AccountAuthenticatorResponse response, Account account) in getAccountRemovalAllowed()
140 AccountAuthenticatorResponse response, Account account, Bundle options) in confirmCredentials()
148 Account account, in getAuthToken()
163 Account account, in updateCredentials()
172 AccountAuthenticatorResponse response, Account account, String[] features) in hasFeatures()
/cts/hostsidetests/statsdatom/apps/statsdapp/src/com/android/server/cts/device/statsdatom/
DStatsdAuthenticator.java59 final Account account = getTestAccount(); in ensureTestAccount() local
107 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
113 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
119 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
130 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/backup/SyncAdapterSettingsApp/src/android/cts/backup/syncadaptersettingsapp/
DSyncAdapterSettingsAuthenticator.java65 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
71 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
77 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
88 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2023-21131/test-app/src/android/security/cts/CVE_2023_21131_test/
DPocAuthService.java67 AccountAuthenticatorResponse response, Account account) in getAccountRemovalAllowed()
142 AccountAuthenticatorResponse response, Account account, Bundle options) in confirmCredentials()
150 Account account, in getAuthToken()
165 Account account, in updateCredentials()
174 AccountAuthenticatorResponse response, Account account, String[] features) in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2020-0338/src/android/security/cts/CVE_2020_0338/
DPocAuthenticator.java72 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
78 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
89 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
95 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/
DTestDefaultAuthenticator.java80 Account account, in confirmCredentials()
89 Account account, in getAuthToken()
105 Account account, in updateCredentials()
122 Account account, in hasFeatures()
/cts/hostsidetests/appcloning/test-apps/AppCloningContactsSharingApps/CloneProfileAppWithLaunchableActivity/src/com/android/cts/launchable/cloneprofile/contacts/app/
DTestAccountAuthenticator.java56 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
64 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
75 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
81 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2024-49724/src/android/security/cts/CVE_2024_49724/
DAccountService.java110 AccountAuthenticatorResponse response, Account account, Bundle options) in confirmCredentials()
118 Account account, in getAuthToken()
133 Account account, in updateCredentials()
142 AccountAuthenticatorResponse response, Account account, String[] features) in hasFeatures()
/cts/hostsidetests/multiuser/app/src/com/android/cts/multiuser/
DMockAuthenticator.java61 final Account account = getTestAccount(); in addTestAccount() local
111 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
117 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
126 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
137 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()
/cts/hostsidetests/accounts/test-apps/AccountManagerCrossUserApp/src/com/android/cts/accountmanager/
DMockAuthenticator.java60 final Account account = getTestAccount(); in addTestAccount() local
110 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, in updateCredentials()
116 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, in confirmCredentials()
125 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
136 public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, in hasFeatures()

1234