Searched refs:dstFileName (Results 1 – 5 of 5) sorted by relevance
/external/lz4/programs/ |
D | lz4io.c | 340 static FILE* LZ4IO_openDstFile(const char* dstFileName, const LZ4IO_prefs_t* const prefs) in LZ4IO_openDstFile() argument 343 assert(dstFileName != NULL); in LZ4IO_openDstFile() 345 if (LZ4IO_isStdout(dstFileName)) { in LZ4IO_openDstFile() 354 if (!prefs->overwrite && !LZ4IO_isDevNull(dstFileName)) { in LZ4IO_openDstFile() 356 FILE* const testf = fopen( dstFileName, "rb" ); in LZ4IO_openDstFile() 360 DISPLAY("%s already exists; not overwritten \n", dstFileName); in LZ4IO_openDstFile() 363 DISPLAY("%s already exists; do you want to overwrite (y/N) ? ", dstFileName); in LZ4IO_openDstFile() 371 f = fopen( dstFileName, "wb" ); in LZ4IO_openDstFile() 372 if (f==NULL) DISPLAYLEVEL(1, "%s: %s\n", dstFileName, strerror(errno)); in LZ4IO_openDstFile() 505 char* dstFileName = (char*)malloc(FNSPACE); in LZ4IO_compressMultipleFilenames_Legacy() local [all …]
|
/external/zstd/programs/ |
D | fileio.c | 158 static void addHandler(char const* dstFileName) in addHandler() argument 160 if (UTIL_isRegularFile(dstFileName)) { in addHandler() 161 g_artefact = dstFileName; in addHandler() 649 const char* srcFileName, const char* dstFileName, in FIO_openDstFile() argument 654 assert(dstFileName != NULL); in FIO_openDstFile() 655 if (!strcmp (dstFileName, stdoutmark)) { in FIO_openDstFile() 666 if (srcFileName != NULL && UTIL_isSameFile(srcFileName, dstFileName)) { in FIO_openDstFile() 675 if (UTIL_isRegularFile(dstFileName)) { in FIO_openDstFile() 680 if (!strcmp(dstFileName, nulmark)) { in FIO_openDstFile() 682 dstFileName); in FIO_openDstFile() [all …]
|
/external/deqp/execserver/tools/ |
D | xsClient.cpp | 145 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() 308 cmdLine.dstFileName = "TestResults.qpa"; in runClient() 328 cmdLine.dstFileName = parseString(arg+6); in runClient()
|
/external/deqp/executor/tools/ |
D | xeBatchResultToJUnit.cpp | 136 static void batchResultToJUnitReport (const char* batchResultFilename, const char* dstFileName) in batchResultToJUnitReport() argument 138 std::ofstream out (dstFileName, std::ios_base::binary); in batchResultToJUnitReport()
|
D | xeBatchResultToXml.cpp | 201 static void batchResultToSingleXmlFile (const char* batchResultFilename, const char* dstFileName) in batchResultToSingleXmlFile() argument 203 std::ofstream out (dstFileName, std::ios_base::binary); in batchResultToSingleXmlFile()
|