Home
last modified time | relevance | path

Searched refs:dstFileName (Results 1 – 5 of 5) sorted by relevance

/external/zstd/programs/
Dfileio.c145 static void addHandler(char const* dstFileName) in addHandler() argument
147 if (UTIL_isRegularFile(dstFileName)) { in addHandler()
148 g_artefact = dstFileName; in addHandler()
625 const char* srcFileName, const char* dstFileName) in FIO_openDstFile() argument
629 assert(dstFileName != NULL); in FIO_openDstFile()
630 if (!strcmp (dstFileName, stdoutmark)) { in FIO_openDstFile()
641 if (srcFileName != NULL && UTIL_isSameFile(srcFileName, dstFileName)) { in FIO_openDstFile()
650 if (UTIL_isRegularFile(dstFileName)) { in FIO_openDstFile()
652 FILE* const fCheck = fopen( dstFileName, "rb" ); in FIO_openDstFile()
656 if (!strcmp(dstFileName, nulmark)) { in FIO_openDstFile()
[all …]
/external/lz4/programs/
Dlz4io.c329 static FILE* LZ4IO_openDstFile(LZ4IO_prefs_t* const prefs, const char* dstFileName) in LZ4IO_openDstFile() argument
332 assert(dstFileName != NULL); in LZ4IO_openDstFile()
334 if (!strcmp (dstFileName, stdoutmark)) { in LZ4IO_openDstFile()
343 …if (!prefs->overwrite && strcmp (dstFileName, nulmark)) { /* Check if destination file already ex… in LZ4IO_openDstFile()
344 f = fopen( dstFileName, "rb" ); in LZ4IO_openDstFile()
348 DISPLAY("%s already exists; not overwritten \n", dstFileName); in LZ4IO_openDstFile()
351 DISPLAY("%s already exists; do you wish to overwrite (y/N) ? ", dstFileName); in LZ4IO_openDstFile()
359 f = fopen( dstFileName, "wb" ); in LZ4IO_openDstFile()
360 if (f==NULL) DISPLAYLEVEL(1, "%s: %s\n", dstFileName, strerror(errno)); in LZ4IO_openDstFile()
602 const char* srcFileName, const char* dstFileName, in LZ4IO_compressFilename_extRess() argument
[all …]
/external/deqp/execserver/tools/
DxsClient.cpp145 std::string dstFileName; member in xs::CommandLine
178 std::fstream out(m_cmdLine.dstFileName.c_str(), std::fstream::out|std::fstream::binary); in run()
180 printf(" writing to %s\n", m_cmdLine.dstFileName.c_str()); in run()
309 cmdLine.dstFileName = "TestResults.qpa"; in runClient()
329 cmdLine.dstFileName = parseString(arg+6); in runClient()
/external/deqp/executor/tools/
DxeBatchResultToJUnit.cpp136 static void batchResultToJUnitReport (const char* batchResultFilename, const char* dstFileName) in batchResultToJUnitReport() argument
138 std::ofstream out (dstFileName, std::ios_base::binary); in batchResultToJUnitReport()
DxeBatchResultToXml.cpp201 static void batchResultToSingleXmlFile (const char* batchResultFilename, const char* dstFileName) in batchResultToSingleXmlFile() argument
203 std::ofstream out (dstFileName, std::ios_base::binary); in batchResultToSingleXmlFile()