Lines Matching refs:task

230     // backup task state machine tick
601 // If we're running a schedule-driven full backup, this is the task instance doing it
693 // file identity is being passed to the backup processing task.
730 BackupRestoreTask task = (BackupRestoreTask) msg.obj;
731 if (MORE_DEBUG) Slog.v(TAG, "Got next step for " + task + ", executing");
732 task.execute();
734 Slog.e(TAG, "Invalid backup task in flight, obj=" + msg.obj);
742 BackupRestoreTask task = (BackupRestoreTask) msg.obj;
743 task.operationComplete();
755 PerformAdbBackupTask task = new PerformAdbBackupTask(params.fd,
761 (new Thread(task, "adb-backup")).start();
767 PerformFullTransportBackupTask task = (PerformFullTransportBackupTask) msg.obj;
768 (new Thread(task, "transport-backup")).start();
776 BackupRestoreTask task = new PerformUnifiedRestoreTask(params.transport,
779 Message restoreMsg = obtainMessage(MSG_BACKUP_RESTORE_STEP, task);
789 PerformAdbRestoreTask task = new PerformAdbRestoreTask(params.fd,
792 (new Thread(task, "adb-restore")).start();
2218 // Execute one tick of whatever state machine the task implements
3450 // Full backup task variant used for adb backup
3794 // Full backup task extension used for transport-oriented operation
3920 Slog.i(TAG, "Full backup task told to stop");
4223 // so tear down any ongoing backup task right away.
6997 // Invariant: mWakelock is already held, and this task is responsible for
7088 // Execute one tick of whatever state machine the task implements
7521 // backup looper, and the overall unified restore task resumes
8341 PerformFullTransportBackupTask task =
8343 (new Thread(task, "full-transport-master")).start();