Lines Matching defs:file

8  * This program/include file is free software; you can redistribute it and/or
13 * This program/include file is distributed in the hope that it will be
20 * distribution in the file COPYING); if not, write to the Free Software
305 * @file: File in which the log line occurred
319 int ntfs_log_redirect(const char *function, const char *file,
331 ret = ntfs_log.handler(function, file, line, level, data, format, args);
342 * @file: File in which the log line occurred
362 const char *file __attribute__((unused)),
426 * @file: File in which the log line occurred
444 int ntfs_log_handler_fprintf(const char *function, const char *file,
475 (strchr(file, PATH_SEP))) /* Abbreviate the filename */
476 file = strrchr(file, PATH_SEP) + 1;
482 ret += fprintf(stream, "%s ", file);
517 * @file: File in which the log line occurred
529 int ntfs_log_handler_null(const char *function __attribute__((unused)), const char *file __attribute__((unused)),
539 * @file: File in which the log line occurred
557 int ntfs_log_handler_stdout(const char *function, const char *file,
565 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
571 * @file: File in which the log line occurred
590 int ntfs_log_handler_outerr(const char *function, const char *file,
598 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
604 * @file: File in which the log line occurred
622 int ntfs_log_handler_stderr(const char *function, const char *file,
630 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);