HomeSort by relevance Sort by last modified time
    Searched full:oldfile (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/bsdiff/
bsdiff_main.cc 11 errx(1, "usage: %s oldfile newfile patchfile\n", argv[0]);
bsdiff.1 36 .Ar oldfile newfile patchfile
40 .Ar oldfile
48 .Ar oldfile
58 .Ar oldfile ,
60 an absolute minimum working set size of 8 times the size of oldfile.
bspatch_main.cc 11 "usage: %s oldfile newfile patchfile [old-extents new-extents]\n" \
bspatch.1 36 .Ar oldfile newfile patchfile
43 .Ar oldfile
  /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...]
  /external/skia/tools/
jsondiff.py 153 def GenerateDiffDict(self, oldfile, newfile=None):
155 old = expectations within oldfile
159 oldfile.
161 return self.GenerateDiffDictFromStrings(self._GetFileContentsAsString(oldfile),
170 oldfile.
195 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new)
  /external/libmtp/examples/
filetree.c 55 LIBMTP_file_t *oldfile; local
66 oldfile = file;
68 LIBMTP_destroy_file_t(oldfile);
  /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/ltp/utils/ffsb-6.0-rc2/
filelist.c 123 struct ffsb_file *newfile, *oldfile = NULL; local
140 oldfile = cl_remove_head(b->holes);
141 rbtree_insert(b->files, oldfile);
142 rw_lock_write(&oldfile->lock);
156 if (oldfile == NULL) {
177 return oldfile;
  /external/r8/src/test/examples/multidex002/fakelibrary/
MultiDexExtractor.java 124 for (File oldFile : files) {
125 if (!oldFile.delete()) {
  /external/r8/src/test/examples/multidex003/fakelibrary/
MultiDexExtractor.java 124 for (File oldFile : files) {
125 if (!oldFile.delete()) {
  /external/r8/src/test/examplesAndroidO/multidex004/fakelibrary/
MultiDexExtractor.java 125 for (File oldFile : files) {
126 if (!oldFile.delete()) {
  /frameworks/multidex/library/src/android/support/multidex/
MultiDexExtractor.java 359 for (File oldFile : files) {
360 Log.i(TAG, "Trying to delete old file " + oldFile.getPath() + " of size " +
361 oldFile.length());
362 if (!oldFile.delete()) {
363 Log.w(TAG, "Failed to delete old file " + oldFile.getPath());
365 Log.i(TAG, "Deleted old file " + oldFile.getPath());
MultiDex.java 405 for (File oldFile : files) {
406 Log.i(TAG, "Trying to delete old file " + oldFile.getPath() + " of size "
407 + oldFile.length());
408 if (!oldFile.delete()) {
409 Log.w(TAG, "Failed to delete old file " + oldFile.getPath());
411 Log.i(TAG, "Deleted old file " + oldFile.getPath());
  /frameworks/base/media/java/android/media/
MiniThumbFile.java 90 File oldFile = new File(oldPath);
91 if (oldFile.exists()) {
93 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"));
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Tools/
replace.c 32 printf ("\n%s OldFile NewFile MatchString ReplaceString [MatchString2 ReplaceString2]*\n", Name);
33 printf (" OldFile - Must be arg[1] File to search for MatchStrings\n");
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
replace.c 32 printf ("\n%s OldFile NewFile MatchString ReplaceString [MatchString2 ReplaceString2]*\n", Name);
33 printf (" OldFile - Must be arg[1] File to search for MatchStrings\n");
  /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));
  /external/lzma/CPP/Windows/
FileDir.cpp 157 bool MyMoveFile(CFSTR oldFile, CFSTR newFile)
162 if (::MoveFile(fs2fas(oldFile), fs2fas(newFile)))
168 IF_USE_MAIN_PATH_2(oldFile, newFile)
169 if (::MoveFileW(fs2us(oldFile), fs2us(newFile)))
175 if (GetSuperPaths(oldFile, newFile, d1, d2, USE_MAIN_PATH_2))
  /external/vboot_reference/futility/
cmd_vbutil_kernel.c 220 char *oldfile = NULL; local
308 oldfile = optarg;
478 if (!oldfile)
482 kpart_data = ReadOldKPartFromFileOrDie(oldfile, &kpart_size);
487 Fatal("%s is not a kernel blob\n", oldfile);
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 791 File oldFile = new File(path);
798 boolean success = oldFile.renameTo(newFile);
818 newFile.renameTo(oldFile);
825 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
835 if (oldFile.getName().toLowerCase(Locale.US).equals(".nomedia"
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
RegisteredServicesCacheTest.java 159 String oldFile = "<?xml version='1.0' encoding='utf-8' standalone='yes' ?>\n"
166 FileUtils.copyToFile(new ByteArrayInputStream(oldFile.getBytes()), file);
  /external/ltp/testcases/kernel/syscalls/symlinkat/
symlinkat01.c 62 #define TEST_FILE1 "oldfile"
  /external/syslinux/extlinux/
main.c 513 char *file, *oldfile, *c32file; local
519 r2 = asprintf(&oldfile, "%s%sextlinux.sys",
523 if (r1 < 0 || !file || r2 < 0 || !oldfile || r3 < 0 || !c32file) {
562 fd = open(oldfile, O_RDONLY);
566 unlink(oldfile);
584 free(oldfile);
595 free(oldfile);
    [all...]

Completed in 1294 milliseconds

1 2 3 4 5 6