HomeSort by relevance Sort by last modified time
    Searched defs:mDataFile (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/tests/coretests/src/android/app/backup/
BackupDataTest.java 61 private ParcelFileDescriptor mDataFile;
77 if (mDataFile != null) {
78 mDataFile.close();
85 BackupDataOutput bdo = new BackupDataOutput(mDataFile.getFileDescriptor());
89 mDataFile.close();
92 BackupDataInput bdi = new BackupDataInput(mDataFile.getFileDescriptor());
104 BackupDataOutput bdo = new BackupDataOutput(mDataFile.getFileDescriptor());
110 mDataFile.close();
113 BackupDataInput bdi = new BackupDataInput(mDataFile.getFileDescriptor());
125 BackupDataOutput bdo = new BackupDataOutput(mDataFile.getFileDescriptor())
    [all...]
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
BackupRestoreActivity.java 116 File mDataFile;
135 mDataFile = new File(getFilesDir(), BackupRestoreActivity.DATA_FILE_NAME);
160 boolean exists = mDataFile.exists();
162 file = new RandomAccessFile(mDataFile, "rw");
245 RandomAccessFile file = new RandomAccessFile(mDataFile, "rw");
ExampleAgent.java 62 File mDataFile;
67 mDataFile = new File(getFilesDir(), BackupRestoreActivity.DATA_FILE_NAME);
95 RandomAccessFile file = new RandomAccessFile(mDataFile, "r");
232 RandomAccessFile file = new RandomAccessFile(mDataFile, "rw");
MultiRecordExampleAgent.java 53 File mDataFile;
58 mDataFile = new File(getFilesDir(), BackupRestoreActivity.DATA_FILE_NAME);
71 RandomAccessFile file = new RandomAccessFile(mDataFile, "r");
191 RandomAccessFile file = new RandomAccessFile(mDataFile, "rw");
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 63 File mDataFile;
68 mDataFile = new File(getFilesDir(), HugeBackupActivity.DATA_FILE_NAME);
96 RandomAccessFile file = new RandomAccessFile(mDataFile, "r");
244 RandomAccessFile file = new RandomAccessFile(mDataFile, "rw");
HugeBackupActivity.java 60 File mDataFile;
79 mDataFile = new File(getFilesDir(), HugeBackupActivity.DATA_FILE_NAME);
104 boolean exists = mDataFile.exists();
106 file = new RandomAccessFile(mDataFile, "rw");
188 RandomAccessFile file = new RandomAccessFile(mDataFile, "rw");
  /tools/tradefederation/core/src/com/android/tradefed/util/
SubprocessEventHelper.java 359 public File mDataFile = null;
364 mDataFile = dataFile;
372 mDataFile = new File(jsonObject.getString(DATA_FILE_KEY));
386 if (mDataFile != null) {
387 tags.put(DATA_FILE_KEY, mDataFile.getAbsolutePath());

Completed in 177 milliseconds