Home
last modified time | relevance | path

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

/freebsd-14.2/sbin/ifconfig/
H A Difconfig.h66 typedef void c_func(if_ctx *ctx, const char *cmd, int arg); typedef
79 c_func *c_func; member
98 .c_u = { .c_func = (func) }, \
105 .c_u = { .c_func = (func) }, \
112 .c_u = { .c_func = (func) }, \
134 .c_u = { .c_func = (func) }, \
141 .c_u = { .c_func = (func) }, \
H A Difconfig.c1203 if (p->c_parameter == NEXTARG && p->c_u.c_func) { in ifconfig_ioctl()
1207 p->c_u.c_func(ctx, argv[1], 0); in ifconfig_ioctl()
1209 } else if (p->c_parameter == OPTARG && p->c_u.c_func) { in ifconfig_ioctl()
1210 p->c_u.c_func(ctx, argv[1], 0); in ifconfig_ioctl()
1221 } else if (p->c_u.c_func) in ifconfig_ioctl()
1222 p->c_u.c_func(ctx, *argv, p->c_parameter); in ifconfig_ioctl()
/freebsd-14.2/sys/kern/
H A Dkern_timeout.c604 c->c_func = func; in callout_cc_add()
669 c_func = c->c_func; in softclock_call_cc()
697 c, c_func, c_arg); in softclock_call_cc()
703 c, c_func, c_arg); in softclock_call_cc()
710 c, c_func, c_arg); in softclock_call_cc()
719 c_func(c_arg); in softclock_call_cc()
733 lastfunc = c_func; in softclock_call_cc()
981 c, c->c_func, c->c_arg); in callout_reset_sbt_on()
1317 c, c->c_func, c->c_arg); in _callout_stop_safe()
1332 c, c->c_func, c->c_arg); in _callout_stop_safe()
[all …]
/freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dcallb.c55 boolean_t (*c_func)(void *, int); member
153 cp->c_func = func; in callb_add_common()
278 cp->c_name, (void *)cp->c_func, (void *)cp->c_arg); in callb_execute_class()
283 if (!(*cp->c_func)(cp->c_arg, code)) in callb_execute_class()
/freebsd-14.2/usr.bin/mail/
H A Dlex.c381 e = (*com->c_func)(msgvec); in execute()
395 e = (*com->c_func)(msgvec); in execute()
405 e = (*com->c_func)(cp); in execute()
425 e = (*com->c_func)(arglist); in execute()
433 e = (*com->c_func)(0); in execute()
H A Ddef.h107 int (*c_func)(void *); /* Implementor of the command */ member
/freebsd-14.2/sys/sys/
H A D_callout.h62 callout_func_t *c_func; /* function to call */ member
H A Dcallout.h114 callout_reset_sbt_on((c), (sbt), (pr), (c)->c_func, (c)->c_arg, \
/freebsd-14.2/stand/kshim/
H A Dbsd_kernel.c449 if (c->c_func != NULL) in callout_callback()
450 (c->c_func) (c->c_arg); in callout_callback()
504 c->c_func = func; in callout_reset()
524 c->c_func = NULL; in callout_stop()
H A Dbsd_kernel.h347 callout_fn_t *c_func; member
/freebsd-14.2/sys/dev/usb/
H A Dusbdi.h496 (c)->co.c_func = &usbd_dummy_timeout; \
/freebsd-14.2/sys/dev/ioat/
H A Dioat.c2079 db_printf(" c_func: %p\n", sc->poll_timer.c_func); in DB_SHOW_COMMAND()
/freebsd-14.2/sys/netgraph/
H A Dng_base.c3839 if ((c->c_func == &ng_callout_trampoline) && in ng_uncallout_internal()