HomeSort by relevance Sort by last modified time
    Searched refs:dstFile (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/deqp/scripts/
cppcheck.py 135 def runCppCheck (srcBaseDir, dstFile):
136 fullDstFile = os.path.realpath(dstFile)
158 dstFile = sys.argv[1]
160 runCppCheck(srcDir, dstFile)
make_release.py 96 class DstFile (object):
97 def __init__ (self, dstFile):
98 self.dstFile = dstFile
101 dirName = os.path.dirname(self.dstFile)
108 class CopyFile (DstFile):
109 def __init__ (self, srcFile, dstFile):
110 super(CopyFile, self).__init__(dstFile)
115 if os.path.exists(self.dstFile):
116 die("%s already exists" % self.dstFile)
    [all...]
mustpass.py 348 dstFile = getDstCaseListPath(mustpass, package, config)
350 print " Writing deqp caselist: " + dstFile
351 writeFile(dstFile, "\n".join(filtered) + "\n")
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DexDumpAction.java 116 File dstFile = null;
156 dstFile = File.createTempFile(
174 final BufferedWriter writer = new BufferedWriter(new FileWriter(dstFile));
223 final String dstPath = dstFile.getAbsolutePath();
262 if (removeDstFile && dstFile != null) {
264 dstFile.delete();
268 dstFile.getAbsoluteFile());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
XmpPresets.java 61 Context context, Uri srcUri, File dstFile, ImagePreset preset) {
82 Log.v(LOGTAG, "Write XMP meta to file failed:" + dstFile.getAbsolutePath());
86 if (!XmpUtilHelper.writeXMPMeta(dstFile.getAbsolutePath(), xmpMeta)) {
87 Log.v(LOGTAG, "Write XMP meta to file failed:" + dstFile.getAbsolutePath());
SaveImage.java 463 * @param dstFile Providing the destination file info to help to build the
467 private Uri moveSrcToAuxIfNeeded(Uri srcUri, File dstFile) {
476 File auxDiretory = getLocalAuxDirectory(dstFile);
497 File newSrcFile = new File(auxDiretory, dstFile.getName());
505 String name = dstFile.getName();
521 private static File getLocalAuxDirectory(File dstFile) {
522 File dstDirectory = dstFile.getParentFile();
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
AnalyseNewJavaParserTest.java 79 File dstFile = new File(path);
86 dstFile = dstFile9;
97 if (!dstFile.exists()) {
99 PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8");
104 String expected = readFile(dstFile);
AnalyseJavaSymbolSolver060Test.java 100 File dstFile = new File(path);
107 dstFile = dstFile9;
118 if (!dstFile.exists()) {
120 // PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8");
125 String expected = readFile(dstFile);
AnalyseJavaParserTest.java 74 File dstFile = adaptPath(new File(path));
83 String expected = readFile(dstFile);
97 //PrintWriter writer = new PrintWriter(dstFile.getAbsoluteFile(), "UTF-8");
  /external/deqp/framework/qphelper/
gen_release_info.py 112 dstFile = args.out if args.out != None else defaultDstFile
114 writeFile(dstFile, releaseInfo)
  /external/lz4/programs/
lz4io.c 442 FILE* dstFile;
454 dstFile = LZ4IO_openDstFile(dstFileName);
455 if (dstFile == NULL) { fclose(srcFile); return 1; }
487 { size_t const sizeCheck = fwrite(dstBuffer, 1, cSize, dstFile);
498 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile);
513 { size_t const sizeCheck = fwrite(dstBuffer, 1, outSize, dstFile);
526 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile);
533 fclose (dstFile);
755 FILE* dstFile;
775 ress.dstFile = NULL
    [all...]
  /build/make/tools/libhost/
CopyFile.c 494 char* dstFile;
516 dstFile = malloc(dstLen +1 + nameLen +1);
517 memcpy(dstFile, dst, dstLen);
518 dstFile[dstLen] = FSSEP;
519 memcpy(dstFile + dstLen+1, ent->d_name, nameLen +1);
521 if (copyFileRecursive(srcFile, dstFile, false, options) != 0)
525 free(dstFile);
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamTransferManager.java 415 File dstFile = generateUniqueDestination(beamPath.getAbsolutePath(),
418 if (!srcFile.renameTo(dstFile)) {
419 if (DBG) Log.d(TAG, "Failed to rename from " + srcFile + " to " + dstFile);
423 mPaths.add(dstFile.getAbsolutePath());
424 mMimeTypes.put(dstFile.getAbsolutePath(), mimeType);
425 if (DBG) Log.d(TAG, "Did successful rename from " + srcFile + " to " + dstFile);
528 File dstFile = new File(path + File.separator + fileName);
530 while (dstFile.exists()) {
531 dstFile = new File(path + File.separator + fileNameWithoutExtension + "-" +
535 return dstFile;
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
NativeLibrary.java 186 private static long copy(InputStream src, File dstFile) throws IOException {
187 FileOutputStream dst = new FileOutputStream(dstFile);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/test/
amrnb_enc_test.cpp 61 int encode(int mode, const char *srcFile, const char *dstFile) {
83 fDst = fopen(dstFile, "wb");
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
SwatDeprecated.java 27 private File dstFile;
99 this.dstFile = new File(dst);
113 this.dstPrefix = dstFile.getCanonicalPath();
Deprecator.java 171 void processFile(File srcFile, File dstFile) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
CopyJob.java 548 ParcelFileDescriptor dstFile = null;
594 dstFile = getClient(dest).openFile(dest.derivedUri, "w", mSignal);
601 out = new ParcelFileDescriptor.AutoCloseOutputStream(dstFile);
610 final FileDescriptor dstFd = dstFile.getFileDescriptor();
629 Os.fsync(dstFile.getFileDescriptor());
639 IoUtils.close(dstFile.getFileDescriptor());
658 if (dstFile != null) {
660 dstFile.closeWithError("Error copying bytes.");
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerServiceUtils.java 638 public static int decompressFile(File srcFile, File dstFile) throws ErrnoException {
642 + ", dst: " + dstFile.getAbsolutePath());
646 OutputStream fileOut = new FileOutputStream(dstFile, false /*append*/);
649 Os.chmod(dstFile.getAbsolutePath(), 0644);
654 + ", dst: " + dstFile.getAbsolutePath());
  /frameworks/rs/cpu_ref/
rsCpuExecutable.cpp 37 // Copy the file named \p srcFile to \p dstFile.
39 static int copyFile(const char *dstFile, const char *srcFile) {
45 std::ofstream dstStream(dstFile);
47 ALOGE("Could not verify or write destination file: %s", dstFile);
52 ALOGE("Could not write destination file: %s", dstFile);
  /external/deqp/external/openglcts/scripts/
mustpass.py 402 dstFile = getDstCaseListPath(mustpass, package, config)
404 print " Writing deqp caselist: " + dstFile
405 writeFile(dstFile, "\n".join(filtered) + "\n")
  /external/boringssl/src/util/
run_android_tests.go 172 dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, srcInfo.Mode())
176 defer dstFile.Close()
178 _, err = io.Copy(dstFile, srcFile)
  /prebuilts/go/darwin-x86/src/cmd/dist/
buildtool.go 147 dstFile := pathf("%s/%s", dst, name)
149 writefile(text, dstFile, 0)
  /prebuilts/go/linux-x86/src/cmd/dist/
buildtool.go 147 dstFile := pathf("%s/%s", dst, name)
149 writefile(text, dstFile, 0)
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-impl/1.0.2.v20150114/
aether-impl-1.0.2.v20150114.jar 

Completed in 5242 milliseconds

1 2 3 4