Symbol: error_handler
usr.bin/pkgconf/cli/main.c
1155
pkgconf_client_set_trace_handler(&pkg_client, error_handler, NULL);
usr.bin/pkgconf/cli/main.c
1239
pkgconf_client_init(&pkg_client, error_handler, NULL, personality);
usr.bin/pkgconf/cli/main.c
1261
pkgconf_client_set_warn_handler(&pkg_client, error_handler, NULL);
usr.bin/pkgconf/cli/main.c
1265
pkgconf_client_set_trace_handler(&pkg_client, error_handler, NULL);
usr.bin/pkgconf/libpkgconf/client.c
109
pkgconf_client_set_error_handler(client, error_handler, error_handler_data);
usr.bin/pkgconf/libpkgconf/client.c
162
pkgconf_client_new(pkgconf_error_handler_func_t error_handler, void *error_handler_data, const pkgconf_cross_personality_t *personality)
usr.bin/pkgconf/libpkgconf/client.c
165
pkgconf_client_init(out, error_handler, error_handler_data, personality);
usr.bin/pkgconf/libpkgconf/client.c
328
return client->error_handler(errbuf, client, client->error_handler_data);
usr.bin/pkgconf/libpkgconf/client.c
546
return client->error_handler;
usr.bin/pkgconf/libpkgconf/client.c
562
pkgconf_client_set_error_handler(pkgconf_client_t *client, pkgconf_error_handler_func_t error_handler, void *error_handler_data)
usr.bin/pkgconf/libpkgconf/client.c
564
client->error_handler = error_handler;
usr.bin/pkgconf/libpkgconf/client.c
567
if (client->error_handler == NULL)
usr.bin/pkgconf/libpkgconf/client.c
570
client->error_handler = pkgconf_default_error_handler;
usr.bin/pkgconf/libpkgconf/client.c
96
pkgconf_client_init(pkgconf_client_t *client, pkgconf_error_handler_func_t error_handler, void *error_handler_data, const pkgconf_cross_personality_t *personality)
usr.bin/pkgconf/libpkgconf/client.c
99
client->error_handler = error_handler;
usr.bin/pkgconf/libpkgconf/libpkgconf.h
207
pkgconf_error_handler_func_t error_handler;
usr.bin/pkgconf/libpkgconf/libpkgconf.h
244
PKGCONF_API void pkgconf_client_init(pkgconf_client_t *client, pkgconf_error_handler_func_t error_handler, void *error_handler_data, const pkgconf_cross_personality_t *personality);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
245
PKGCONF_API pkgconf_client_t * pkgconf_client_new(pkgconf_error_handler_func_t error_handler, void *error_handler_data, const pkgconf_cross_personality_t *personality);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
259
PKGCONF_API void pkgconf_client_set_error_handler(pkgconf_client_t *client, pkgconf_error_handler_func_t error_handler, void *error_handler_data);