/src/sys/sys/ |
callout.h | 43 * The size of callout_t must remain constant in order to ensure ABI 50 } callout_t; typedef in typeref:struct:callout 111 void callout_init(callout_t *, u_int); 112 void callout_destroy(callout_t *); 113 void callout_setfunc(callout_t *, void (*)(void *), void *); 114 void callout_reset(callout_t *, int, void (*)(void *), void *); 115 void callout_schedule(callout_t *, int); 116 bool callout_stop(callout_t *); 117 bool callout_halt(callout_t *, void *); 118 bool callout_pending(callout_t *); [all...] |
callout.h | 43 * The size of callout_t must remain constant in order to ensure ABI 50 } callout_t; typedef in typeref:struct:callout 111 void callout_init(callout_t *, u_int); 112 void callout_destroy(callout_t *); 113 void callout_setfunc(callout_t *, void (*)(void *), void *); 114 void callout_reset(callout_t *, int, void (*)(void *), void *); 115 void callout_schedule(callout_t *, int); 116 bool callout_stop(callout_t *); 117 bool callout_halt(callout_t *, void *); 118 bool callout_pending(callout_t *); [all...] |
/src/sys/arch/shark/shark/ |
scr.c | 529 typedef struct callout_t 531 struct callout_t *c_next; /* next callout in queue */ 528 typedef struct callout_t struct
|
scr.c | 529 typedef struct callout_t 531 struct callout_t *c_next; /* next callout in queue */ 528 typedef struct callout_t struct
|