Lines Matching defs:function
283 * @handler: function to perform the logging
302 * @function: Function in which the log line occurred
310 * This is just a redirector function. The arguments are simply passed to the
317 int ntfs_log_redirect(const char *function, const char *file,
329 ret = ntfs_log.handler(function, file, line, level, data, format, args);
339 * @function: Function in which the log line occurred
359 int ntfs_log_handler_syslog(const char *function __attribute__((unused)),
417 * @function: Function in which the log line occurred
436 int ntfs_log_handler_fprintf(const char *function, const char *file,
473 if ((ntfs_log.flags & NTFS_LOG_FLAG_FUNCTION) || /* Source function */
475 ret += fprintf(stream, "%s(): ", function);
493 * @function: Function in which the log line occurred
506 int ntfs_log_handler_null(const char *function __attribute__((unused)), const char *file __attribute__((unused)),
515 * @function: Function in which the log line occurred
528 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
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);
545 * @function: Function in which the log line occurred
557 * If @data is NULL, the function ntfs_log_get_stream will be called
559 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
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);
576 * @function: Function in which the log line occurred
589 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
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);