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
303 * @file: File in which the log line occurred
317 int ntfs_log_redirect(const char *function, const char *file,
329 ret = ntfs_log.handler(function, file, line, level, data, format, args);
340 * @file: File in which the log line occurred
360 const char *file __attribute__((unused)),
418 * @file: File in which the log line occurred
436 int ntfs_log_handler_fprintf(const char *function, const char *file,
461 (strchr(file, PATH_SEP))) /* Abbreviate the filename */
462 file = strrchr(file, PATH_SEP) + 1;
468 ret += fprintf(stream, "%s ", file);
494 * @file: File in which the log line occurred
506 int ntfs_log_handler_null(const char *function __attribute__((unused)), const char *file __attribute__((unused)),
516 * @file: File in which the log line occurred
534 int ntfs_log_handler_stdout(const char *function, const char *file,
540 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
546 * @file: File in which the log line occurred
565 int ntfs_log_handler_outerr(const char *function, const char *file,
571 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
577 * @file: File in which the log line occurred
595 int ntfs_log_handler_stderr(const char *function, const char *file,
601 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);