Lines Matching refs:u32

37 	u32 level, void *data, const char *format, va_list args);
51 u32 ntfs_log_set_levels(u32 levels);
52 u32 ntfs_log_clear_levels(u32 levels);
53 u32 ntfs_log_get_levels(void);
56 u32 ntfs_log_set_flags(u32 flags);
57 u32 ntfs_log_clear_flags(u32 flags);
58 u32 ntfs_log_get_flags(void);
64 u32 level, void *data, const char *format, ...)
68 #define NTFS_LOG_LEVEL_DEBUG ((u32)1 << 0) /* x = 42 */
69 #define NTFS_LOG_LEVEL_TRACE ((u32)1 << 1) /* Entering function x() */
70 #define NTFS_LOG_LEVEL_QUIET ((u32)1 << 2) /* Quietable output */
71 #define NTFS_LOG_LEVEL_INFO ((u32)1 << 3) /* Volume needs defragmenting */
72 #define NTFS_LOG_LEVEL_VERBOSE ((u32)1 << 4) /* Forced to continue */
73 #define NTFS_LOG_LEVEL_PROGRESS ((u32)1 << 5) /* 54% complete */
74 #define NTFS_LOG_LEVEL_WARNING ((u32)1 << 6) /* You should backup before starting */
75 #define NTFS_LOG_LEVEL_ERROR ((u32)1 << 7) /* Operation failed, no damage done */
76 #define NTFS_LOG_LEVEL_PERROR ((u32)1 << 8) /* Message : standard error description */
77 #define NTFS_LOG_LEVEL_CRITICAL ((u32)1 << 9) /* Operation failed,damage may have occurred */
80 #define NTFS_LOG_FLAG_PREFIX ((u32)1 << 0) /* Prefix messages with "ERROR: ", etc */
81 #define NTFS_LOG_FLAG_FILENAME ((u32)1 << 1) /* Show the file origin of the message */
82 #define NTFS_LOG_FLAG_LINE ((u32)1 << 2) /* Show the line number of the message */
83 #define NTFS_LOG_FLAG_FUNCTION ((u32)1 << 3) /* Show the function name containing the message */
84 #define NTFS_LOG_FLAG_ONLYNAME ((u32)1 << 4) /* Only display the filename, not the pathname */
85 #define NTFS_LOG_FLAG_COLOUR ((u32)1 << 5) /* Colour highlight some messages */