Home
last modified time | relevance | path

Searched refs:c_func (Results 1 – 13 of 13) sorted by relevance

/src/sbin/ifconfig/
H A Difconfig.h67 typedef void c_func(if_ctx *ctx, const char *cmd, int arg); typedef
82 c_func *c_func; member
102 .c_u = { .c_func = (func) }, \
109 .c_u = { .c_func = (func) }, \
116 .c_u = { .c_func = (func) }, \
145 .c_u = { .c_func = (func) }, \
152 .c_u = { .c_func = (func) }, \
H A Difconfig.c1188 if (p->c_parameter == NEXTARG && p->c_u.c_func) { in ifconfig_ioctl()
1192 p->c_u.c_func(ctx, argv[1], 0); in ifconfig_ioctl()
1194 } else if (p->c_parameter == OPTARG && p->c_u.c_func) { in ifconfig_ioctl()
1195 p->c_u.c_func(ctx, argv[1], 0); in ifconfig_ioctl()
1213 } else if (p->c_u.c_func) in ifconfig_ioctl()
1214 p->c_u.c_func(ctx, *argv, p->c_parameter); in ifconfig_ioctl()
/src/sys/kern/
H A Dkern_timeout.c600 c->c_func = func; in callout_cc_add()
632 callout_func_t *c_func; in softclock_call_cc() local
666 c_func = c->c_func; in softclock_call_cc()
672 cc_exec_last_func(cc, direct) = c_func; in softclock_call_cc()
682 qmax(c->c_precision / 2, 1), c_func, c_arg, in softclock_call_cc()
706 c, c_func, c_arg); in softclock_call_cc()
712 c, c_func, c_arg); in softclock_call_cc()
720 c, c_func, c_arg); in softclock_call_cc()
723 "func:%p", c_func, "arg:%p", c_arg, "direct:%d", direct); in softclock_call_cc()
729 c_func(c_arg); in softclock_call_cc()
[all …]
/src/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dcallb.c56 boolean_t (*c_func)(void *, int); member
154 cp->c_func = func; in callb_add_common()
279 cp->c_name, (void *)cp->c_func, (void *)cp->c_arg); in callb_execute_class()
284 if (!(*cp->c_func)(cp->c_arg, code)) in callb_execute_class()
/src/usr.bin/mail/
H A Dlex.c374 e = (*com->c_func)(msgvec); in execute()
388 e = (*com->c_func)(msgvec); in execute()
398 e = (*com->c_func)(cp); in execute()
418 e = (*com->c_func)(arglist); in execute()
426 e = (*com->c_func)(0); in execute()
H A Ddef.h105 int (*c_func)(void *); /* Implementor of the command */ member
/src/sys/sys/
H A D_callout.h60 callout_func_t *c_func; /* function to call */ member
H A Dcallout.h109 callout_reset_sbt_on((c), (sbt), (pr), (c)->c_func, (c)->c_arg, \
/src/stand/kshim/
H A Dbsd_kernel.c447 if (c->c_func != NULL) in callout_callback()
448 (c->c_func) (c->c_arg); in callout_callback()
502 c->c_func = func; in callout_reset()
522 c->c_func = NULL; in callout_stop()
H A Dbsd_kernel.h348 callout_fn_t *c_func; member
/src/sys/dev/usb/
H A Dusbdi.h497 (c)->co.c_func = &usbd_dummy_timeout; \
/src/sys/dev/ioat/
H A Dioat.c2079 db_printf(" c_func: %p\n", sc->poll_timer.c_func); in DB_SHOW_COMMAND()
/src/sys/netgraph/
H A Dng_base.c3842 if ((c->c_func == &ng_callout_trampoline) && in ng_uncallout_internal()