Home
last modified time | relevance | path

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

12

/frameworks/base/core/java/android/content/
DIContentService.aidl40 void requestSync(in Account account, String authority, in Bundle extras); in requestSync()
41 void cancelSync(in Account account, String authority); in cancelSync()
48 boolean getSyncAutomatically(in Account account, String providerName); in getSyncAutomatically()
56 void setSyncAutomatically(in Account account, String providerName, boolean sync); in setSyncAutomatically()
64 List<PeriodicSync> getPeriodicSyncs(in Account account, String providerName); in getPeriodicSyncs()
73 void addPeriodicSync(in Account account, String providerName, in Bundle extras, in addPeriodicSync()
83 void removePeriodicSync(in Account account, String providerName, in Bundle extras); in removePeriodicSync()
89 int getIsSyncable(in Account account, String providerName); in getIsSyncable()
95 void setIsSyncable(in Account account, String providerName, int syncable); in setIsSyncable()
105 boolean isSyncActive(in Account account, String authority); in isSyncActive()
[all …]
DISyncAdapter.aidl39 in Account account, in Bundle extras); in startSync()
54 void initialize(in Account account, String authority); in initialize()
DAbstractThreadedSyncAdapter.java141 private Account toSyncKey(Account account) { in toSyncKey()
150 public void startSync(ISyncContext syncContext, String authority, Account account, in startSync()
208 public void initialize(Account account, String authority) throws RemoteException { in initialize()
228 Account account, Bundle extras) { in SyncThread()
300 public abstract void onPerformSync(Account account, Bundle extras, in onPerformSync()
DSyncInfo.java34 public final Account account; field in SyncInfo
49 SyncInfo(int authorityId, Account account, String authority, in SyncInfo()
DPeriodicSync.java30 public final Account account; field in PeriodicSync
39 public PeriodicSync(Account account, String authority, Bundle extras, long period) { in PeriodicSync()
DContentService.java234 public void requestSync(Account account, String authority, Bundle extras) { in requestSync()
258 public void cancelSync(Account account, String authority) { in cancelSync()
291 public boolean getSyncAutomatically(Account account, String providerName) { in getSyncAutomatically()
309 public void setSyncAutomatically(Account account, String providerName, boolean sync) { in setSyncAutomatically()
326 public void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync()
341 public void removePeriodicSync(Account account, String authority, Bundle extras) { in removePeriodicSync()
355 public List<PeriodicSync> getPeriodicSyncs(Account account, String providerName) { in getPeriodicSyncs()
369 public int getIsSyncable(Account account, String providerName) { in getIsSyncable()
387 public void setIsSyncable(Account account, String providerName, int syncable) { in setIsSyncable()
437 public boolean isSyncActive(Account account, String authority) { in isSyncActive()
[all …]
DSyncStorageEngine.java146 final Account account; field in SyncStorageEngine.PendingOperation
156 PendingOperation(Account account, int userId, int source, in PendingOperation()
189 final Account account; field in SyncStorageEngine.AuthorityInfo
223 AuthorityInfo(Account account, int userId, String authority, int ident) { in AuthorityInfo()
270 public void onSyncRequest(Account account, int userId, String authority, Bundle extras); in onSyncRequest()
458 public boolean getSyncAutomatically(Account account, int userId, String providerName) { in getSyncAutomatically()
480 public void setSyncAutomatically(Account account, int userId, String providerName, in setSyncAutomatically()
501 public int getIsSyncable(Account account, int userId, String providerName) { in getIsSyncable()
524 public void setIsSyncable(Account account, int userId, String providerName, int syncable) { in setIsSyncable()
549 public Pair<Long, Long> getBackoff(Account account, int userId, String providerName) { in getBackoff()
[all …]
DSyncQueue.java148 public void onBackoffChanged(Account account, int userId, String providerName, long backoff) { in onBackoffChanged()
160 public void onDelayUntilTimeChanged(Account account, String providerName, long delayUntil) { in onDelayUntilTimeChanged()
171 public void remove(Account account, int userId, String authority) { in remove()
DContentResolver.java1305 Account account = null; in startSync() local
1333 public static void requestSync(Account account, String authority, Bundle extras) { in requestSync()
1397 public static void cancelSync(Account account, String authority) { in cancelSync()
1425 public static boolean getSyncAutomatically(Account account, String authority) { in getSyncAutomatically()
1442 public static void setSyncAutomatically(Account account, String authority, boolean sync) { in setSyncAutomatically()
1478 public static void addPeriodicSync(Account account, String authority, Bundle extras, in addPeriodicSync()
1514 public static void removePeriodicSync(Account account, String authority, Bundle extras) { in removePeriodicSync()
1538 public static List<PeriodicSync> getPeriodicSyncs(Account account, String authority) { in getPeriodicSyncs()
1558 public static int getIsSyncable(Account account, String authority) { in getIsSyncable()
1572 public static void setIsSyncable(Account account, String authority, int syncable) { in setIsSyncable()
[all …]
DSyncOperation.java28 public final Account account; field in SyncOperation
42 public SyncOperation(Account account, int userId, int source, String authority, Bundle extras, in SyncOperation()
DSyncManager.java221 private boolean containsAccountAndUser(AccountAndUser[] accounts, Account account, int userId) { in containsAccountAndUser()
646 public void scheduleLocalSync(Account account, int userId, String authority) { in scheduleLocalSync()
686 private void sendCancelSyncsMessage(final Account account, final int userId, in sendCancelSyncsMessage()
790 public void cancelActiveSync(Account account, int userId, String authority) { in cancelActiveSync()
823 public void clearScheduledSyncOperations(Account account, int userId, String authority) { in clearScheduledSyncOperations()
1596 private PowerManager.WakeLock getSyncWakeLock(Account account, String authority) { in getSyncWakeLock()
2468 private void installHandleTooManyDeletesNotification(Account account, String authority, in installHandleTooManyDeletesNotification()
/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()
34 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features); in hasFeatures()
36 boolean addAccount(in Account account, String password, in Bundle extras); in addAccount()
37 void removeAccount(in IAccountManagerResponse response, in Account account); in removeAccount()
39 String peekAuthToken(in Account account, String authTokenType); in peekAuthToken()
40 void setAuthToken(in Account account, String authTokenType, String authToken); in setAuthToken()
41 void setPassword(in Account account, String password); in setPassword()
42 void clearPassword(in Account account); in clearPassword()
43 void setUserData(in Account account, String key, String value); in setUserData()
[all …]
DAbstractAccountAuthenticator.java144 Account account, Bundle options) throws RemoteException { in confirmCredentials()
188 Account account, String authTokenType, Bundle loginOptions) in getAuthToken()
212 public void updateCredentials(IAccountAuthenticatorResponse response, Account account, in updateCredentials()
252 Account account, String[] features) throws RemoteException { in hasFeatures()
266 Account account) throws RemoteException { in getAccountRemovalAllowed()
379 Account account, Bundle options) in confirmCredentials()
400 Account account, String authTokenType, Bundle options) in getAuthToken()
430 Account account, String authTokenType, Bundle options) throws NetworkErrorException; in updateCredentials()
450 Account account, String[] features) throws NetworkErrorException; in hasFeatures()
469 Account account) throws NetworkErrorException { in getAccountRemovalAllowed()
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()
DAccountAndUser.java25 public Account account; field in AccountAndUser
28 public AccountAndUser(Account account, int userId) { in AccountAndUser()
DAccountManagerService.java311 final Account account = new Account(accountName, accountType); in validateAccountsAndPopulateCache() local
402 public String getPassword(Account account) { in getPassword()
420 private String readPasswordInternal(UserAccounts accounts, Account account) { in readPasswordInternal()
441 public String getUserData(Account account, String key) { in getUserData()
484 public boolean addAccount(Account account, String password, Bundle extras) { in addAccount()
503 private boolean addAccountInternal(UserAccounts accounts, Account account, String password, in addAccountInternal()
560 Account account, String[] features) { in hasFeatures()
586 Account account, String[] features) { in TestFeaturesSession()
633 public void removeAccount(IAccountManagerResponse response, Account account) { in removeAccount()
667 Account account) { in RemoveAccountSession()
[all …]
DAccountManager.java305 public String getPassword(final Account account) { in getPassword()
330 public String getUserData(final Account account, final String key) { in getUserData()
418 public void updateAppPermission(Account account, String authTokenType, int uid, boolean value) { in updateAppPermission()
DChooseTypeAndAccountActivity.java235 Account account = mAccounts.get(0); in onCreate() local
449 private void onAccountSelected(Account account) { in onAccountSelected()
/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/ex/chips/src/com/android/ex/chips/
DAccountSpecifier.java27 public void setAccount(Account account); in setAccount()
/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/base/core/tests/coretests/src/android/content/
DSyncStorageEngineTest.java49 final Account account = new Account("a@example.com", "example.type"); in testPurgeActiveSync() local
124 private void removePeriodicSyncs(SyncStorageEngine engine, Account account, int userId, in removePeriodicSyncs()
219 final Account account = new Account("account1", "type1"); in testAuthorityParsing() local
404 final Account account = new Account("acc", "type"); in testSyncableMigration() local
/frameworks/base/test-runner/src/android/test/
DSyncBaseInstrumentation.java50 Account account = new Account(accountName, "com.google"); in syncProvider() local
/frameworks/support/volley/src/com/android/volley/toolbox/
DAndroidAuthenticator.java43 public AndroidAuthenticator(Context context, Account account, String authTokenType) { in AndroidAuthenticator()

12