Lines Matching defs:function
75 * \param func The local error handler function
76 * \retval Previous local error handler function
86 * \brief The default error handler function.
89 * \param function The function name.
94 * If a local error function has been installed for the current thread by
98 static void snd_lib_error_default(const char *file, int line, const char *function, int err, const char *fmt, ...)
103 local_error(file, line, function, err, fmt, arg);
107 fprintf(stderr, "ALSA lib %s:%i:(%s) ", file, line, function);
117 * Pointer to the error handler function.
124 * \param handler The pointer to the new error handler function.
126 * This function sets a new error handler, or (if \c handler is \c NULL)
152 static void snd_err_msg_default(const char *file, int line, const char *function, int err, const char *fmt, ...)
161 fprintf(stderr, "ALSA lib %s:%i:(%s) ", file, line, function);