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
664
void* cb_arg = q->cb_arg;
sbin/unwind/libunbound/libunbound/libworker.c
682
(*cb)(cb_arg, rcode, (buf?(void*)sldns_buffer_begin(buf):NULL),
sbin/unwind/libunbound/services/listen_dnsport.c
1543
comm_point_callback_type* cb, void *cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
1566
cb_arg, ports->socket);
sbin/unwind/libunbound/services/listen_dnsport.c
1574
front->udp_buff, cb, cb_arg, ports->socket,
sbin/unwind/libunbound/services/listen_dnsport.c
1582
ports->ftype, ports->pp2_enabled, cb, cb_arg,
sbin/unwind/libunbound/services/listen_dnsport.c
1591
ports->ftype, ports->pp2_enabled, cb, cb_arg,
sbin/unwind/libunbound/services/listen_dnsport.c
1620
cb_arg, ports->socket);
sbin/unwind/libunbound/services/listen_dnsport.c
2357
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
sbin/unwind/libunbound/services/listen_dnsport.c
2533
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
sbin/unwind/libunbound/services/listen_dnsport.c
2715
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
sbin/unwind/libunbound/services/listen_dnsport.c
2816
if((*h2_session->c->callback)(h2_session->c, h2_session->c->cb_arg,
sbin/unwind/libunbound/services/listen_dnsport.c
2828
const nghttp2_frame* frame, void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
2830
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
2916
const nghttp2_frame* frame, void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
2918
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
3043
void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
3046
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
3162
size_t len, void* cb_arg)
sbin/unwind/libunbound/services/listen_dnsport.c
3164
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/services/listen_dnsport.c
4081
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo)) {
sbin/unwind/libunbound/services/listen_dnsport.h
221
comm_point_callback_type* cb, void *cb_arg);
sbin/unwind/libunbound/services/mesh.c
1080
(*cb->cb)(cb->cb_arg, LDNS_RCODE_SERVFAIL, NULL,
sbin/unwind/libunbound/services/mesh.c
1337
(*r->cb)(r->cb_arg, rcode, r->buf, sec_status_unchecked, NULL,
sbin/unwind/libunbound/services/mesh.c
1357
(*r->cb)(r->cb_arg, LDNS_RCODE_SERVFAIL, r->buf,
sbin/unwind/libunbound/services/mesh.c
1361
(*r->cb)(r->cb_arg, LDNS_RCODE_NOERROR, r->buf,
sbin/unwind/libunbound/services/mesh.c
1893
int mesh_state_del_cb(struct mesh_state* s, mesh_cb_func_type cb, void* cb_arg)
sbin/unwind/libunbound/services/mesh.c
1898
if(r->cb == cb && r->cb_arg == cb_arg) {
sbin/unwind/libunbound/services/mesh.c
1912
sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
sbin/unwind/libunbound/services/mesh.c
1922
r->cb_arg = cb_arg;
sbin/unwind/libunbound/services/mesh.c
2611
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg)
sbin/unwind/libunbound/services/mesh.c
2616
if(!mesh_state_del_cb(s, cb, cb_arg)) return;
sbin/unwind/libunbound/services/mesh.c
601
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru)
sbin/unwind/libunbound/services/mesh.c
655
if(!mesh_state_add_cb(s, edns, buf, cb, cb_arg, qid, qflags)) {
sbin/unwind/libunbound/services/mesh.h
257
typedef void (*mesh_cb_func_type)(void* cb_arg, int rcode, struct sldns_buffer*,
sbin/unwind/libunbound/services/mesh.h
279
void* cb_arg;
sbin/unwind/libunbound/services/mesh.h
341
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru);
sbin/unwind/libunbound/services/mesh.h
571
struct sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
sbin/unwind/libunbound/services/mesh.h
724
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg);
sbin/unwind/libunbound/services/outside_network.c
1249
((struct serviced_query*)w->cb_arg)->to_be_deleted = 1;
sbin/unwind/libunbound/services/outside_network.c
1469
(void)(*pend->cb)(outnet->unused_fds->cp, pend->cb_arg,
sbin/unwind/libunbound/services/outside_network.c
1552
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_NOERROR, reply_info);
sbin/unwind/libunbound/services/outside_network.c
1607
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_TIMEOUT, NULL);
sbin/unwind/libunbound/services/outside_network.c
2275
int timeout, comm_point_callback_type* cb, void* cb_arg)
sbin/unwind/libunbound/services/outside_network.c
2284
pend->cb_arg = cb_arg;
sbin/unwind/libunbound/services/outside_network.c
2490
w->cb_arg = callback_arg;
sbin/unwind/libunbound/services/outside_network.c
3077
(void)(*p->cb)(c, p->cb_arg, error, rep);
sbin/unwind/libunbound/services/outside_network.c
3542
cb->cb_arg = callback_arg;
sbin/unwind/libunbound/services/outside_network.c
3550
callback_list_remove(struct serviced_query* sq, void* cb_arg)
sbin/unwind/libunbound/services/outside_network.c
3554
if((*pp)->cb_arg == cb_arg) {
sbin/unwind/libunbound/services/outside_network.c
3563
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
sbin/unwind/libunbound/services/outside_network.c
3567
callback_list_remove(sq, cb_arg);
sbin/unwind/libunbound/services/outside_network.c
3655
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.c
3664
cb, cb_arg, NULL);
sbin/unwind/libunbound/services/outside_network.c
3731
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.c
3746
cp = comm_point_create_tcp_out(outnet->base, 65552, cb, cb_arg);
sbin/unwind/libunbound/services/outside_network.c
3806
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.c
3822
cp = comm_point_create_http_out(outnet->base, 65552, cb, cb_arg,
sbin/unwind/libunbound/services/outside_network.c
953
(void)(*w->cb)(c, w->cb_arg, error, reply_info);
sbin/unwind/libunbound/services/outside_network.h
330
void* cb_arg;
sbin/unwind/libunbound/services/outside_network.h
412
void* cb_arg;
sbin/unwind/libunbound/services/outside_network.h
436
void* cb_arg;
sbin/unwind/libunbound/services/outside_network.h
674
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg);
sbin/unwind/libunbound/services/outside_network.h
763
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.h
785
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/services/outside_network.h
808
comm_point_callback_type* cb, void* cb_arg,
sbin/unwind/libunbound/util/data/msgreply.c
1225
rcode, edns, &opt_list_out, repinfo, region, start_time, cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/data/msgreply.c
1289
cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/data/msgreply.c
1303
cb->id, cb->cb_arg);
sbin/unwind/libunbound/util/data/msgreply.c
1316
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
2971
(*b->start_accept)(b->cb_arg);
sbin/unwind/libunbound/util/netevent.c
3024
(*b->stop_accept)(b->cb_arg);
sbin/unwind/libunbound/util/netevent.c
309
b->cb_arg = arg;
sbin/unwind/libunbound/util/netevent.c
3365
if( (*c->callback)(c, c->cb_arg, NETEVENT_PKT_WRITTEN,
sbin/unwind/libunbound/util/netevent.c
3392
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
sbin/unwind/libunbound/util/netevent.c
4560
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4585
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4609
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4640
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4653
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4670
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4691
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
4909
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
sbin/unwind/libunbound/util/netevent.c
4960
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
sbin/unwind/libunbound/util/netevent.c
4982
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
sbin/unwind/libunbound/util/netevent.c
5019
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &repinfo);
sbin/unwind/libunbound/util/netevent.c
5058
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
sbin/unwind/libunbound/util/netevent.c
5143
int32_t stream_id, uint32_t ATTR_UNUSED(error_code), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
5146
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/util/netevent.c
5157
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
5159
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/util/netevent.c
5495
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
5498
struct http2_session* h2_session = (struct http2_session*)cb_arg;
sbin/unwind/libunbound/util/netevent.c
5682
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
5693
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
5705
(void)(*c->callback)(c, c->cb_arg,
sbin/unwind/libunbound/util/netevent.c
5723
(void)(*c->callback)(c, c->cb_arg, NETEVENT_CLOSED,
sbin/unwind/libunbound/util/netevent.c
5742
(void)(*c->callback)(c, c->cb_arg, err, NULL);
sbin/unwind/libunbound/util/netevent.c
5787
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
5852
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
5927
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6023
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6122
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6242
c->cb_arg = NULL;
sbin/unwind/libunbound/util/netevent.c
6338
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6407
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6473
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6537
c->cb_arg = callback_arg;
sbin/unwind/libunbound/util/netevent.c
6902
comm_timer_create(struct comm_base* base, void (*cb)(void*), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
6913
tm->super.cb_arg = cb_arg;
sbin/unwind/libunbound/util/netevent.c
6967
(*tm->callback)(tm->cb_arg);
sbin/unwind/libunbound/util/netevent.c
6985
void (*callback)(int, void*), void* cb_arg)
sbin/unwind/libunbound/util/netevent.c
6995
com->cb_arg = cb_arg;
sbin/unwind/libunbound/util/netevent.c
7008
(*comsig->callback)(sig, comsig->cb_arg);
sbin/unwind/libunbound/util/netevent.h
1004
size_t len, int flags, void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
1007
size_t len, int flags, void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
1010
uint32_t error_code, void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
132
void* cb_arg;
sbin/unwind/libunbound/util/netevent.h
449
void *cb_arg;
sbin/unwind/libunbound/util/netevent.h
463
void* cb_arg;
sbin/unwind/libunbound/util/netevent.h
480
void* cb_arg;
sbin/unwind/libunbound/util/netevent.h
793
void (*cb)(void*), void* cb_arg);
sbin/unwind/libunbound/util/netevent.h
836
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
793
struct cb_arg *a = arg;
usr.sbin/bgpd/mrt.c
811
struct cb_arg arg;
usr.sbin/unbound/daemon/remote.c
8065
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
664
void* cb_arg = q->cb_arg;
usr.sbin/unbound/libunbound/libworker.c
682
(*cb)(cb_arg, rcode, (buf?(void*)sldns_buffer_begin(buf):NULL),
usr.sbin/unbound/services/listen_dnsport.c
1543
comm_point_callback_type* cb, void *cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
1566
cb_arg, ports->socket);
usr.sbin/unbound/services/listen_dnsport.c
1574
front->udp_buff, cb, cb_arg, ports->socket,
usr.sbin/unbound/services/listen_dnsport.c
1582
ports->ftype, ports->pp2_enabled, cb, cb_arg,
usr.sbin/unbound/services/listen_dnsport.c
1591
ports->ftype, ports->pp2_enabled, cb, cb_arg,
usr.sbin/unbound/services/listen_dnsport.c
1620
cb_arg, ports->socket);
usr.sbin/unbound/services/listen_dnsport.c
2357
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
usr.sbin/unbound/services/listen_dnsport.c
2533
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
usr.sbin/unbound/services/listen_dnsport.c
2715
nghttp2_data_source* source, void* ATTR_UNUSED(cb_arg))
usr.sbin/unbound/services/listen_dnsport.c
2816
if((*h2_session->c->callback)(h2_session->c, h2_session->c->cb_arg,
usr.sbin/unbound/services/listen_dnsport.c
2828
const nghttp2_frame* frame, void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
2830
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
2916
const nghttp2_frame* frame, void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
2918
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
3043
void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
3046
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
3162
size_t len, void* cb_arg)
usr.sbin/unbound/services/listen_dnsport.c
3164
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/services/listen_dnsport.c
4081
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo)) {
usr.sbin/unbound/services/listen_dnsport.h
221
comm_point_callback_type* cb, void *cb_arg);
usr.sbin/unbound/services/mesh.c
1080
(*cb->cb)(cb->cb_arg, LDNS_RCODE_SERVFAIL, NULL,
usr.sbin/unbound/services/mesh.c
1337
(*r->cb)(r->cb_arg, rcode, r->buf, sec_status_unchecked, NULL,
usr.sbin/unbound/services/mesh.c
1357
(*r->cb)(r->cb_arg, LDNS_RCODE_SERVFAIL, r->buf,
usr.sbin/unbound/services/mesh.c
1361
(*r->cb)(r->cb_arg, LDNS_RCODE_NOERROR, r->buf,
usr.sbin/unbound/services/mesh.c
1893
int mesh_state_del_cb(struct mesh_state* s, mesh_cb_func_type cb, void* cb_arg)
usr.sbin/unbound/services/mesh.c
1898
if(r->cb == cb && r->cb_arg == cb_arg) {
usr.sbin/unbound/services/mesh.c
1912
sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
usr.sbin/unbound/services/mesh.c
1922
r->cb_arg = cb_arg;
usr.sbin/unbound/services/mesh.c
2611
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg)
usr.sbin/unbound/services/mesh.c
2616
if(!mesh_state_del_cb(s, cb, cb_arg)) return;
usr.sbin/unbound/services/mesh.c
601
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru)
usr.sbin/unbound/services/mesh.c
655
if(!mesh_state_add_cb(s, edns, buf, cb, cb_arg, qid, qflags)) {
usr.sbin/unbound/services/mesh.h
257
typedef void (*mesh_cb_func_type)(void* cb_arg, int rcode, struct sldns_buffer*,
usr.sbin/unbound/services/mesh.h
279
void* cb_arg;
usr.sbin/unbound/services/mesh.h
341
uint16_t qid, mesh_cb_func_type cb, void* cb_arg, int rpz_passthru);
usr.sbin/unbound/services/mesh.h
571
struct sldns_buffer* buf, mesh_cb_func_type cb, void* cb_arg,
usr.sbin/unbound/services/mesh.h
724
uint16_t qflags, mesh_cb_func_type cb, void* cb_arg);
usr.sbin/unbound/services/outside_network.c
1249
((struct serviced_query*)w->cb_arg)->to_be_deleted = 1;
usr.sbin/unbound/services/outside_network.c
1469
(void)(*pend->cb)(outnet->unused_fds->cp, pend->cb_arg,
usr.sbin/unbound/services/outside_network.c
1552
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_NOERROR, reply_info);
usr.sbin/unbound/services/outside_network.c
1607
(void)(*p->cb)(p->pc->cp, p->cb_arg, NETEVENT_TIMEOUT, NULL);
usr.sbin/unbound/services/outside_network.c
2275
int timeout, comm_point_callback_type* cb, void* cb_arg)
usr.sbin/unbound/services/outside_network.c
2284
pend->cb_arg = cb_arg;
usr.sbin/unbound/services/outside_network.c
2490
w->cb_arg = callback_arg;
usr.sbin/unbound/services/outside_network.c
3077
(void)(*p->cb)(c, p->cb_arg, error, rep);
usr.sbin/unbound/services/outside_network.c
3542
cb->cb_arg = callback_arg;
usr.sbin/unbound/services/outside_network.c
3550
callback_list_remove(struct serviced_query* sq, void* cb_arg)
usr.sbin/unbound/services/outside_network.c
3554
if((*pp)->cb_arg == cb_arg) {
usr.sbin/unbound/services/outside_network.c
3563
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
usr.sbin/unbound/services/outside_network.c
3567
callback_list_remove(sq, cb_arg);
usr.sbin/unbound/services/outside_network.c
3655
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.c
3664
cb, cb_arg, NULL);
usr.sbin/unbound/services/outside_network.c
3731
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.c
3746
cp = comm_point_create_tcp_out(outnet->base, 65552, cb, cb_arg);
usr.sbin/unbound/services/outside_network.c
3806
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.c
3822
cp = comm_point_create_http_out(outnet->base, 65552, cb, cb_arg,
usr.sbin/unbound/services/outside_network.c
953
(void)(*w->cb)(c, w->cb_arg, error, reply_info);
usr.sbin/unbound/services/outside_network.h
330
void* cb_arg;
usr.sbin/unbound/services/outside_network.h
412
void* cb_arg;
usr.sbin/unbound/services/outside_network.h
436
void* cb_arg;
usr.sbin/unbound/services/outside_network.h
674
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg);
usr.sbin/unbound/services/outside_network.h
763
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.h
785
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/services/outside_network.h
808
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
1186
pend->cb_arg = callback_arg;
usr.sbin/unbound/testcode/fake_event.c
1236
pend->cb_arg = callback_arg;
usr.sbin/unbound/testcode/fake_event.c
1368
pend->cb_arg = callback_arg;
usr.sbin/unbound/testcode/fake_event.c
1400
void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
usr.sbin/unbound/testcode/fake_event.c
1408
log_assert(p->cb_arg == cb_arg);
usr.sbin/unbound/testcode/fake_event.c
1409
(void)cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1658
void (*cb)(void*), void* cb_arg)
usr.sbin/unbound/testcode/fake_event.c
1665
t->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1786
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/fake_event.c
1798
fc->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1805
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/fake_event.c
1824
fc->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1858
pend->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1878
comm_point_callback_type* cb, void* cb_arg,
usr.sbin/unbound/testcode/fake_event.c
1892
fc->cb_arg = cb_arg;
usr.sbin/unbound/testcode/fake_event.c
1949
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
303
void *cb_arg;
usr.sbin/unbound/testcode/replay.h
353
void* cb_arg;
usr.sbin/unbound/testcode/replay.h
396
void* cb_arg;
usr.sbin/unbound/util/data/msgreply.c
1225
rcode, edns, &opt_list_out, repinfo, region, start_time, cb->id, cb->cb_arg);
usr.sbin/unbound/util/data/msgreply.c
1289
cb->id, cb->cb_arg);
usr.sbin/unbound/util/data/msgreply.c
1303
cb->id, cb->cb_arg);
usr.sbin/unbound/util/data/msgreply.c
1316
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
2971
(*b->start_accept)(b->cb_arg);
usr.sbin/unbound/util/netevent.c
3024
(*b->stop_accept)(b->cb_arg);
usr.sbin/unbound/util/netevent.c
309
b->cb_arg = arg;
usr.sbin/unbound/util/netevent.c
3365
if( (*c->callback)(c, c->cb_arg, NETEVENT_PKT_WRITTEN,
usr.sbin/unbound/util/netevent.c
3392
if( (*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &c->repinfo) ) {
usr.sbin/unbound/util/netevent.c
4560
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4585
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4609
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4640
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4653
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4670
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4691
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
4909
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
usr.sbin/unbound/util/netevent.c
4960
(void)(*c->callback)(c, c->cb_arg, NETEVENT_DONE, NULL);
usr.sbin/unbound/util/netevent.c
4982
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
usr.sbin/unbound/util/netevent.c
5019
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, &repinfo);
usr.sbin/unbound/util/netevent.c
5058
(void)(*c->callback)(c, c->cb_arg, NETEVENT_NOERROR, NULL);
usr.sbin/unbound/util/netevent.c
5143
int32_t stream_id, uint32_t ATTR_UNUSED(error_code), void* cb_arg)
usr.sbin/unbound/util/netevent.c
5146
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/util/netevent.c
5157
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/util/netevent.c
5159
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/util/netevent.c
5495
size_t len, int ATTR_UNUSED(flags), void* cb_arg)
usr.sbin/unbound/util/netevent.c
5498
struct http2_session* h2_session = (struct http2_session*)cb_arg;
usr.sbin/unbound/util/netevent.c
5682
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
5693
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
5705
(void)(*c->callback)(c, c->cb_arg,
usr.sbin/unbound/util/netevent.c
5723
(void)(*c->callback)(c, c->cb_arg, NETEVENT_CLOSED,
usr.sbin/unbound/util/netevent.c
5742
(void)(*c->callback)(c, c->cb_arg, err, NULL);
usr.sbin/unbound/util/netevent.c
5787
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
5852
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
5927
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6023
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6122
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6242
c->cb_arg = NULL;
usr.sbin/unbound/util/netevent.c
6338
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6407
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6473
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6537
c->cb_arg = callback_arg;
usr.sbin/unbound/util/netevent.c
6902
comm_timer_create(struct comm_base* base, void (*cb)(void*), void* cb_arg)
usr.sbin/unbound/util/netevent.c
6913
tm->super.cb_arg = cb_arg;
usr.sbin/unbound/util/netevent.c
6967
(*tm->callback)(tm->cb_arg);
usr.sbin/unbound/util/netevent.c
6985
void (*callback)(int, void*), void* cb_arg)
usr.sbin/unbound/util/netevent.c
6995
com->cb_arg = cb_arg;
usr.sbin/unbound/util/netevent.c
7008
(*comsig->callback)(sig, comsig->cb_arg);
usr.sbin/unbound/util/netevent.h
1004
size_t len, int flags, void* cb_arg);
usr.sbin/unbound/util/netevent.h
1007
size_t len, int flags, void* cb_arg);
usr.sbin/unbound/util/netevent.h
1010
uint32_t error_code, void* cb_arg);
usr.sbin/unbound/util/netevent.h
132
void* cb_arg;
usr.sbin/unbound/util/netevent.h
449
void *cb_arg;
usr.sbin/unbound/util/netevent.h
463
void* cb_arg;
usr.sbin/unbound/util/netevent.h
480
void* cb_arg;
usr.sbin/unbound/util/netevent.h
793
void (*cb)(void*), void* cb_arg);
usr.sbin/unbound/util/netevent.h
836
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)