Home | History | Annotate | Download | only in launcher3

Lines Matching full:oldstate

204      * @param oldState notes from the last backup
209 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
213 Journal in = readJournal(oldState);
285 * @return true if the backup corresponding to oldstate can be successfully applied
288 private boolean isBackupCompatible(Journal oldState) {
290 DeviceProfieData oldProfile = oldState.profile;
1048 * @param oldState the read-0only file descriptor pointing to the old journal
1051 private Journal readJournal(ParcelFileDescriptor oldState) {
1053 if (oldState == null) {
1056 FileInputStream inStream = new FileInputStream(oldState.getFileDescriptor());