Lines Matching defs:move

129             final MoveInfo move = new MoveInfo();
130 move.moveId = moveId;
131 move.extras = extras;
133 move.packageName = extras.getString(Intent.EXTRA_PACKAGE_NAME);
134 move.label = extras.getString(Intent.EXTRA_TITLE);
135 move.volumeUuid = extras.getString(VolumeRecord.EXTRA_FS_UUID);
137 mMoves.put(moveId, move);
142 final MoveInfo move = mMoves.get(moveId);
143 if (move == null) {
144 Log.w(TAG, "Ignoring unknown move " + moveId);
149 onMoveFinished(move, status);
151 onMoveProgress(move, status, estMillis);
454 private void onMoveProgress(MoveInfo move, int status, long estMillis) {
456 if (!TextUtils.isEmpty(move.label)) {
457 title = mContext.getString(R.string.ext_media_move_specific_title, move.label);
470 if (move.packageName != null) {
471 intent = buildWizardMovePendingIntent(move);
473 intent = buildWizardMigratePendingIntent(move);
491 mNotificationManager.notifyAsUser(move.packageName, MOVE_ID,
495 private void onMoveFinished(MoveInfo move, int status) {
496 if (move.packageName != null) {
499 mNotificationManager.cancelAsUser(move.packageName, MOVE_ID, UserHandle.ALL);
540 mNotificationManager.notifyAsUser(move.packageName, MOVE_ID, builder.build(),
656 private PendingIntent buildWizardMigratePendingIntent(MoveInfo move) {
660 intent.putExtra(PackageManager.EXTRA_MOVE_ID, move.moveId);
662 final VolumeInfo vol = mStorageManager.findVolumeByQualifiedUuid(move.volumeUuid);
666 return PendingIntent.getActivityAsUser(mContext, move.moveId, intent,
670 private PendingIntent buildWizardMovePendingIntent(MoveInfo move) {
674 intent.putExtra(PackageManager.EXTRA_MOVE_ID, move.moveId);
676 return PendingIntent.getActivityAsUser(mContext, move.moveId, intent,