Home
last modified time | relevance | path

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

12

/frameworks/base/core/java/android/content/
DIContentService.aidl58 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 …]
DAbstractThreadedSyncAdapter.java154 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()
DISyncAdapter.aidl39 in Account account, in Bundle extras); in startSync()
54 void initialize(in Account account, String authority); in initialize()
DPeriodicSync.java29 public final Account account; field in PeriodicSync
45 public PeriodicSync(Account account, String authority, Bundle extras, long periodInSeconds) { in PeriodicSync()
74 public PeriodicSync(Account account, String authority, Bundle extras, in PeriodicSync()
DContentResolver.java1782 Account account = null; in startSync() local
1812 public static void requestSync(Account account, String authority, Bundle extras) { in requestSync()
1820 public static void requestSyncAsUser(Account account, String authority, int userId, in requestSyncAsUser()
1906 public static void cancelSync(Account account, String authority) { in cancelSync()
1917 public static void cancelSyncAsUser(Account account, String authority, int userId) { in cancelSyncAsUser()
1970 public static boolean getSyncAutomatically(Account account, String authority) { in getSyncAutomatically()
1982 public static boolean getSyncAutomaticallyAsUser(Account account, String authority, in getSyncAutomaticallyAsUser()
2000 public static void setSyncAutomatically(Account account, String authority, boolean sync) { in setSyncAutomatically()
2008 public static void setSyncAutomaticallyAsUser(Account account, String authority, boolean sync, in setSyncAutomaticallyAsUser()
2049 public static void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync()
[all …]
DSyncInfo.java33 public final Account account; field in SyncInfo
48 public SyncInfo(int authorityId, Account account, String authority, long startTime) { in SyncInfo()
/frameworks/base/core/java/android/accounts/
DIAccountManager.aidl30 String getPassword(in Account account); in getPassword()
31 String getUserData(in Account account, String key); in getUserData()
37 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features, in hasFeatures()
41 boolean addAccountExplicitly(in Account account, String password, in Bundle extras); in addAccountExplicitly()
42 void removeAccount(in IAccountManagerResponse response, in Account account, in removeAccount()
44 void removeAccountAsUser(in IAccountManagerResponse response, in Account account, in removeAccountAsUser()
46 boolean removeAccountExplicitly(in Account account); in removeAccountExplicitly()
47 void copyAccountToUser(in IAccountManagerResponse response, in Account account, in copyAccountToUser()
50 String peekAuthToken(in Account account, String authTokenType); in peekAuthToken()
51 void setAuthToken(in Account account, String authTokenType, String authToken); in setAuthToken()
[all …]
DAbstractAccountAuthenticator.java156 Account account, Bundle options) throws RemoteException { in confirmCredentials()
206 Account account, String authTokenType, Bundle loginOptions) in getAuthToken()
233 public void updateCredentials(IAccountAuthenticatorResponse response, Account account, in updateCredentials()
278 Account account, String[] features) throws RemoteException { in hasFeatures()
293 Account account) throws RemoteException { in getAccountRemovalAllowed()
308 Account account) throws RemoteException { in getAccountCredentialsForCloning()
324 Account account, in addAccountFromCredentials()
440 Account account, Bundle options) in confirmCredentials()
482 Account account, String authTokenType, Bundle options) in getAuthToken()
512 Account account, String authTokenType, Bundle options) throws NetworkErrorException; in updateCredentials()
[all …]
DIAccountAuthenticator.aidl37 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()
DAccountAndUser.java25 public Account account; field in AccountAndUser
28 public AccountAndUser(Account account, int userId) { in AccountAndUser()
DAccountManager.java331 public String getPassword(final Account account) { in getPassword()
359 public String getUserData(final Account account, final String key) { in getUserData()
545 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value) { in updateAppPermission()
/frameworks/base/core/java/android/provider/
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()
DBrowserContract.java524 public static byte[] get(ContentProviderClient provider, Account account) in get()
532 public static Pair<Uri, byte[]> getWithUri(ContentProviderClient provider, Account account) in getWithUri()
540 public static void set(ContentProviderClient provider, Account account, byte[] data) in set()
548 public static ContentProviderOperation newSetOperation(Account account, byte[] data) { in newSetOperation()
/frameworks/base/telecomm/java/android/telecom/
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()
/frameworks/base/services/core/java/com/android/server/accounts/
DTokenCache.java49 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()
DAccountManagerService.java402 final Account account = new Account(accountName, accountType); in validateAccountsInternal() local
530 public String getPassword(Account account) { in getPassword()
555 private String readPasswordInternal(UserAccounts accounts, Account account) { in readPasswordInternal()
577 public String getPreviousName(Account account) { in getPreviousName()
594 private String readPreviousNameInternal(UserAccounts accounts, Account account) { in readPreviousNameInternal()
629 public String getUserData(Account account, String key) { in getUserData()
710 public boolean addAccountExplicitly(Account account, String password, Bundle extras) { in addAccountExplicitly()
745 public void copyAccountToUser(final IAccountManagerResponse response, final Account account, in copyAccountToUser()
802 public boolean accountAuthenticated(final Account account) { in accountAuthenticated()
836 private boolean updateLastAuthenticatedTime(Account account) { in updateLastAuthenticatedTime()
[all …]
/frameworks/base/services/core/java/com/android/server/content/
DContentService.java344 public void requestSync(Account account, String authority, Bundle extras) { in requestSync()
434 public void cancelSync(Account account, String authority, ComponentName cname) { in cancelSync()
452 public void cancelSyncAsUser(Account account, String authority, ComponentName cname, in cancelSyncAsUser()
488 Account account = request.getAccount(); in cancelRequest() local
553 public boolean getSyncAutomatically(Account account, String providerName) { in getSyncAutomatically()
562 public boolean getSyncAutomaticallyAsUser(Account account, String providerName, int userId) { in getSyncAutomaticallyAsUser()
582 public void setSyncAutomatically(Account account, String providerName, boolean sync) { in setSyncAutomatically()
587 public void setSyncAutomaticallyAsUser(Account account, String providerName, boolean sync, in setSyncAutomaticallyAsUser()
611 public void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync()
644 public void removePeriodicSync(Account account, String authority, Bundle extras) { in removePeriodicSync()
[all …]
/frameworks/volley/src/main/java/com/android/volley/toolbox/
DAndroidAuthenticator.java44 public AndroidAuthenticator(Context context, Account account, String authTokenType) { in AndroidAuthenticator()
55 public AndroidAuthenticator(Context context, Account account, String authTokenType, in AndroidAuthenticator()
61 AndroidAuthenticator(AccountManager accountManager, Account account, in AndroidAuthenticator()
/frameworks/opt/vcard/java/com/android/vcard/
DVCardEntryConstructor.java66 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/
DAccountSpecifier.java27 public void setAccount(Account account); in setAccount()
DRecipientAlternatesAdapter.java80 ArrayList<String> inAddresses, Account account, RecipientMatchCallback callback) { in getMatchingRecipients()
94 ArrayList<String> inAddresses, int addressType, Account account, in getMatchingRecipients()
148 Account account, Set<String> matchesNotFound, in getMatchingRecipientsFromDirectoryQueries()
157 Account account, Set<String> matchesNotFound, Queries.Query query, in getMatchingRecipientsFromDirectoryQueries()
341 Account account, ContentResolver resolver, Query query) { in doQuery()
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
DTelecom.java137 PhoneAccount account = PhoneAccount.builder(handle, label) in runRegisterPhoneAccount() local
147 PhoneAccount account = PhoneAccount.builder( in runRegisterSimPhoneAccount() local
/frameworks/base/telecomm/java/com/android/internal/telecom/
DITelecomService.aidl51 void setUserSelectedOutgoingPhoneAccount(in PhoneAccountHandle account); in setUserSelectedOutgoingPhoneAccount()
73 PhoneAccount getPhoneAccount(in PhoneAccountHandle account); in getPhoneAccount()
108 void unregisterPhoneAccount(in PhoneAccountHandle account); in unregisterPhoneAccount()
/frameworks/base/test-runner/src/android/test/
DSyncBaseInstrumentation.java50 Account account = new Account(accountName, "com.google"); in syncProvider() local
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
DSyncStorageEngineTest.java91 final Account account = new Account("a@example.com", "example.type"); in testPurgeActiveSync() local
337 …private void removePeriodicSyncs(SyncStorageEngine engine, Account account, int userId, String aut… in removePeriodicSyncs()
484 final Account account = new Account("account1", "type1"); in testAuthorityParsingV2() local
606 final Account account = new Account("account1", "type1"); in testAuthorityParsing() local
798 final Account account = new Account("acc", "type"); in testSyncableMigration() local

12