/frameworks/base/core/java/android/accounts/ |
D | IAccountManager.aidl | 34 String getPassword(in Account account); in getPassword() 35 String getUserData(in Account account, String key); in getUserData() 41 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features, in hasFeatures() 47 boolean addAccountExplicitly(in Account account, String password, in Bundle extras); in addAccountExplicitly() 48 void removeAccount(in IAccountManagerResponse response, in Account account, in removeAccount() 50 void removeAccountAsUser(in IAccountManagerResponse response, in Account account, in removeAccountAsUser() 52 boolean removeAccountExplicitly(in Account account); in removeAccountExplicitly() 53 void copyAccountToUser(in IAccountManagerResponse response, in Account account, in copyAccountToUser() 56 String peekAuthToken(in Account account, String authTokenType); in peekAuthToken() 57 void setAuthToken(in Account account, String authTokenType, String authToken); in setAuthToken() [all …]
|
D | AbstractAccountAuthenticator.java | 186 Account account, Bundle options) throws RemoteException { in confirmCredentials() 236 Account account, String authTokenType, Bundle loginOptions) in getAuthToken() 263 public void updateCredentials(IAccountAuthenticatorResponse response, Account account, in updateCredentials() 308 Account account, String[] features) throws RemoteException { in hasFeatures() 323 Account account) throws RemoteException { in getAccountRemovalAllowed() 338 Account account) throws RemoteException { in getAccountCredentialsForCloning() 354 Account account, in addAccountFromCredentials() 403 Account account, in startUpdateCredentialsSession() 469 Account account, in isCredentialsUpdateSuggested() 584 Account account, Bundle options) in confirmCredentials() [all …]
|
D | IAccountAuthenticator.aidl | 37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account, in confirmCredentials() 43 void getAuthToken(in IAccountAuthenticatorResponse response, in Account account, in getAuthToken() 54 void updateCredentials(in IAccountAuthenticatorResponse response, in Account account, in updateCredentials() 66 void hasFeatures(in IAccountAuthenticatorResponse response, in Account account, in hasFeatures() 72 void getAccountRemovalAllowed(in IAccountAuthenticatorResponse response, in Account account); in getAccountRemovalAllowed() 78 in Account account); in getAccountCredentialsForCloning() 84 void addAccountFromCredentials(in IAccountAuthenticatorResponse response, in Account account, in addAccountFromCredentials() 97 … void startUpdateCredentialsSession(in IAccountAuthenticatorResponse response, in Account account, in startUpdateCredentialsSession() 111 void isCredentialsUpdateSuggested(in IAccountAuthenticatorResponse response, in Account account, in isCredentialsUpdateSuggested()
|
D | AccountManagerInternal.java | 42 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()
|
D | AccountAndUser.java | 25 public Account account; field in AccountAndUser 28 public AccountAndUser(Account account, int userId) { in AccountAndUser()
|
/frameworks/base/core/java/android/content/ |
D | IContentService.aidl | 58 void requestSync(in Account account, String authority, in Bundle extras); in requestSync() 64 void cancelSync(in Account account, String authority, in ComponentName cname); in cancelSync() 65 void cancelSyncAsUser(in Account account, String authority, in ComponentName cname, int userId); in cancelSyncAsUser() 75 boolean getSyncAutomatically(in Account account, String providerName); in getSyncAutomatically() 76 boolean getSyncAutomaticallyAsUser(in Account account, String providerName, int userId); in getSyncAutomaticallyAsUser() 84 void setSyncAutomatically(in Account account, String providerName, boolean sync); in setSyncAutomatically() 85 void setSyncAutomaticallyAsUser(in Account account, String providerName, boolean sync, in setSyncAutomaticallyAsUser() 95 List<PeriodicSync> getPeriodicSyncs(in Account account, String providerName, in getPeriodicSyncs() 105 void addPeriodicSync(in Account account, String providerName, in Bundle extras, in addPeriodicSync() 115 void removePeriodicSync(in Account account, String providerName, in Bundle extras); in removePeriodicSync() [all …]
|
D | AbstractThreadedSyncAdapter.java | 154 private Account toSyncKey(Account account) { in toSyncKey() 164 public void startSync(ISyncContext syncContext, String authority, Account account, in startSync() 226 public void initialize(Account account, String authority) throws RemoteException { in initialize() 246 Account account, Bundle extras) { in SyncThread() 322 public abstract void onPerformSync(Account account, Bundle extras, in onPerformSync() 335 public void onSecurityException(Account account, Bundle extras, in onSecurityException()
|
D | ISyncAdapter.aidl | 39 in Account account, in Bundle extras); in startSync() 54 void initialize(in Account account, String authority); in initialize()
|
D | PeriodicSync.java | 31 public final Account account; field in PeriodicSync 47 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) { in PeriodicSync() 76 public PeriodicSync(Account account, String authority, Bundle extras, in PeriodicSync()
|
D | SyncInfo.java | 40 public final Account account; field in SyncInfo 66 public SyncInfo(int authorityId, Account account, String authority, long startTime) { in SyncInfo()
|
D | ContentResolver.java | 2166 Account account = null; in startSync() local 2197 public static void requestSync(Account account, String authority, Bundle extras) { in requestSync() 2205 public static void requestSyncAsUser(Account account, String authority, @UserIdInt int userId, in requestSyncAsUser() 2291 public static void cancelSync(Account account, String authority) { in cancelSync() 2302 public static void cancelSyncAsUser(Account account, String authority, @UserIdInt int userId) { in cancelSyncAsUser() 2356 public static boolean getSyncAutomatically(Account account, String authority) { in getSyncAutomatically() 2368 public static boolean getSyncAutomaticallyAsUser(Account account, String authority, in getSyncAutomaticallyAsUser() 2386 public static void setSyncAutomatically(Account account, String authority, boolean sync) { in setSyncAutomatically() 2394 public static void setSyncAutomaticallyAsUser(Account account, String authority, boolean sync, in setSyncAutomaticallyAsUser() 2436 public static void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync() [all …]
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/ |
D | AccountsDbTest.java | 88 Account account = new Account("name", "example.com"); in testCeNotAvailableInitially() local 95 Account account = new Account("name", "example.com"); in testDeAccountInsertFindDelete() local 109 Account account = new Account("name", "example.com"); in testCeAccountInsertFindDelete() local 122 Account account = new Account("name", "example.com"); in testAuthTokenInsertFindDelete() local 144 Account account = new Account("name", "example.com"); in testAuthTokenDeletes() local 174 Account account = new Account("name", "example.com"); in testExtrasInsertFindDelete() local 201 Account account = new Account("name", "example.com"); in testGrantsInsertFindDelete() local 234 Account account = new Account("name", "example.com"); in testSharedAccountsInsertFindDelete() local 268 Account account = new Account("name", "example.com"); in testUpdateDeAccountLastAuthenticatedTime() local 280 Account account = new Account("name", "example.com"); in testRenameAccount() local [all …]
|
D | TestAccountType2Authenticator.java | 66 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()
|
D | TestAccountType1Authenticator.java | 107 Account account, in confirmCredentials() 146 Account account, in getAuthToken() 201 Account account, in updateCredentials() 239 Account account, in hasFeatures() 318 Account account, in startUpdateCredentialsSession() 425 Account account, in isCredentialsUpdateSuggested() 446 AccountAuthenticatorResponse response, Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
|
/frameworks/base/core/java/android/provider/ |
D | SyncStateContract.java | 74 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()
|
/frameworks/base/telecomm/java/android/telecom/ |
D | AuthenticatorService.java | 70 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()
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
D | AccountManagerService.java | 409 private void cancelAccountAccessRequestNotificationIfNeeded(Account account, int uid, in cancelAccountAccessRequestNotificationIfNeeded() 420 private void cancelAccountAccessRequestNotificationIfNeeded(Account account, in cancelAccountAccessRequestNotificationIfNeeded() 431 public boolean addAccountExplicitlyWithVisibility(Account account, String password, in addAccountExplicitlyWithVisibility() 520 public Map<String, Integer> getPackagesAndVisibilityForAccount(Account account) { in getPackagesAndVisibilityForAccount() 554 private @NonNull Map<String, Integer> getPackagesAndVisibilityForAccountLocked(Account account, in getPackagesAndVisibilityForAccountLocked() 566 public int getAccountVisibility(Account account, String packageName) { in getAccountVisibility() 614 private int getAccountVisibilityFromCache(Account account, String packageName, in getAccountVisibilityFromCache() 634 private Integer resolveAccountVisibility(Account account, @NonNull String packageName, in resolveAccountVisibility() 731 public boolean setAccountVisibility(Account account, String packageName, int newVisibility) { in setAccountVisibility() 770 private boolean setAccountVisibility(Account account, String packageName, int newVisibility, in setAccountVisibility() [all …]
|
D | TokenCache.java | 49 public final Account account; field in TokenCache.Key 54 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 String get(Account account, String tokenType, String packageName, byte[] sigDigest) { in get()
|
D | AccountsDb.java | 335 Map<String, String> findAuthTokensByAccount(Account account) { in findAuthTokensByAccount() 438 Map<String, String> findUserExtrasForAccount(Account account) { in findUserExtrasForAccount() 456 long findCeAccountId(Account account) { in findCeAccountId() 484 long insertCeAccount(Account account, String password) { in insertCeAccount() 683 long insertSharedAccount(Account account) { in insertSharedAccount() 692 boolean deleteSharedAccount(Account account) { in deleteSharedAccount() 698 int renameSharedAccount(Account account, String newName) { in renameSharedAccount() 731 long findSharedAccountId(Account account) { in findSharedAccountId() 747 long findAccountLastAuthenticatedTime(Account account) { in findAccountLastAuthenticatedTime() 756 boolean updateAccountLastAuthenticatedTime(Account account) { in updateAccountLastAuthenticatedTime() [all …]
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | ContentService.java | 472 public void requestSync(Account account, String authority, Bundle extras) { in requestSync() 568 public void cancelSync(Account account, String authority, ComponentName cname) { in cancelSync() 586 public void cancelSyncAsUser(Account account, String authority, ComponentName cname, in cancelSyncAsUser() 623 Account account = request.getAccount(); in cancelRequest() local 688 public boolean getSyncAutomatically(Account account, String providerName) { in getSyncAutomatically() 697 public boolean getSyncAutomaticallyAsUser(Account account, String providerName, int userId) { in getSyncAutomaticallyAsUser() 717 public void setSyncAutomatically(Account account, String providerName, boolean sync) { in setSyncAutomatically() 722 public void setSyncAutomaticallyAsUser(Account account, String providerName, boolean sync, in setSyncAutomaticallyAsUser() 746 public void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync() 775 public void removePeriodicSync(Account account, String authority, Bundle extras) { in removePeriodicSync() [all …]
|
D | SyncOperation.java | 100 public SyncOperation(Account account, int userId, int owningUid, String owningPackage, in SyncOperation() 186 Account account = (Account) value; in toJobInfoExtras() local 277 Account account = new Account(accountsBundle.getString("accountName"), in maybeCreateFromJobExtras() local 283 Account account = new Account(accountName, accountType); in maybeCreateFromJobExtras() local
|
/frameworks/opt/vcard/java/com/android/vcard/ |
D | VCardEntryConstructor.java | 66 public VCardEntryConstructor(final int vcardType, final Account account) { in VCardEntryConstructor() 75 public VCardEntryConstructor(final int vcardType, final Account account, in VCardEntryConstructor()
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | AccountSpecifier.java | 27 public void setAccount(Account account); in setAccount()
|
D | RecipientAlternatesAdapter.java | 79 ArrayList<String> inAddresses, Account account, RecipientMatchCallback callback, in getMatchingRecipients() 95 ArrayList<String> inAddresses, int addressType, Account account, in getMatchingRecipients() 152 Account account, Set<String> matchesNotFound, in getMatchingRecipientsFromDirectoryQueries() 162 Account account, Set<String> matchesNotFound, Queries.Query query, in getMatchingRecipientsFromDirectoryQueries() 343 Account account, Context context, Query query, in doQuery()
|
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/ |
D | Telecom.java | 152 PhoneAccount account = PhoneAccount.builder(handle, label) in runRegisterPhoneAccount() local 162 PhoneAccount account = PhoneAccount.builder( in runRegisterSimPhoneAccount() local
|