Lines Matching full:handler

95 …*    :param pkgconf_error_handler_func_t error_handler: An optional error handler to use for loggi…
96 * :param void* error_handler_data: user data passed to optional error handler
163 …* :param pkgconf_error_handler_func_t error_handler: An optional error handler to use for loggi…
164 * :param void* error_handler_data: user data passed to optional error handler
336 * Report an error to a client-registered error handler.
340 * :return: true if the error handler processed the message, else false.
379 * Report an error to a client-registered warn handler.
383 * :return: true if the warn handler processed the message, else false.
422 * Report a message to a client-registered trace handler.
429 * :return: true if the trace handler processed the message, else false.
486 * The default pkgconf error handler.
594 * Returns the warning handler if one is set, else ``NULL``.
596 * :param pkgconf_client_t* client: The client object to get the warn handler from.
597 * :return: a function pointer to the warn handler or ``NULL``
610 * Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
612 * :param pkgconf_client_t* client: The client object to set the warn handler on.
613 * :param pkgconf_error_handler_func_t warn_handler: The warn handler to set.
614 * :param void* warn_handler_data: Optional data to associate with the warn handler.
625 PKGCONF_TRACE(client, "installing default warn handler"); in pkgconf_client_set_warn_handler()
635 * Returns the error handler if one is set, else ``NULL``.
637 * :param pkgconf_client_t* client: The client object to get the error handler from.
638 * :return: a function pointer to the error handler or ``NULL``
651 * Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
653 * :param pkgconf_client_t* client: The client object to set the error handler on.
654 * :param pkgconf_error_handler_func_t error_handler: The error handler to set.
655 * :param void* error_handler_data: Optional data to associate with the error handler.
666 PKGCONF_TRACE(client, "installing default error handler"); in pkgconf_client_set_error_handler()
676 * Returns the unveil handler if one is set, else ``NULL``.
678 * :param pkgconf_client_t* client: The client object to get the unveil handler from.
679 * :return: a function pointer to the error handler or ``NULL``
692 * Sets an unveil handler on a client object or uninstalls one if set to ``NULL``.
694 * :param pkgconf_client_t* client: The client object to set the error handler on.
695 * :param pkgconf_unveil_handler_func_t unveil_handler: The unveil handler to set.
705 PKGCONF_TRACE(client, "installing default unveil handler"); in pkgconf_client_set_unveil_handler()
716 * Returns the error handler if one is set, else ``NULL``.
718 * :param pkgconf_client_t* client: The client object to get the error handler from.
719 * :return: a function pointer to the error handler or ``NULL``
732 * Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
734 * :param pkgconf_client_t* client: The client object to set the error handler on.
735 * :param pkgconf_error_handler_func_t trace_handler: The error handler to set.
736 * :param void* trace_handler_data: Optional data to associate with the error handler.
748 PKGCONF_TRACE(client, "installing default trace handler"); in pkgconf_client_set_trace_handler()