Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/scripts/
Dmake_release.py99 def __init__ (self, dstFile): argument
100 self.dstFile = dstFile
103 dirName = os.path.dirname(self.dstFile)
111 def __init__ (self, srcFile, dstFile): argument
112 super(CopyFile, self).__init__(dstFile)
117 if os.path.exists(self.dstFile):
118 die("%s already exists" % self.dstFile)
119 shutil.copyfile(self.srcFile, self.dstFile)
122 def __init__ (self, dstFile): argument
123 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)
/third_party/lz4/programs/
Dlz4io.c656 FILE* dstFile; in LZ4IO_compressFilename_extRess() local
668 dstFile = LZ4IO_openDstFile(dstFileName, io_prefs); in LZ4IO_compressFilename_extRess()
669 if (dstFile == NULL) { fclose(srcFile); return 1; } in LZ4IO_compressFilename_extRess()
703 if (fwrite(dstBuffer, 1, cSize, dstFile) != cSize) { in LZ4IO_compressFilename_extRess()
714 if (fwrite(dstBuffer, 1, headerSize, dstFile) != headerSize) in LZ4IO_compressFilename_extRess()
728 if (fwrite(dstBuffer, 1, outSize, dstFile) != outSize) in LZ4IO_compressFilename_extRess()
741 if (fwrite(dstBuffer, 1, endSize, dstFile) != endSize) in LZ4IO_compressFilename_extRess()
748 if (strcmp(dstFileName,stdoutmark)) fclose (dstFile); /* do not close stdout */ in LZ4IO_compressFilename_extRess()
1001 FILE* dstFile; member
1037 ress.dstFile = NULL; in LZ4IO_createDResources()
[all …]
/third_party/vk-gl-cts/framework/qphelper/
Dgen_release_info.py134 dstFile = args.out if args.out != None else defaultDstFile variable
136 writeFile(dstFile, releaseInfo)
/third_party/vk-gl-cts/external/openglcts/scripts/
Dmustpass.py414 dstFile = getDstCaseListPath(mustpass, package, config)
416 print(" Writing deqp caselist: " + dstFile)
417 writeFile(dstFile, "\n".join(filtered) + "\n")
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/archrast/
Darchrast.cpp126 std::ofstream dstFile; in EventHandlerApiStats() local
127 dstFile.open(eventsProtoDstFilename.str().c_str(), std::ios::binary); in EventHandlerApiStats()
128 dstFile << srcFile.rdbuf(); in EventHandlerApiStats()
129 dstFile.close(); in EventHandlerApiStats()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java171 void processFile(File srcFile, File dstFile) { in processFile() argument