• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/

Lines Matching defs:function

282  * @handler:	function to perform the logging
301 * @function: Function in which the log line occurred
309 * This is just a redirector function. The arguments are simply passed to the
316 int ntfs_log_redirect(const char *function, const char *file,
328 ret = ntfs_log.handler(function, file, line, level, data, format, args);
338 * @function: Function in which the log line occurred
358 int ntfs_log_handler_syslog(const char *function __attribute__((unused)),
393 * @function: Function in which the log line occurred
412 int ntfs_log_handler_fprintf(const char *function, const char *file,
449 if ((ntfs_log.flags & NTFS_LOG_FLAG_FUNCTION) || /* Source function */
451 ret += fprintf(stream, "%s(): ", function);
469 * @function: Function in which the log line occurred
482 int ntfs_log_handler_null(const char *function __attribute__((unused)), const char *file __attribute__((unused)),
491 * @function: Function in which the log line occurred
504 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
510 int ntfs_log_handler_stdout(const char *function, const char *file,
516 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
521 * @function: Function in which the log line occurred
533 * If @data is NULL, the function ntfs_log_get_stream will be called
535 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
541 int ntfs_log_handler_outerr(const char *function, const char *file,
547 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
552 * @function: Function in which the log line occurred
565 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
571 int ntfs_log_handler_stderr(const char *function, const char *file,
577 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);