Lines Matching refs:handler
26 …:param pkgconf_error_handler_func_t error_handler: An optional error handler to use for logging er…
27 :param void* error_handler_data: user data passed to optional error handler
35 …:param pkgconf_error_handler_func_t error_handler: An optional error handler to use for logging er…
36 :param void* error_handler_data: user data passed to optional error handler
95 Report an error to a client-registered error handler.
99 :return: true if the error handler processed the message, else false.
104 Report an error to a client-registered warn handler.
108 :return: true if the warn handler processed the message, else false.
113 Report a message to a client-registered trace handler.
120 :return: true if the trace handler processed the message, else false.
125 The default pkgconf error handler.
168 Returns the warning handler if one is set, else ``NULL``.
170 :param pkgconf_client_t* client: The client object to get the warn handler from.
171 :return: a function pointer to the warn handler or ``NULL``
175 Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
177 :param pkgconf_client_t* client: The client object to set the warn handler on.
178 :param pkgconf_error_handler_func_t warn_handler: The warn handler to set.
179 :param void* warn_handler_data: Optional data to associate with the warn handler.
184 Returns the error handler if one is set, else ``NULL``.
186 :param pkgconf_client_t* client: The client object to get the error handler from.
187 :return: a function pointer to the error handler or ``NULL``
191 Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
193 :param pkgconf_client_t* client: The client object to set the error handler on.
194 :param pkgconf_error_handler_func_t error_handler: The error handler to set.
195 :param void* error_handler_data: Optional data to associate with the error handler.
200 Returns the error handler if one is set, else ``NULL``.
202 :param pkgconf_client_t* client: The client object to get the error handler from.
203 :return: a function pointer to the error handler or ``NULL``
207 Sets a warn handler on a client object or uninstalls one if set to ``NULL``.
209 :param pkgconf_client_t* client: The client object to set the error handler on.
210 :param pkgconf_error_handler_func_t trace_handler: The error handler to set.
211 :param void* trace_handler_data: Optional data to associate with the error handler.