lib/libcrypto/bio/bio_cb.c
148
b = (BIO *)bio->cb_arg;
lib/libcrypto/bio/bio_lib.c
299
bio->cb_arg = arg;
lib/libcrypto/bio/bio_lib.c
306
return bio->cb_arg;
lib/libcrypto/bio/bio_lib.c
808
new_bio->cb_arg = bio->cb_arg;
lib/libcrypto/bio/bio_local.h
83
char *cb_arg; /* first argument for the callback */
lib/libcrypto/bn/bn.h
185
void *cb_arg);
lib/libcrypto/bn/bn.h
189
void *cb_arg);
lib/libcrypto/bn/bn_lib.c
728
BN_GENCB_set_old(BN_GENCB *gencb, void (*cb)(int, int, void *), void *cb_arg)
lib/libcrypto/bn/bn_lib.c
732
gencb->arg = cb_arg;
lib/libcrypto/bn/bn_lib.c
738
BN_GENCB_set(BN_GENCB *gencb, int (*cb)(int, int, BN_GENCB *), void *cb_arg)
lib/libcrypto/bn/bn_lib.c
742
gencb->arg = cb_arg;
lib/libcrypto/dh/dh.h
164
void (*callback)(int,int,void *),void *cb_arg);
lib/libcrypto/dh/dh_gen.c
182
void (*callback)(int, int, void *), void *cb_arg)
lib/libcrypto/dh/dh_gen.c
190
BN_GENCB_set_old(&cb, callback, cb_arg);
lib/libcrypto/rsa/rsa.h
244
void (*callback)(int, int, void *), void *cb_arg);
lib/libcrypto/rsa/rsa_gen.c
243
void (*callback)(int, int, void *), void *cb_arg)
lib/libcrypto/rsa/rsa_gen.c
261
BN_GENCB_set_old(&cb, callback, cb_arg);
lib/libssl/ssl_pkt.c
636
ssl3_read_cb(void *buf, size_t n, void *cb_arg)
lib/libssl/ssl_pkt.c
638
SSL *s = cb_arg;
lib/libssl/tls13_handshake_msg.c
114
tls13_handshake_msg_read_cb(void *buf, size_t n, void *cb_arg)
lib/libssl/tls13_handshake_msg.c
116
struct tls13_record_layer *rl = cb_arg;
lib/libssl/tls13_internal.h
199
const struct tls13_record_layer_callbacks *callbacks, void *cb_arg);
lib/libssl/tls13_internal.h
202
const struct tls13_record_layer_callbacks *callbacks, void *cb_arg);
lib/libssl/tls13_internal.h
319
ssize_t tls13_phh_received_cb(void *cb_arg);
lib/libssl/tls13_internal.h
320
void tls13_phh_done_cb(void *cb_arg);
lib/libssl/tls13_lib.c
474
tls13_phh_received_cb(void *cb_arg)
lib/libssl/tls13_lib.c
477
struct tls13_ctx *ctx = cb_arg;
lib/libssl/tls13_lib.c
515
tls13_phh_done_cb(void *cb_arg)
lib/libssl/tls13_lib.c
517
struct tls13_ctx *ctx = cb_arg;
lib/libssl/tls13_record_layer.c
1063
rl->cb_arg)) <= 0)
lib/libssl/tls13_record_layer.c
1089
if ((ret = tls13_record_send(rl->wrec, rl->cb.wire_write, rl->cb_arg)) <= 0)
lib/libssl/tls13_record_layer.c
1132
return rl->cb.wire_flush(rl->cb_arg);
lib/libssl/tls13_record_layer.c
114
void *cb_arg;
lib/libssl/tls13_record_layer.c
1158
return rl->cb.handshake_read(buf, n, rl->cb_arg);
lib/libssl/tls13_record_layer.c
1168
return rl->cb.handshake_write(buf, n, rl->cb_arg);
lib/libssl/tls13_record_layer.c
1217
return rl->cb.alert_send(alert_desc, rl->cb_arg);
lib/libssl/tls13_record_layer.c
133
void *cb_arg)
lib/libssl/tls13_record_layer.c
150
tls13_record_layer_set_callbacks(rl, callbacks, cb_arg);
lib/libssl/tls13_record_layer.c
182
const struct tls13_record_layer_callbacks *callbacks, void *cb_arg)
lib/libssl/tls13_record_layer.c
185
rl->cb_arg = cb_arg;
lib/libssl/tls13_record_layer.c
330
rl->cb.alert_recv(alert_level, alert_desc, rl->cb_arg);
lib/libssl/tls13_record_layer.c
339
rl->cb.alert_sent(alert_level, alert_desc, rl->cb_arg);
lib/libssl/tls13_record_layer.c
396
rl->cb.phh_sent(rl->cb_arg);
lib/libssl/tls13_record_layer.c
509
rl->cb_arg);
lib/libssl/tls13_record_layer.c
521
rl->cb_arg);
lib/libssl/tls13_record_layer.c
823
if ((ret = tls13_record_recv(rl->rrec, rl->cb.wire_read, rl->cb_arg)) <= 0) {
lib/libssl/tls13_record_layer.c
938
ret = rl->cb.phh_recv(rl->cb_arg);
lib/libssl/tls_buffer.c
130
tls_read_cb read_cb, void *cb_arg)
lib/libssl/tls_buffer.c
145
buf->capacity - buf->len, cb_arg)) <= 0)
lib/libssl/tls_internal.h
66
tls_read_cb read_cb, void *cb_arg);
lib/libtls/tls.c
762
ctx->cb_arg = NULL;
lib/libtls/tls_bio_cb.c
108
rv = (ctx->write_cb)(ctx, buf, num, ctx->cb_arg);
lib/libtls/tls_bio_cb.c
126
rv = (ctx->read_cb)(ctx, buf, size, ctx->cb_arg);
lib/libtls/tls_bio_cb.c
139
void *cb_arg)
lib/libtls/tls_bio_cb.c
152
ctx->cb_arg = cb_arg;
lib/libtls/tls_client.c
437
tls_write_cb write_cb, void *cb_arg, const char *servername)
lib/libtls/tls_client.c
444
if (tls_set_cbs(ctx, read_cb, write_cb, cb_arg) != 0)
lib/libtls/tls_config.c
762
tls_config_set_sign_cb(struct tls_config *config, tls_sign_cb cb, void *cb_arg)
lib/libtls/tls_config.c
767
config->sign_cb_arg = cb_arg;
lib/libtls/tls_internal.h
209
void *cb_arg;
lib/libtls/tls_internal.h
262
tls_read_cb read_cb, tls_write_cb write_cb, void *cb_arg);
lib/libtls/tls_server.c
438
tls_read_cb read_cb, tls_write_cb write_cb, void *cb_arg)
lib/libtls/tls_server.c
445
if (tls_set_cbs(conn_ctx, read_cb, write_cb, cb_arg) != 0)
regress/lib/libssl/buffer/buffertest.c
37
read_cb(void *buf, size_t buflen, void *cb_arg)
regress/lib/libssl/buffer/buffertest.c
39
struct read_state *rs = cb_arg;
regress/lib/libssl/record/recordtest.c
75
read_cb(void *buf, size_t buflen, void *cb_arg)
regress/lib/libssl/record/recordtest.c
77
struct rw_state *rs = cb_arg;
regress/lib/libssl/record/recordtest.c
96
write_cb(const void *buf, size_t buflen, void *cb_arg)
regress/lib/libssl/record/recordtest.c
98
struct rw_state *ws = cb_arg;
regress/lib/libssl/ssl/ssltest.c
1412
const char *cb_arg = arg;
regress/lib/libssl/ssl/ssltest.c
1416
fprintf(stderr, "Arg is: %s\n", cb_arg);
regress/lib/libtls/signer/signertest.c
345
test_signer_tls_sign(void *cb_arg, const char *pubkey_hash,
regress/lib/libtls/signer/signertest.c
349
struct tls_signer *signer = cb_arg;
regress/lib/libtls/tls/tlstest.c
105
client_write(struct tls *ctx, const void *buf, size_t buflen, void *cb_arg)
regress/lib/libtls/tls/tlstest.c
112
server_read(struct tls *ctx, void *buf, size_t buflen, void *cb_arg)
regress/lib/libtls/tls/tlstest.c
119
server_write(struct tls *ctx, const void *buf, size_t buflen, void *cb_arg)
regress/lib/libtls/tls/tlstest.c
98
client_read(struct tls *ctx, void *buf, size_t buflen, void *cb_arg)
sbin/unwind/libunbound/libunbound/context.c
173
q->cb_arg = cbarg;
sbin/unwind/libunbound/libunbound/context.h
169
void* cb_arg;
sbin/unwind/libunbound/libunbound/libunbound.c
613
*cbarg = q->cb_arg;
sbin/unwind/libunbound/libunbound/libworker.c
673
void* cb_arg = q->cb_arg;
sbin/unwind/libunbound/libunbound/libworker.c
691
(*cb)(cb_arg, rcode, (buf?(void*)sldns_buffer_begin(buf):NULL),
sbin/unwind/libunbound/services/listen_dnsport.c
1542
comm_point_callback_type* cb, void *cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
1565
cb_arg, ports->socket);
sbin/unwind/libunbound/services/listen_dnsport.c
1573
front->udp_buff, cb, cb_arg, ports->socket,
sbin/unwind/libunbound/services/listen_dnsport.c
1581
ports->ftype, ports->pp2_enabled, cb, cb_arg,
sbin/unwind/libunbound/services/listen_dnsport.c
1590
ports->ftype, ports->pp2_enabled, cb, cb_arg,
sbin/unwind/libunbound/services/listen_dnsport.c
1619
cb_arg, ports->socket);
sbin/unwind/libunbound/services/listen_dnsport.c
2344
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
sbin/unwind/libunbound/services/listen_dnsport.c
2520
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
sbin/unwind/libunbound/services/listen_dnsport.c
2702
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
sbin/unwind/libunbound/services/listen_dnsport.c
2803
if((*h2_session->c->callback)(h2_session->c, h2_session->c->cb_arg,
sbin/unwind/libunbound/services/listen_dnsport.c
2815
const nghttp2_frame* frame, void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
2817
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
2902
const nghttp2_frame* frame, void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
2904
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
3029
void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
3032
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
3148
size_t len, void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
3150
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
4130
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo)) {
sbin/unwind/libunbound/services/listen_dnsport.h
223
comm_point_callback_type* cb, void *cb_arg);
sbin/unwind/libunbound/services/mesh.c
1115
(*cb->cb)(cb->cb_arg, LDNS_RCODE_SERVFAIL, NULL,
sbin/unwind/libunbound/services/mesh.c
1373
(*r->cb)(r->cb_arg, rcode, r->buf, sec_status_unchecked, NULL,
sbin/unwind/libunbound/services/mesh.c
1393
(*r->cb)(r->cb_arg, LDNS_RCODE_SERVFAIL, r->buf,
sbin/unwind/libunbound/services/mesh.c
1397
(*r->cb)(r->cb_arg, LDNS_RCODE_NOERROR, r->buf,
sbin/unwind/libunbound/services/mesh.c
1950
int mesh_state_del_cb(struct mesh_state* s, mesh_cb_func_type cb, void* cb_arg)
sbin/unwind/libunbound/services/mesh.c
1955
if(r->cb == cb && r->cb_arg == cb_arg) {
sbin/unwind/libunbound/services/mesh.c
1969
sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
sbin/unwind/libunbound/services/mesh.c
1979
r->cb_arg = cb_arg;
sbin/unwind/libunbound/services/mesh.c
2695
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg)
sbin/unwind/libunbound/services/mesh.c
2700
if(!mesh_state_del_cb(s, cb, cb_arg)) return;
sbin/unwind/libunbound/services/mesh.c
625
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru)
sbin/unwind/libunbound/services/mesh.c
679
if(!mesh_state_add_cb(s, edns, buf, cb, cb_arg, qid, qflags)) {
sbin/unwind/libunbound/services/mesh.h
265
typedef void (*mesh_cb_func_type)(void* cb_arg, int rcode, struct sldns_buffer*,
sbin/unwind/libunbound/services/mesh.h
287
void* cb_arg;
sbin/unwind/libunbound/services/mesh.h
349
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru);
sbin/unwind/libunbound/services/mesh.h
584
struct sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
sbin/unwind/libunbound/services/mesh.h
739
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg);
sbin/unwind/libunbound/services/outside_network.c
1297
((struct serviced_query*)w->cb_arg)->to_be_deleted = 1;
sbin/unwind/libunbound/services/outside_network.c
1517
(void)(*pend->cb)(outnet->unused_fds->cp, pend->cb_arg,
sbin/unwind/libunbound/services/outside_network.c
1600
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_NOERROR, reply_info);
sbin/unwind/libunbound/services/outside_network.c
1655
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_TIMEOUT, NULL);
sbin/unwind/libunbound/services/outside_network.c
2328
int timeout, comm_point_callback_type* cb, void* cb_arg)
sbin/unwind/libunbound/services/outside_network.c
2337
pend->cb_arg = cb_arg;
sbin/unwind/libunbound/services/outside_network.c
2543
w->cb_arg = callback_arg;
sbin/unwind/libunbound/services/outside_network.c
3139
(void)(*p->cb)(c, p->cb_arg, error, rep);
sbin/unwind/libunbound/services/outside_network.c
3604
cb->cb_arg = callback_arg;
sbin/unwind/libunbound/services/outside_network.c
3612
callback_list_remove(struct serviced_query* sq, void* cb_arg)
sbin/unwind/libunbound/services/outside_network.c
3616
if((*pp)->cb_arg == cb_arg) {
sbin/unwind/libunbound/services/outside_network.c
3625
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
sbin/unwind/libunbound/services/outside_network.c
3629
callback_list_remove(sq, cb_arg);
sbin/unwind/libunbound/services/outside_network.c
3730
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.c
3739
cb, cb_arg, NULL);
sbin/unwind/libunbound/services/outside_network.c
3806
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.c
3821
cp = comm_point_create_tcp_out(outnet->base, 65552, cb, cb_arg);
sbin/unwind/libunbound/services/outside_network.c
3881
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.c
3897
cp = comm_point_create_http_out(outnet->base, 65552, cb, cb_arg,
sbin/unwind/libunbound/services/outside_network.c
997
(void)(*w->cb)(c, w->cb_arg, error, reply_info);
sbin/unwind/libunbound/services/outside_network.h
375
void* cb_arg;
sbin/unwind/libunbound/services/outside_network.h
457
void* cb_arg;
sbin/unwind/libunbound/services/outside_network.h
481
void* cb_arg;
sbin/unwind/libunbound/services/outside_network.h
718
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg);
sbin/unwind/libunbound/services/outside_network.h
807
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.h
829
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.h
852
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/util/data/msgreply.c
1253
rcode, edns, &opt_list_out, repinfo, region, start_time, cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/data/msgreply.c
1317
cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/data/msgreply.c
1331
cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/data/msgreply.c
1344
response, cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/module.c
315
callback->cb_arg = cbarg;
sbin/unwind/libunbound/util/module.h
243
void* cb_arg;
sbin/unwind/libunbound/util/netevent.c
1111
if((*rep.c->callback)(rep.c, rep.c->cb_arg, NETEVENT_NOERROR, &rep)) {
sbin/unwind/libunbound/util/netevent.c
1185
if((*rep.c->callback)(rep.c, rep.c->cb_arg, NETEVENT_NOERROR, &rep)) {
sbin/unwind/libunbound/util/netevent.c
2965
(*b->start_accept)(b->cb_arg);
sbin/unwind/libunbound/util/netevent.c
3018
(*b->stop_accept)(b->cb_arg);
sbin/unwind/libunbound/util/netevent.c
309
b->cb_arg = arg;
sbin/unwind/libunbound/util/netevent.c
3359
if( (*c->callback)(c, c->cb_arg, NETEVENT_PKT_WRITTEN,
sbin/unwind/libunbound/util/netevent.c
3386
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
sbin/unwind/libunbound/util/netevent.c
4554
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4579
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4603
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4634
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4647
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4664
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4685
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4912
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
sbin/unwind/libunbound/util/netevent.c
4969
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
sbin/unwind/libunbound/util/netevent.c
4991
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
sbin/unwind/libunbound/util/netevent.c
5028
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &repinfo);
sbin/unwind/libunbound/util/netevent.c
5067
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
sbin/unwind/libunbound/util/netevent.c
5152
int32_t stream_id, uint32_t ATTR_UNUSED(error_code), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
5155
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/util/netevent.c
5166
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
5168
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/util/netevent.c
5504
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
5507
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/util/netevent.c
5691
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
5702
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
5714
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
5732
(void)(*c->callback)(c, c->cb_arg, NETEVENT_CLOSED,
sbin/unwind/libunbound/util/netevent.c
5751
(void)(*c->callback)(c, c->cb_arg, err, NULL);
sbin/unwind/libunbound/util/netevent.c
5796
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
5861
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
5937
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6033
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6132
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6252
c->cb_arg = NULL;
sbin/unwind/libunbound/util/netevent.c
6348
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6417
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6483
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6547
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6913
comm_timer_create(struct comm_base* base, void (*cb)(void*), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
6924
tm->super.cb_arg = cb_arg;
sbin/unwind/libunbound/util/netevent.c
6978
(*tm->callback)(tm->cb_arg);
sbin/unwind/libunbound/util/netevent.c
6996
void (*callback)(int, void*), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
7006
com->cb_arg = cb_arg;
sbin/unwind/libunbound/util/netevent.c
7019
(*comsig->callback)(sig, comsig->cb_arg);
sbin/unwind/libunbound/util/netevent.h
1006
size_t len, int flags, void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
1009
size_t len, int flags, void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
1012
uint32_t error_code, void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
132
void* cb_arg;
sbin/unwind/libunbound/util/netevent.h
451
void *cb_arg;
sbin/unwind/libunbound/util/netevent.h
465
void* cb_arg;
sbin/unwind/libunbound/util/netevent.h
482
void* cb_arg;
sbin/unwind/libunbound/util/netevent.h
795
void (*cb)(void*), void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
838
void (*callback)(int, void*), void* cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
111
(*table->delkeyfunc)(p->key, table->cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
112
(*table->deldatafunc)(d, table->cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
306
struct lruhash_entry* entry, void* data, void* cb_arg)
sbin/unwind/libunbound/util/storage/lruhash.c
318
if(cb_arg == NULL) cb_arg = table->cb_arg;
sbin/unwind/libunbound/util/storage/lruhash.c
339
(*table->delkeyfunc)(entry->key, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
342
(*table->deldatafunc)(found->data, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
357
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
358
(*table->deldatafunc)(d, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
418
(*table->delkeyfunc)(entry->key, table->cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
419
(*table->deldatafunc)(d, table->cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
437
(*table->delkeyfunc)(p->key, table->cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
438
(*table->deldatafunc)(d, table->cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
532
lruhash_update_space_used(struct lruhash* table, void* cb_arg, int diff_size)
sbin/unwind/libunbound/util/storage/lruhash.c
541
if(cb_arg == NULL) cb_arg = table->cb_arg;
sbin/unwind/libunbound/util/storage/lruhash.c
559
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
560
(*table->deldatafunc)(d, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
565
void lruhash_update_space_max(struct lruhash* table, void* cb_arg, size_t max)
sbin/unwind/libunbound/util/storage/lruhash.c
574
if(cb_arg == NULL) cb_arg = table->cb_arg;
sbin/unwind/libunbound/util/storage/lruhash.c
589
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
590
(*table->deldatafunc)(d, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
649
struct lruhash_entry* entry, void* data, void* cb_arg)
sbin/unwind/libunbound/util/storage/lruhash.c
661
if (cb_arg == NULL) cb_arg = table->cb_arg;
sbin/unwind/libunbound/util/storage/lruhash.c
698
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
699
(*table->deldatafunc)(d, cb_arg);
sbin/unwind/libunbound/util/storage/lruhash.c
76
table->cb_arg = arg;
sbin/unwind/libunbound/util/storage/lruhash.h
161
void* cb_arg;
sbin/unwind/libunbound/util/storage/lruhash.h
357
struct lruhash_entry* entry, void* data, void* cb_arg);
sbin/unwind/libunbound/util/storage/slabhash.c
170
void* cb_arg, int diff_size)
sbin/unwind/libunbound/util/storage/slabhash.c
172
lruhash_update_space_used(sl->array[slab_idx(sl, hash)], cb_arg,
sys/dev/fdt/ssdfb.c
719
void (*cb) (void *, int, int), void *cb_arg)
sys/dev/fdt/ssdfb.c
724
return rasops_show_screen(ri, cookie, waitok, cb, cb_arg);
sys/dev/pci/if_oce.c
1415
(*cq->cq_intr)(cq->cb_arg);
sys/dev/pci/if_oce.c
2026
cq->cb_arg = wq;
sys/dev/pci/if_oce.c
2130
cq->cb_arg = rq;
sys/dev/pci/if_oce.c
226
void * cb_arg;
sys/dev/pci/if_oce.c
2295
mq->cq->cb_arg = mq;
sys/kern/kern_watchdog.c
39
wdog_register(int (*cb)(void *, int), void *cb_arg)
sys/kern/kern_watchdog.c
45
wdog_ctl_cb_arg = cb_arg;
usr.bin/ssh/atomicio.c
117
if (cb != NULL && cb(cb_arg, 0) == -1) {
usr.bin/ssh/atomicio.c
150
if (cb != NULL && cb(cb_arg, (size_t)res) == -1) {
usr.bin/ssh/atomicio.c
44
int (*cb)(void *, size_t), void *cb_arg)
usr.bin/ssh/atomicio.c
59
if (cb != NULL && cb(cb_arg, 0) == -1) {
usr.bin/ssh/atomicio.c
74
if (cb != NULL && cb(cb_arg, (size_t)res) == -1) {
usr.bin/ssh/atomicio.c
95
int (*cb)(void *, size_t), void *cb_arg)
usr.sbin/bgpd/mrt.c
791
struct cb_arg *a = arg;
usr.sbin/bgpd/mrt.c
809
struct cb_arg arg;
usr.sbin/unbound/daemon/remote.c
8386
printq->client_cp->cb_arg = printq;
usr.sbin/unbound/dynlibmod/dynlibmod.c
219
return ((inplace_cb_reply_func_type*) cb_pair->cb)(qinfo, qstate, rep, rcode, edns, opt_list_out, repinfo, region, start_time, id, cb_pair->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
227
return ((inplace_cb_query_func_type*) cb_pair->cb)(qinfo, flags, qstate, addr, addrlen, zone, zonelen, region, id, cb_pair->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
233
return ((inplace_cb_edns_back_parsed_func_type*) cb_pair->cb)(qstate, id, cb_pair->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
239
return ((inplace_cb_query_response_func_type*) cb_pair->cb)(qstate, response, id, cb_pair->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
251
cb_pair->cb_arg = cbarg;
usr.sbin/unbound/dynlibmod/dynlibmod.c
276
free(temp->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.c
282
free(temp->cb_arg);
usr.sbin/unbound/dynlibmod/dynlibmod.h
97
void *cb_arg;
usr.sbin/unbound/libunbound/context.c
173
q->cb_arg = cbarg;
usr.sbin/unbound/libunbound/context.h
169
void* cb_arg;
usr.sbin/unbound/libunbound/libunbound.c
613
*cbarg = q->cb_arg;
usr.sbin/unbound/libunbound/libworker.c
673
void* cb_arg = q->cb_arg;
usr.sbin/unbound/libunbound/libworker.c
691
(*cb)(cb_arg, rcode, (buf?(void*)sldns_buffer_begin(buf):NULL),
usr.sbin/unbound/services/listen_dnsport.c
1542
comm_point_callback_type* cb, void *cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
1565
cb_arg, ports->socket);
usr.sbin/unbound/services/listen_dnsport.c
1573
front->udp_buff, cb, cb_arg, ports->socket,
usr.sbin/unbound/services/listen_dnsport.c
1581
ports->ftype, ports->pp2_enabled, cb, cb_arg,
usr.sbin/unbound/services/listen_dnsport.c
1590
ports->ftype, ports->pp2_enabled, cb, cb_arg,
usr.sbin/unbound/services/listen_dnsport.c
1619
cb_arg, ports->socket);
usr.sbin/unbound/services/listen_dnsport.c
2344
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
usr.sbin/unbound/services/listen_dnsport.c
2520
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
usr.sbin/unbound/services/listen_dnsport.c
2702
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
usr.sbin/unbound/services/listen_dnsport.c
2803
if((*h2_session->c->callback)(h2_session->c, h2_session->c->cb_arg,
usr.sbin/unbound/services/listen_dnsport.c
2815
const nghttp2_frame* frame, void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
2817
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
2902
const nghttp2_frame* frame, void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
2904
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
3029
void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
3032
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
3148
size_t len, void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
3150
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
4130
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo)) {
usr.sbin/unbound/services/listen_dnsport.h
223
comm_point_callback_type* cb, void *cb_arg);
usr.sbin/unbound/services/mesh.c
1115
(*cb->cb)(cb->cb_arg, LDNS_RCODE_SERVFAIL, NULL,
usr.sbin/unbound/services/mesh.c
1373
(*r->cb)(r->cb_arg, rcode, r->buf, sec_status_unchecked, NULL,
usr.sbin/unbound/services/mesh.c
1393
(*r->cb)(r->cb_arg, LDNS_RCODE_SERVFAIL, r->buf,
usr.sbin/unbound/services/mesh.c
1397
(*r->cb)(r->cb_arg, LDNS_RCODE_NOERROR, r->buf,
usr.sbin/unbound/services/mesh.c
1950
int mesh_state_del_cb(struct mesh_state* s, mesh_cb_func_type cb, void* cb_arg)
usr.sbin/unbound/services/mesh.c
1955
if(r->cb == cb && r->cb_arg == cb_arg) {
usr.sbin/unbound/services/mesh.c
1969
sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
usr.sbin/unbound/services/mesh.c
1979
r->cb_arg = cb_arg;
usr.sbin/unbound/services/mesh.c
2695
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg)
usr.sbin/unbound/services/mesh.c
2700
if(!mesh_state_del_cb(s, cb, cb_arg)) return;
usr.sbin/unbound/services/mesh.c
625
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru)
usr.sbin/unbound/services/mesh.c
679
if(!mesh_state_add_cb(s, edns, buf, cb, cb_arg, qid, qflags)) {
usr.sbin/unbound/services/mesh.h
265
typedef void (*mesh_cb_func_type)(void* cb_arg, int rcode, struct sldns_buffer*,
usr.sbin/unbound/services/mesh.h
287
void* cb_arg;
usr.sbin/unbound/services/mesh.h
349
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru);
usr.sbin/unbound/services/mesh.h
584
struct sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
usr.sbin/unbound/services/mesh.h
739
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg);
usr.sbin/unbound/services/outside_network.c
1297
((struct serviced_query*)w->cb_arg)->to_be_deleted = 1;
usr.sbin/unbound/services/outside_network.c
1517
(void)(*pend->cb)(outnet->unused_fds->cp, pend->cb_arg,
usr.sbin/unbound/services/outside_network.c
1600
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_NOERROR, reply_info);
usr.sbin/unbound/services/outside_network.c
1655
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_TIMEOUT, NULL);
usr.sbin/unbound/services/outside_network.c
2328
int timeout, comm_point_callback_type* cb, void* cb_arg)
usr.sbin/unbound/services/outside_network.c
2337
pend->cb_arg = cb_arg;
usr.sbin/unbound/services/outside_network.c
2543
w->cb_arg = callback_arg;
usr.sbin/unbound/services/outside_network.c
3139
(void)(*p->cb)(c, p->cb_arg, error, rep);
usr.sbin/unbound/services/outside_network.c
3604
cb->cb_arg = callback_arg;
usr.sbin/unbound/services/outside_network.c
3612
callback_list_remove(struct serviced_query* sq, void* cb_arg)
usr.sbin/unbound/services/outside_network.c
3616
if((*pp)->cb_arg == cb_arg) {
usr.sbin/unbound/services/outside_network.c
3625
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
usr.sbin/unbound/services/outside_network.c
3629
callback_list_remove(sq, cb_arg);
usr.sbin/unbound/services/outside_network.c
3730
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.c
3739
cb, cb_arg, NULL);
usr.sbin/unbound/services/outside_network.c
3806
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.c
3821
cp = comm_point_create_tcp_out(outnet->base, 65552, cb, cb_arg);
usr.sbin/unbound/services/outside_network.c
3881
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.c
3897
cp = comm_point_create_http_out(outnet->base, 65552, cb, cb_arg,
usr.sbin/unbound/services/outside_network.c
997
(void)(*w->cb)(c, w->cb_arg, error, reply_info);
usr.sbin/unbound/services/outside_network.h
375
void* cb_arg;
usr.sbin/unbound/services/outside_network.h
457
void* cb_arg;
usr.sbin/unbound/services/outside_network.h
481
void* cb_arg;
usr.sbin/unbound/services/outside_network.h
718
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg);
usr.sbin/unbound/services/outside_network.h
807
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.h
829
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.h
852
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/dohclient.c
129
void* ATTR_UNUSED(cb_arg))
usr.sbin/unbound/testcode/dohclient.c
256
uint8_t* buf, size_t len, int ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/testcode/dohclient.c
258
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/testcode/dohclient.c
306
const uint8_t* buf, size_t len, int ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/testcode/dohclient.c
308
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/testcode/dohclient.c
338
nghttp2_error_code ATTR_UNUSED(error_code), void *cb_arg)
usr.sbin/unbound/testcode/dohclient.c
340
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/testcode/dohclient.c
357
size_t len, void* cb_arg)
usr.sbin/unbound/testcode/dohclient.c
359
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/testcode/dohclient.c
378
const nghttp2_frame *frame, void* ATTR_UNUSED(cb_arg))
usr.sbin/unbound/testcode/dohclient.c
407
uint8_t ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/testcode/dohclient.c
410
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1066
void (*callback)(int, void*), void* cb_arg)
usr.sbin/unbound/testcode/fake_event.c
1070
runtime->sig_cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1187
pend->cb_arg = callback_arg;
usr.sbin/unbound/testcode/fake_event.c
1237
pend->cb_arg = callback_arg;
usr.sbin/unbound/testcode/fake_event.c
1369
pend->cb_arg = callback_arg;
usr.sbin/unbound/testcode/fake_event.c
1401
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
usr.sbin/unbound/testcode/fake_event.c
1409
log_assert(p->cb_arg == cb_arg);
usr.sbin/unbound/testcode/fake_event.c
1410
(void)cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1659
void (*cb)(void*), void* cb_arg)
usr.sbin/unbound/testcode/fake_event.c
1666
t->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1787
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/fake_event.c
1799
fc->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1806
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/fake_event.c
1825
fc->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1859
pend->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1879
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/fake_event.c
1893
fc->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1950
pend->cb_arg = fc->cb_arg;
usr.sbin/unbound/testcode/fake_event.c
378
void* cb_arg = pend->cb_arg;
usr.sbin/unbound/testcode/fake_event.c
404
if((*cb)(&c, cb_arg, NETEVENT_NOERROR, &repinfo)) {
usr.sbin/unbound/testcode/fake_event.c
482
if((*runtime->callback_query)(repinfo.c, runtime->cb_arg,
usr.sbin/unbound/testcode/fake_event.c
501
void* cb_arg;
usr.sbin/unbound/testcode/fake_event.c
506
cb_arg = p->cb_arg;
usr.sbin/unbound/testcode/fake_event.c
531
if((*cb)(&c, cb_arg, error, &repinfo)) {
usr.sbin/unbound/testcode/fake_event.c
583
(*t->cb)(t->cb_arg);
usr.sbin/unbound/testcode/fake_event.c
91
void* cb_arg;
usr.sbin/unbound/testcode/fake_event.c
963
comm_point_callback_type* cb, void *cb_arg)
usr.sbin/unbound/testcode/fake_event.c
976
runtime->cb_arg = cb_arg;
usr.sbin/unbound/testcode/replay.h
307
void *cb_arg;
usr.sbin/unbound/testcode/replay.h
357
void* cb_arg;
usr.sbin/unbound/testcode/replay.h
400
void* cb_arg;
usr.sbin/unbound/util/data/msgreply.c
1253
rcode, edns, &opt_list_out, repinfo, region, start_time, cb->id, cb->cb_arg);
usr.sbin/unbound/util/data/msgreply.c
1317
cb->id, cb->cb_arg);
usr.sbin/unbound/util/data/msgreply.c
1331
cb->id, cb->cb_arg);
usr.sbin/unbound/util/data/msgreply.c
1344
response, cb->id, cb->cb_arg);
usr.sbin/unbound/util/module.c
315
callback->cb_arg = cbarg;
usr.sbin/unbound/util/module.h
243
void* cb_arg;
usr.sbin/unbound/util/netevent.c
1111
if((*rep.c->callback)(rep.c, rep.c->cb_arg, NETEVENT_NOERROR, &rep)) {
usr.sbin/unbound/util/netevent.c
1185
if((*rep.c->callback)(rep.c, rep.c->cb_arg, NETEVENT_NOERROR, &rep)) {
usr.sbin/unbound/util/netevent.c
2965
(*b->start_accept)(b->cb_arg);
usr.sbin/unbound/util/netevent.c
3018
(*b->stop_accept)(b->cb_arg);
usr.sbin/unbound/util/netevent.c
309
b->cb_arg = arg;
usr.sbin/unbound/util/netevent.c
3359
if( (*c->callback)(c, c->cb_arg, NETEVENT_PKT_WRITTEN,
usr.sbin/unbound/util/netevent.c
3386
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
usr.sbin/unbound/util/netevent.c
4554
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4579
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4603
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4634
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4647
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4664
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4685
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4912
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
usr.sbin/unbound/util/netevent.c
4969
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
usr.sbin/unbound/util/netevent.c
4991
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
usr.sbin/unbound/util/netevent.c
5028
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &repinfo);
usr.sbin/unbound/util/netevent.c
5067
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
usr.sbin/unbound/util/netevent.c
5152
int32_t stream_id, uint32_t ATTR_UNUSED(error_code), void* cb_arg)
usr.sbin/unbound/util/netevent.c
5155
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/util/netevent.c
5166
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/util/netevent.c
5168
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/util/netevent.c
5504
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/util/netevent.c
5507
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/util/netevent.c
5691
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
5702
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
5714
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
5732
(void)(*c->callback)(c, c->cb_arg, NETEVENT_CLOSED,
usr.sbin/unbound/util/netevent.c
5751
(void)(*c->callback)(c, c->cb_arg, err, NULL);
usr.sbin/unbound/util/netevent.c
5796
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
5861
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
5937
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6033
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6132
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6252
c->cb_arg = NULL;
usr.sbin/unbound/util/netevent.c
6348
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6417
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6483
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6547
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6913
comm_timer_create(struct comm_base* base, void (*cb)(void*), void* cb_arg)
usr.sbin/unbound/util/netevent.c
6924
tm->super.cb_arg = cb_arg;
usr.sbin/unbound/util/netevent.c
6978
(*tm->callback)(tm->cb_arg);
usr.sbin/unbound/util/netevent.c
6996
void (*callback)(int, void*), void* cb_arg)
usr.sbin/unbound/util/netevent.c
7006
com->cb_arg = cb_arg;
usr.sbin/unbound/util/netevent.c
7019
(*comsig->callback)(sig, comsig->cb_arg);
usr.sbin/unbound/util/netevent.h
1006
size_t len, int flags, void* cb_arg);
usr.sbin/unbound/util/netevent.h
1009
size_t len, int flags, void* cb_arg);
usr.sbin/unbound/util/netevent.h
1012
uint32_t error_code, void* cb_arg);
usr.sbin/unbound/util/netevent.h
132
void* cb_arg;
usr.sbin/unbound/util/netevent.h
451
void *cb_arg;
usr.sbin/unbound/util/netevent.h
465
void* cb_arg;
usr.sbin/unbound/util/netevent.h
482
void* cb_arg;
usr.sbin/unbound/util/netevent.h
795
void (*cb)(void*), void* cb_arg);
usr.sbin/unbound/util/netevent.h
838
void (*callback)(int, void*), void* cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
111
(*table->delkeyfunc)(p->key, table->cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
112
(*table->deldatafunc)(d, table->cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
306
struct lruhash_entry* entry, void* data, void* cb_arg)
usr.sbin/unbound/util/storage/lruhash.c
318
if(cb_arg == NULL) cb_arg = table->cb_arg;
usr.sbin/unbound/util/storage/lruhash.c
339
(*table->delkeyfunc)(entry->key, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
342
(*table->deldatafunc)(found->data, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
357
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
358
(*table->deldatafunc)(d, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
418
(*table->delkeyfunc)(entry->key, table->cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
419
(*table->deldatafunc)(d, table->cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
437
(*table->delkeyfunc)(p->key, table->cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
438
(*table->deldatafunc)(d, table->cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
532
lruhash_update_space_used(struct lruhash* table, void* cb_arg, int diff_size)
usr.sbin/unbound/util/storage/lruhash.c
541
if(cb_arg == NULL) cb_arg = table->cb_arg;
usr.sbin/unbound/util/storage/lruhash.c
559
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
560
(*table->deldatafunc)(d, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
565
void lruhash_update_space_max(struct lruhash* table, void* cb_arg, size_t max)
usr.sbin/unbound/util/storage/lruhash.c
574
if(cb_arg == NULL) cb_arg = table->cb_arg;
usr.sbin/unbound/util/storage/lruhash.c
589
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
590
(*table->deldatafunc)(d, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
649
struct lruhash_entry* entry, void* data, void* cb_arg)
usr.sbin/unbound/util/storage/lruhash.c
661
if (cb_arg == NULL) cb_arg = table->cb_arg;
usr.sbin/unbound/util/storage/lruhash.c
698
(*table->delkeyfunc)(reclaimlist->key, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
699
(*table->deldatafunc)(d, cb_arg);
usr.sbin/unbound/util/storage/lruhash.c
76
table->cb_arg = arg;
usr.sbin/unbound/util/storage/lruhash.h
161
void* cb_arg;
usr.sbin/unbound/util/storage/lruhash.h
357
struct lruhash_entry* entry, void* data, void* cb_arg);
usr.sbin/unbound/util/storage/slabhash.c
170
void* cb_arg, int diff_size)
usr.sbin/unbound/util/storage/slabhash.c
172
lruhash_update_space_used(sl->array[slab_idx(sl, hash)], cb_arg,
usr.sbin/vmd/atomicio.c
143
if (cb != NULL && cb(cb_arg, (size_t)res) == -1) {
usr.sbin/vmd/atomicio.c
47
int (*cb)(void *, size_t), void *cb_arg)
usr.sbin/vmd/atomicio.c
72
if (cb != NULL && cb(cb_arg, (size_t)res) == -1) {
usr.sbin/vmd/atomicio.c
93
int (*cb)(void *, size_t), void *cb_arg)