Lines Matching full:handler
101 …* :param pkgconf_error_handler_func_t error_handler: An optional error handler to use for loggi…
102 * :param void* error_handler_data: user data passed to optional error handler
105 …* :param pkgconf_environ_lookup_handler_func_t environ_lookup_handler: the lookup handler to us…
176 …* :param pkgconf_error_handler_func_t error_handler: An optional error handler to use for loggi…
177 * :param void* error_handler_data: user data passed to optional error handler
180 …* :param pkgconf_environ_lookup_handler_func_t environ_lookup_handler: the lookup handler to us…
361 * Report an error to a client-registered error handler.
365 * :return: true if the error handler processed the message, else false.
404 * Report an error to a client-registered warn handler.
408 * :return: true if the warn handler processed the message, else false.
447 * Report a message to a client-registered trace handler.
454 * :return: true if the trace handler processed the message, else false.
517 * The default pkgconf error handler.
625 * Returns the warning handler if one is set, else ``NULL``.
627 * :param pkgconf_client_t* client: The client object to get the warn handler from.
628 * :return: a function pointer to the warn handler or ``NULL``
641 * Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
643 * :param pkgconf_client_t* client: The client object to set the warn handler on.
644 * :param pkgconf_error_handler_func_t warn_handler: The warn handler to set.
645 * :param void* warn_handler_data: Optional data to associate with the warn handler.
656 PKGCONF_TRACE(client, "installing default warn handler"); in pkgconf_client_set_warn_handler()
666 * Returns the error handler if one is set, else ``NULL``.
668 * :param pkgconf_client_t* client: The client object to get the error handler from.
669 * :return: a function pointer to the error handler or ``NULL``
682 * Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
684 * :param pkgconf_client_t* client: The client object to set the error handler on.
685 * :param pkgconf_error_handler_func_t error_handler: The error handler to set.
686 * :param void* error_handler_data: Optional data to associate with the error handler.
697 PKGCONF_TRACE(client, "installing default error handler"); in pkgconf_client_set_error_handler()
707 * Returns the unveil handler if one is set, else ``NULL``.
709 * :param pkgconf_client_t* client: The client object to get the unveil handler from.
710 * :return: a function pointer to the error handler or ``NULL``
723 * Sets an unveil handler on a client object or uninstalls one if set to ``NULL``.
725 * :param pkgconf_client_t* client: The client object to set the error handler on.
726 * :param pkgconf_unveil_handler_func_t unveil_handler: The unveil handler to set.
736 PKGCONF_TRACE(client, "installing default unveil handler"); in pkgconf_client_set_unveil_handler()
747 * Returns the error handler if one is set, else ``NULL``.
749 * :param pkgconf_client_t* client: The client object to get the error handler from.
750 * :return: a function pointer to the error handler or ``NULL``
763 * Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
765 * :param pkgconf_client_t* client: The client object to set the error handler on.
766 * :param pkgconf_error_handler_func_t trace_handler: The error handler to set.
767 * :param void* trace_handler_data: Optional data to associate with the error handler.
779 PKGCONF_TRACE(client, "installing default trace handler"); in pkgconf_client_set_trace_handler()