Home
last modified time | relevance | path

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

12

/aosp14/frameworks/base/core/java/android/accounts/
H A DIAccountManager.aidl34 String getPassword(in Account account); in getPassword()
35 String getUserData(in Account account, String key); in getUserData()
49 boolean removeAccountExplicitly(in Account account); in removeAccountExplicitly()
53 String peekAuthToken(in Account account, String authTokenType); in peekAuthToken()
55 void setPassword(in Account account, String password); in setPassword()
56 void clearPassword(in Account account); in clearPassword()
57 void setUserData(in Account account, String key, String value); in setUserData()
75 boolean accountAuthenticated(in Account account); in accountAuthenticated()
84 String getPreviousName(in Account account); in getPreviousName()
101 boolean someUserHasAccount(in Account account); in someUserHasAccount()
[all …]
H A DAbstractAccountAuthenticator.java337 Account account) throws RemoteException { in getAccountRemovalAllowed()
354 Account account) throws RemoteException { in getAccountCredentialsForCloning()
372 Account account, in addAccountFromCredentials()
425 Account account, in startUpdateCredentialsSession()
495 Account account, in isCredentialsUpdateSuggested()
605 Account account, Bundle options) in confirmCredentials()
719 Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
737 final Account account) throws NetworkErrorException { in getAccountCredentialsForCloning()
762 Account account, in addAccountFromCredentials()
868 final Account account, in startUpdateCredentialsSession()
[all …]
H A DIAccountAuthenticator.aidl41 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account, in confirmCredentials()
49 void getAuthToken(in IAccountAuthenticatorResponse response, in Account account, in getAuthToken()
64 void updateCredentials(in IAccountAuthenticatorResponse response, in Account account, in updateCredentials()
80 void hasFeatures(in IAccountAuthenticatorResponse response, in Account account, in hasFeatures()
88 void getAccountRemovalAllowed(in IAccountAuthenticatorResponse response, in Account account); in getAccountRemovalAllowed()
95 in Account account); in getAccountCredentialsForCloning()
102 void addAccountFromCredentials(in IAccountAuthenticatorResponse response, in Account account, in addAccountFromCredentials()
117 … void startUpdateCredentialsSession(in IAccountAuthenticatorResponse response, in Account account, in startUpdateCredentialsSession()
133 void isCredentialsUpdateSuggested(in IAccountAuthenticatorResponse response, in Account account, in isCredentialsUpdateSuggested()
H A DAccountManagerInternal.java42 public void onAppPermissionChanged(Account account, int uid); in onAppPermissionChanged()
56 public abstract void requestAccountAccess(@NonNull Account account, in requestAccountAccess()
67 public abstract boolean hasAccountAccess(@NonNull Account account, @IntRange(from = 0) int uid); in hasAccountAccess()
H A DAccountAndUser.java29 public Account account; field in AccountAndUser
34 public AccountAndUser(Account account, int userId) { in AccountAndUser()
H A DAccountManager.java391 final public Account account; field in AccountManager.AccountKeyData
587 public String getPassword(final Account account) { in getPassword()
617 public String getUserData(final Account account, final String key) { in getUserData()
835 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value) { in updateAppPermission()
/aosp14/frameworks/base/core/java/android/content/
H A DIContentService.aidl65 void cancelSync(in Account account, String authority, in ComponentName cname); in cancelSync()
76 boolean getSyncAutomatically(in Account account, String providerName); in getSyncAutomatically()
85 void setSyncAutomatically(in Account account, String providerName, boolean sync); in setSyncAutomatically()
86 void setSyncAutomaticallyAsUser(in Account account, String providerName, boolean sync, in setSyncAutomaticallyAsUser()
96 List<PeriodicSync> getPeriodicSyncs(in Account account, String providerName, in getPeriodicSyncs()
106 void addPeriodicSync(in Account account, String providerName, in Bundle extras, in addPeriodicSync()
116 void removePeriodicSync(in Account account, String providerName, in Bundle extras); in removePeriodicSync()
123 int getIsSyncable(in Account account, String providerName); in getIsSyncable()
124 int getIsSyncableAsUser(in Account account, String providerName, int userId); in getIsSyncableAsUser()
130 void setIsSyncable(in Account account, String providerName, int syncable); in setIsSyncable()
[all …]
H A DAbstractThreadedSyncAdapter.java166 private Account toSyncKey(Account account) { in toSyncKey()
195 public void startSync(ISyncContext syncContext, String authority, Account account, in startSync()
317 Account account, Bundle extras) { in SyncThread()
469 public abstract void onPerformSync(Account account, Bundle extras, in onPerformSync()
482 public void onSecurityException(Account account, Bundle extras, in onSecurityException()
H A DPeriodicSync.java32 public final Account account; field in PeriodicSync
48 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) { in PeriodicSync()
77 public PeriodicSync(Account account, String authority, Bundle extras, in PeriodicSync()
H A DSyncInfo.java43 public final Account account; field in SyncInfo
70 public SyncInfo(int authorityId, Account account, String authority, long startTime) { in SyncInfo()
H A DISyncAdapter.aidl50 in Account account, in Bundle extras); in startSync()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountsDbTest.java108 Account account = new Account("name", "example.com"); in testCeNotAvailableInitially() local
115 Account account = new Account("name", "example.com"); in testDeAccountInsertFindDelete() local
129 Account account = new Account("name", "example.com"); in testCeAccountInsertFindDelete() local
142 Account account = new Account("name", "example.com"); in testAuthTokenInsertFindDelete() local
164 Account account = new Account("name", "example.com"); in testAuthTokenDeletes() local
194 Account account = new Account("name", "example.com"); in testExtrasInsertFindDelete() local
221 Account account = new Account("name", "example.com"); in testGrantsInsertFindDelete() local
254 Account account = new Account("name", "example.com"); in testSharedAccountsInsertFindDelete() local
288 Account account = new Account("name", "example.com"); in testUpdateDeAccountLastAuthenticatedTime() local
300 Account account = new Account("name", "example.com"); in testRenameAccount() local
[all …]
H A DTestAccountType2Authenticator.java66 Account account, in confirmCredentials()
75 Account account, in getAuthToken()
91 Account account, in updateCredentials()
101 Account account, in hasFeatures()
121 Account account, in startUpdateCredentialsSession()
141 Account account, in isCredentialsUpdateSuggested()
H A DTestAccountType1Authenticator.java105 Account account, in confirmCredentials()
144 Account account, in getAuthToken()
199 Account account, in updateCredentials()
237 Account account, in hasFeatures()
319 Account account, in startUpdateCredentialsSession()
426 Account account, in isCredentialsUpdateSuggested()
447 AccountAuthenticatorResponse response, Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
/aosp14/frameworks/base/core/java/android/provider/
H A DSyncStateContract.java74 Account account) throws RemoteException { in get()
104 Account account, byte[] data) throws RemoteException { in set()
113 Account account, byte[] data) throws RemoteException { in insert()
129 Account account) throws RemoteException { in getWithUri()
159 Account account, byte[] data) { in newSetOperation()
H A DBrowserContract.java532 public static byte[] get(ContentProviderClient provider, Account account) in get()
540 public static Pair<Uri, byte[]> getWithUri(ContentProviderClient provider, Account account) in getWithUri()
548 public static void set(ContentProviderClient provider, Account account, byte[] data) in set()
556 public static ContentProviderOperation newSetOperation(Account account, byte[] data) { in newSetOperation()
/aosp14/frameworks/base/telecomm/java/android/telecom/
H A DAuthenticatorService.java70 Account account, Bundle bundle) in confirmCredentials()
77 Account account, String s, Bundle bundle) in getAuthToken()
89 Account account, String s, Bundle bundle) in updateCredentials()
96 Account account, String[] strings) in hasFeatures()
/aosp14/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java48 public final Account account; field in TokenCache.Key
53 public Key(Account account, String tokenType, String packageName, byte[] sigDigest) { in Key()
164 public void evict(Account account) { in evict()
189 Account account, in put()
212 public void remove(Account account) { in remove()
219 public Value get(Account account, String tokenType, String packageName, byte[] sigDigest) { in get()
H A DAccountManagerService.java1532 public String getPassword(Account account) { in getPassword()
1575 public String getPreviousName(Account account) { in getPreviousName()
1612 public String getUserData(Account account, String key) { in getUserData()
2067 Account account, String[] features) { in TestFeaturesSession()
2444 protected void removeAccountInternal(Account account) { in removeAccountInternal()
2604 Account account, in saveCachedToken()
2785 public void clearPassword(Account account) { in clearPassword()
2955 final Account account, in getAuthToken()
3836 final Account account, in confirmCredentialsAsUser()
3923 final Account account, in startUpdateCredentialsSession()
[all …]
H A DAccountsDb.java347 Map<String, String> findAuthTokensByAccount(Account account) { in findAuthTokensByAccount()
468 long findCeAccountId(Account account) { in findCeAccountId()
496 long insertCeAccount(Account account, String password) { in insertCeAccount()
702 long insertSharedAccount(Account account) { in insertSharedAccount()
711 boolean deleteSharedAccount(Account account) { in deleteSharedAccount()
717 int renameSharedAccount(Account account, String newName) { in renameSharedAccount()
750 long findSharedAccountId(Account account) { in findSharedAccountId()
766 long findAccountLastAuthenticatedTime(Account account) { in findAccountLastAuthenticatedTime()
803 long findDeAccountId(Account account) { in findDeAccountId()
835 String findDeAccountPreviousName(Account account) { in findDeAccountPreviousName()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java607 public void requestSync(Account account, String authority, Bundle extras, in requestSync()
721 public void cancelSync(Account account, String authority, ComponentName cname) { in cancelSync()
781 Account account = request.getAccount(); in cancelRequest() local
865 public boolean getSyncAutomatically(Account account, String providerName) { in getSyncAutomatically()
935 public void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync()
973 public void removePeriodicSync(Account account, String authority, Bundle extras) { in removePeriodicSync()
1006 public List<PeriodicSync> getPeriodicSyncs(Account account, String providerName, in getPeriodicSyncs()
1036 public int getIsSyncable(Account account, String providerName) { in getIsSyncable()
1045 public int getIsSyncableAsUser(Account account, String providerName, int userId) { in getIsSyncableAsUser()
1068 public void setIsSyncable(Account account, String providerName, int syncable) { in setIsSyncable()
[all …]
H A DSyncOperation.java119 public SyncOperation(Account account, int userId, int owningUid, String owningPackage, in SyncOperation()
215 Account account = (Account) value; in toJobInfoExtras() local
314 Account account = new Account(accountsBundle.getString("accountName"), in maybeCreateFromJobExtras() local
320 Account account = new Account(accountName, accountType); in maybeCreateFromJobExtras() local
H A DSyncStorageEngine.java198 final Account account; field in SyncStorageEngine.EndPoint
202 public EndPoint(Account account, String provider, int userId) { in EndPoint()
416 boolean isAccountValid(Account account, int userId) { in isAccountValid()
709 public boolean getSyncAutomatically(Account account, int userId, String providerName) { in getSyncAutomatically()
731 public void setSyncAutomatically(Account account, int userId, String providerName, in setSyncAutomatically()
775 public int getIsSyncable(Account account, int userId, String providerName) { in getIsSyncable()
800 public void setIsSyncable(Account account, int userId, String providerName, int syncable, in setIsSyncable()
926 private boolean setBackoffLocked(Account account, int userId, String providerName, in setBackoffLocked()
1582 AccountInfo account = mAccounts.get(au); in getOrCreateAuthorityLocked() local
1623 private void removeAuthorityLocked(Account account, int userId, String authorityName, in removeAuthorityLocked()
[all …]
/aosp14/frameworks/base/test-runner/src/android/test/
H A DSyncBaseInstrumentation.java56 Account account = new Account(accountName, "com.google"); in syncProvider() local
/aosp14/frameworks/base/packages/Shell/tests/src/com/android/shell/
H A DBugreportProgressServiceTest.java101 private Account account(String email) { in account() method in BugreportProgressServiceTest

12