HomeSort by relevance Sort by last modified time
    Searched refs:backupFile (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 426 File backupFile = null;
428 backupFile = new File(mFile.getPath() + ".bak");
429 if (!backupFile.exists()) {
430 if (!mFile.renameTo(backupFile)) {
453 if (backupFile != null) {
454 backupFile.delete();
458 if (backupFile != null) {
460 backupFile.renameTo(mFile);
  /frameworks/base/cmds/rawbu/
backup.cpp 693 const char* backupFile = "/sdcard/backup.dat";
696 backupFile = argv[optind];
712 res = android::restore_data(backupFile);
719 res = android::backup_data(backupFile);

Completed in 5120 milliseconds