Lines Matching refs:function
12 * @function: name of function outputting the warning
23 * @function is the name of the function from which __ntfs_warning is being
27 * as this provides the @function parameter automatically.
29 void __ntfs_warning(const char *function, const struct super_block *sb,
40 if (function)
41 flen = strlen(function);
47 sb->s_id, flen ? function : "", &vaf);
49 pr_warn("%s(): %pV\n", flen ? function : "", &vaf);
55 * @function: name of function outputting the error
66 * @function is the name of the function from which __ntfs_error is being
70 * as this provides the @function parameter automatically.
72 void __ntfs_error(const char *function, const struct super_block *sb,
83 if (function)
84 flen = strlen(function);
90 sb->s_id, flen ? function : "", &vaf);
92 pr_err("%s(): %pV\n", flen ? function : "", &vaf);
101 void __ntfs_debug(const char *file, int line, const char *function,
110 if (function)
111 flen = strlen(function);
115 pr_debug("(%s, %d): %s(): %pV", file, line, flen ? function : "", &vaf);