Home
last modified time | relevance | path

Searched refs:callbackBinder (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/core/java/android/app/
H A DIBackupAgent.aidl57 long quotaBytes, IBackupCallback callbackBinder, int transportFlags); in doBackup() argument
84 int token, IBackupManager callbackBinder); in doRestore() argument
97 int token, IBackupManager callbackBinder, in List<String> excludedKeys); in doRestoreWithExcludedKeys() argument
121 IBackupManager callbackBinder, int transportFlags); in doFullBackup() argument
126 void doMeasureFullBackup(long quotaBytes, int token, IBackupManager callbackBinder, in doMeasureFullBackup() argument
149 void doQuotaExceeded(long backupDataBytes, long quotaBytes, IBackupCallback callbackBinder); in doQuotaExceeded() argument
174 int token, IBackupManager callbackBinder); in doRestoreFile() argument
189 void doRestoreFinished(int token, IBackupManager callbackBinder); in doRestoreFinished() argument
/aosp14/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DObbBackupService.java57 int token, IBackupManager callbackBinder) {
95 callbackBinder.opComplete(token, 0);
107 int token, IBackupManager callbackBinder) {
122 callbackBinder.opComplete(token, 0);
/aosp14/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java1089 IBackupCallback callbackBinder, in doBackup() argument
1117 callbackBinder.operationComplete(result); in doBackup()
1175 callbackBinder.opCompleteForUser(getBackupUserId(), token, 0); in doRestoreInternal()
1223 callbackBinder.opCompleteForUser(getBackupUserId(), token, 0); in doFullBackup()
1254 callbackBinder.opCompleteForUser(getBackupUserId(), token, in doMeasureFullBackup()
1265 int token, IBackupManager callbackBinder) throws RemoteException { in doRestoreFile() argument
1280 callbackBinder.opCompleteForUser(getBackupUserId(), token, 0); in doRestoreFile()
1292 public void doRestoreFinished(int token, IBackupManager callbackBinder) { in doRestoreFinished() argument
1305 callbackBinder.opCompleteForUser(getBackupUserId(), token, 0); in doRestoreFinished()
1321 IBackupCallback callbackBinder) { in doQuotaExceeded() argument
[all …]
/aosp14/frameworks/base/core/java/com/android/internal/backup/
H A DIObbBackupService.aidl37 int token, in IBackupManager callbackBinder); in backupObbs() argument
44 int token, in IBackupManager callbackBinder); in restoreObbFile() argument
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/fullbackup/
H A DFullBackupObbConnection.java113 int token, IBackupManager callbackBinder) { in restoreObbFile() argument
118 token, callbackBinder); in restoreObbFile()
/aosp14/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareImpl.java603 IBinder callbackBinder = callback.asBinder();
610 if (mGeofences.valueAt(i).asBinder() == callbackBinder) {
623 reaper.mCallback.asBinder() == callbackBinder) {
628 reaper, callbackBinder));
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/power/
H A DPowerManagerServiceTest.java2631 final IBinder callbackBinder = Mockito.mock(Binder.class); in testNotifyWakeLockCallback() local
2632 when(callback.asBinder()).thenReturn(callbackBinder); in testNotifyWakeLockCallback()