/src/usr.sbin/user/ |
main.c | 46 int (*c_func)(int, char **); /* called function */ member in struct:cmd_t 93 return (*cmdp->c_func)(argc - (matched - 1), argv + (matched - 1));
|
/src/sys/sys/ |
callout.h | 93 void (*c_func)(void *); /* function to call */ member in struct:callout_impl
|
/src/sys/kern/ |
kern_timeout.c | 368 c->c_func = NULL; 400 "pending callout %p: c_func (%p) c_flags (%#x) destroyed from %p", 401 c, c->c_func, c->c_flags, __builtin_return_address(0)); 403 "running callout %p: c_func (%p) c_flags (%#x) destroyed from %p", 404 c, c->c_func, c->c_flags, __builtin_return_address(0)); 422 c, c->c_func, c->c_arg, c->c_flags, to_ticks); 425 KASSERT(c->c_func != NULL); 463 c, c->c_func, c->c_arg, c->c_flags, 486 c->c_func = func; 533 c, c->c_func, c->c_arg, c->c_flags, expired) [all...] |
/src/sys/altq/ |
altq_var.h | 194 void (*c_func)(void *); /* function to call */ member in struct:callout 198 (c)->c_func = (f); \ 200 #define CALLOUT_STOP(c) untimeout((c)->c_func,(c)->c_arg)
|
/src/usr.bin/mail/ |
lex.c | 735 e = (*com->c_func)(msgvec); 749 e = (*com->c_func)(msgvec); 758 e = (*com->c_func)(cp); 777 e = (*com->c_func)(arglist); 785 e = (*com->c_func)(0);
|
def.h | 191 int (*c_func)(void *); /* Implementor of the command */ member in struct:cmd
|
/src/sys/arch/shark/shark/ |
scr.c | 534 void (*c_func)(struct scr_softc*,int); /* function to call */ 3619 func = c->c_func; 3732 new->c_func = ftn; 3804 if (t->c_func == ftn && t->c_sc == sc && t->c_arg == arg) 533 void (*c_func)(struct scr_softc*,int); \/* function to call *\/ member in struct:callout_t
|