Home
last modified time | relevance | path

Searched refs:dstFile (Results 1 – 8 of 8) sorted by relevance

/external/deqp/scripts/
Dmake_release.py97 def __init__ (self, dstFile): argument
98 self.dstFile = dstFile
101 dirName = os.path.dirname(self.dstFile)
109 def __init__ (self, srcFile, dstFile): argument
110 super(CopyFile, self).__init__(dstFile)
115 if os.path.exists(self.dstFile):
116 die("%s already exists" % self.dstFile)
117 shutil.copyfile(self.srcFile, self.dstFile)
120 def __init__ (self, dstFile): argument
121 super(GenReleaseInfoFileTarget, self).__init__(dstFile)
[all …]
Dcppcheck.py135 def runCppCheck (srcBaseDir, dstFile): argument
136 fullDstFile = os.path.realpath(dstFile)
158 dstFile = sys.argv[1] variable
160 runCppCheck(srcDir, dstFile)
Dmustpass.py347 dstFile = getDstCaseListPath(mustpass, package, config)
349 print " Writing deqp caselist: " + dstFile
350 writeFile(dstFile, "\n".join(filtered) + "\n")
/external/lz4/programs/
Dlz4io.c442 FILE* dstFile; in LZ4IO_compressFilename_extRess() local
454 dstFile = LZ4IO_openDstFile(dstFileName); in LZ4IO_compressFilename_extRess()
455 if (dstFile == NULL) { fclose(srcFile); return 1; } in LZ4IO_compressFilename_extRess()
487 { size_t const sizeCheck = fwrite(dstBuffer, 1, cSize, dstFile); in LZ4IO_compressFilename_extRess()
498 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile); in LZ4IO_compressFilename_extRess()
513 { size_t const sizeCheck = fwrite(dstBuffer, 1, outSize, dstFile); in LZ4IO_compressFilename_extRess()
526 { size_t const sizeCheck = fwrite(dstBuffer, 1, headerSize, dstFile); in LZ4IO_compressFilename_extRess()
533 fclose (dstFile); in LZ4IO_compressFilename_extRess()
755 FILE* dstFile; member
775 ress.dstFile = NULL; in LZ4IO_createDResources()
[all …]
/external/deqp/framework/qphelper/
Dgen_release_info.py112 dstFile = args.out if args.out != None else defaultDstFile variable
114 writeFile(dstFile, releaseInfo)
/external/boringssl/src/util/
Drun_android_tests.go172 dstFile, err := os.OpenFile(dst, os.O_CREATE|os.O_WRONLY, srcInfo.Mode())
176 defer dstFile.Close()
178 _, err = io.Copy(dstFile, srcFile)
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DSwatDeprecated.java27 private File dstFile; field in SwatDeprecated
99 this.dstFile = new File(dst); in SwatDeprecated()
113 this.dstPrefix = dstFile.getCanonicalPath(); in SwatDeprecated()
DDeprecator.java171 void processFile(File srcFile, File dstFile) { in processFile() argument