Home
last modified time | relevance | path

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

/freebsd/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 …]
/freebsd/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/usr.bin/mail/
H A Dlex.c375 e = (*com->c_func)(msgvec); in execute()
389 e = (*com->c_func)(msgvec); in execute()
399 e = (*com->c_func)(cp); in execute()
419 e = (*com->c_func)(arglist); in execute()
427 e = (*com->c_func)(0); in execute()
H A Ddef.h105 int (*c_func)(void *); /* Implementor of the command */ member
/freebsd/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, \
/freebsd/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/sbin/ifconfig/
H A Difconfig.c1194 if (p->c_parameter == NEXTARG && p->c_u.c_func) { in ifconfig_ioctl()
1198 p->c_u.c_func(ctx, argv[1], 0); in ifconfig_ioctl()
1200 } else if (p->c_parameter == OPTARG && p->c_u.c_func) { in ifconfig_ioctl()
1201 p->c_u.c_func(ctx, argv[1], 0); in ifconfig_ioctl()
1212 } else if (p->c_u.c_func) in ifconfig_ioctl()
1213 p->c_u.c_func(ctx, *argv, p->c_parameter); in ifconfig_ioctl()
/freebsd/sys/dev/usb/
H A Dusbdi.h496 (c)->co.c_func = &usbd_dummy_timeout; \
/freebsd/sys/dev/ioat/
H A Dioat.c2079 db_printf(" c_func: %p\n", sc->poll_timer.c_func); in DB_SHOW_COMMAND()
/freebsd/sys/netgraph/
H A Dng_base.c3839 if ((c->c_func == &ng_callout_trampoline) && in ng_uncallout_internal()