Symbol: ntfs_log_redirect
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
100
#define ntfs_log_warning(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_WARNING,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
106
#define ntfs_log_debug(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_DEBUG,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
107
#define ntfs_log_trace(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_TRACE,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
108
#define ntfs_log_enter(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_ENTER,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
109
#define ntfs_log_leave(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_LEAVE,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
65
int ntfs_log_redirect(const char *function, const char *file, int line,
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
93
#define ntfs_log_critical(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_CRITICAL,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
94
#define ntfs_log_error(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_ERROR,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
95
#define ntfs_log_info(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_INFO,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
96
#define ntfs_log_perror(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_PERROR,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
97
#define ntfs_log_progress(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_PROGRESS,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
98
#define ntfs_log_quiet(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_QUIET,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/libntfs/logging.h
99
#define ntfs_log_verbose(FORMAT, ARGS...) ntfs_log_redirect(__FUNCTION__,__FILE__,__LINE__,NTFS_LOG_LEVEL_VERBOSE,NULL,FORMAT,##ARGS)
src/add-ons/kernel/file_systems/ntfs/utils/utils.h
112
do { char _b[MAX_FMT]; ntfs_log_redirect(fn,fi,li,le,d, \