HomeSort by relevance Sort by last modified time
    Searched defs:oldFile (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
FileByFileV1DeltaApplierTest.java 79 private File oldFile;
120 oldFile = File.createTempFile("fbfv1dat", "old");
121 oldFile.deleteOnExit();
129 FileOutputStream out = new FileOutputStream(oldFile);
178 // Write a single uncompress instruction to uncompress the compressed content in oldFile
238 oldFile.delete();
251 fakeApplier.applyDelta(oldFile, new ByteArrayInputStream(patchBytes), actualNewBlobOut);
265 fakeApplier.applyDelta(oldFile, new ByteArrayInputStream(patchBytes), actualNewBlobOut);
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/
BsPatchTest.java 52 private File oldFile;
59 oldFile = File.createTempFile("archive_patcher", "old");
60 oldFile.deleteOnExit();
62 if (oldFile != null) {
63 oldFile.delete();
71 if (oldFile != null) {
72 oldFile.delete();
74 oldFile = null;
84 RandomAccessFile oldData = new RandomAccessFile(oldFile, "r");
98 RandomAccessFile oldData = new RandomAccessFile(oldFile, "r")
    [all...]
  /frameworks/av/media/mtp/
MtpUtils.cpp 143 string oldFile = fromPathStr + name;
148 ret += copyRecursive(oldFile.c_str(), newFile.c_str());
150 ret += copyFile(oldFile.c_str(), newFile.c_str());
  /frameworks/base/media/java/android/media/
MiniThumbFile.java 91 File oldFile = new File(oldPath);
92 if (oldFile.exists()) {
94 oldFile.delete();
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
CaptureHolder.java 286 File oldFile = new File(mCapturedStates[mIndexToPlace].fileNameBase + suffix);
287 boolean deleted = oldFile.delete();
289 Log.d(TAG, "Delete old capture: " + oldFile.toString() +
290 (oldFile.exists() ? " unable to delete" : " was not present"));
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ReportAPI.java 92 String oldFile = null;
100 oldFile = args[++i];
112 new ReportAPI(oldFile, newFile, internal).writeReport(outFile, html, internal);
133 ReportAPI(String oldFile, String newFile, boolean internal) {
134 this(APIData.read(oldFile, internal), APIData.read(newFile, internal));
  /frameworks/base/core/tests/coretests/src/android/content/pm/
RegisteredServicesCacheTest.java 161 String oldFile = "<?xml version='1.0' encoding='utf-8' standalone='yes' ?>\n"
168 FileUtils.copyToFile(new ByteArrayInputStream(oldFile.getBytes()), file);
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 705 AtomicFile oldFile = new AtomicFile(new File(syncDir, mInterfaceName + ".xml"));
706 boolean oldFileExists = oldFile.getBaseFile().exists();
717 is = oldFile.openRead();
    [all...]
  /prebuilts/sdk/current/multidex/library/
android-support-multidex.jar 
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java     [all...]
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0/
repository-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha1/
repository-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha3/
repository-25.0.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha5/
repository-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha7/
repository-25.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-alpha9/
repository-25.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta2/
repository-25.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta5/
repository-25.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta6/
repository-25.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-beta7/
repository-25.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.0.0-rc3/
repository-25.0.0-rc3.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.1.0/
repository-25.1.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.1.0-alpha3/
repository-25.1.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.1.0-alpha4/
repository-25.1.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/repository/25.1.0-beta1/
repository-25.1.0-beta1.jar 

Completed in 214 milliseconds

1 2 3 4 5 6 7 8 9