• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/zstd/programs/

Lines Matching refs:displayLevel

82     int displayLevel;   /* 0 : no display;  1: errors;  2: + result + interaction + warnings;  3: + progression;  4: + information */
90 #define DISPLAYLEVEL(l, ...) { if (g_display_prefs.displayLevel>=l) { DISPLAY(__VA_ARGS__); } }
98 if (g_display_prefs.displayLevel>=l && !g_display_prefs.noProgress) { \
99 if (READY_FOR_UPDATE() || (g_display_prefs.displayLevel>=4)) { \
102 if (g_display_prefs.displayLevel>=4) fflush(stderr); \
415 void FIO_setNotificationLevel(int level) { g_display_prefs.displayLevel=level; }
664 if (g_display_prefs.displayLevel <= 1) {
856 if (g_display_prefs.displayLevel <= displayLevelCutoff) {
873 error = g_display_prefs.displayLevel > displayLevelCutoff && UTIL_requireUserConfirmation("This is a destructive operation. Proceed? (y/n): ", "Aborting...", "yY", fCtx->hasStdinInput);
1356 if (g_display_prefs.displayLevel >= 3) {
1547 if (g_display_prefs.displayLevel >= 2 &&
1549 (g_display_prefs.displayLevel >= 3 || fCtx->nbFilesTotal <= 1)) {
2475 if (g_display_prefs.displayLevel >= 2) {
2476 if (fCtx->nbFilesTotal <= 1 || g_display_prefs.displayLevel >= 3) {
2934 displayInfo(const char* inFileName, const fileInfo_t* info, int displayLevel)
2943 if (displayLevel <= 2) {
2994 FIO_listFile(fileInfo_t* total, const char* inFileName, int displayLevel)
3006 if (displayLevel > 2) DISPLAYOUT("\n");
3010 if (displayLevel > 2) DISPLAYOUT("\n");
3014 if (displayLevel > 2) DISPLAYOUT("\n");
3021 displayInfo(inFileName, &info, displayLevel);
3028 int FIO_listMultipleFiles(unsigned numFiles, const char** filenameTable, int displayLevel)
3045 if (displayLevel <= 2) {
3055 error |= FIO_listFile(&total, filenameTable[u], displayLevel);
3057 if (numFiles > 1 && displayLevel <= 2) { /* display total */