HomeSort by: relevance | last modified time | path
    Searched refs:removeSrcFile (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/programs/
fileio_types.h 59 int removeSrcFile;
zstdcli.c 867 removeSrcFile=0;
926 suffix = GZ_EXTENSION; cType = FIO_gzipCompression; removeSrcFile=1;
929 if (exeNameMatch(programName, ZSTD_GUNZIP)) { operation=zom_decompress; removeSrcFile=1; } /* behave like gunzip, also supports multiple formats */
931 if (exeNameMatch(programName, ZSTD_LZMA)) { suffix = LZMA_EXTENSION; cType = FIO_lzmaCompression; removeSrcFile=1; } /* behave like lzma */
932 if (exeNameMatch(programName, ZSTD_UNLZMA)) { operation=zom_decompress; cType = FIO_lzmaCompression; removeSrcFile=1; } /* behave like unlzma, also supports multiple formats */
933 if (exeNameMatch(programName, ZSTD_XZ)) { suffix = XZ_EXTENSION; cType = FIO_xzCompression; removeSrcFile=1; } /* behave like xz */
934 if (exeNameMatch(programName, ZSTD_UNXZ)) { operation=zom_decompress; cType = FIO_xzCompression; removeSrcFile=1; } /* behave like unxz, also supports multiple formats */
987 if (!strcmp(argument, "--keep")) { removeSrcFile=0; continue; }
988 if (!strcmp(argument, "--rm")) { removeSrcFile=1; continue; }
1220 case 'k': removeSrcFile=0; argument++; break
    [all...]
fileio.c 288 ret->removeSrcFile = 0;
365 void FIO_setRemoveSrcFile(FIO_prefs_t* const prefs, int flag) { prefs->removeSrcFile = (flag!=0); }
995 if (prefs->removeSrcFile)
1003 if (prefs->removeSrcFile)
1025 if (prefs->removeSrcFile) {
1027 prefs->removeSrcFile = 0;
2082 if ( prefs->removeSrcFile /* --rm */
2922 if ( prefs->removeSrcFile /* --rm */

Completed in 26 milliseconds