Symbol: flc_obj
usr/src/uts/common/sys/dktp/flowctrl.h
41
int (*flc_free)(struct flc_obj *);
usr/src/uts/common/sys/dktp/flowctrl.h
49
struct flc_obj *dsngl_create();
usr/src/uts/common/sys/dktp/flowctrl.h
50
struct flc_obj *dmult_create();
usr/src/uts/common/sys/dktp/flowctrl.h
51
struct flc_obj *duplx_create();
usr/src/uts/common/sys/dktp/flowctrl.h
52
struct flc_obj *adapt_create();
usr/src/uts/common/sys/dktp/flowctrl.h
55
(*((struct flc_obj *)(X))->flc_ops->flc_init) \
usr/src/uts/common/sys/dktp/flowctrl.h
56
(((struct flc_obj *)(X))->flc_data, (tgcomobjp), (queobjp), (lkarg))
usr/src/uts/common/sys/dktp/flowctrl.h
57
#define FLC_FREE(X) (*((struct flc_obj *)(X))->flc_ops->flc_free) ((X))
usr/src/uts/common/sys/dktp/flowctrl.h
58
#define FLC_ENQUE(X, bp) (*((struct flc_obj *)(X))->flc_ops->flc_enque) \
usr/src/uts/common/sys/dktp/flowctrl.h
59
(((struct flc_obj *)(X))->flc_data, (bp))
usr/src/uts/common/sys/dktp/flowctrl.h
60
#define FLC_DEQUE(X, bp) (*((struct flc_obj *)(X))->flc_ops->flc_deque) \
usr/src/uts/common/sys/dktp/flowctrl.h
61
(((struct flc_obj *)(X))->flc_data, (bp))
usr/src/uts/common/sys/dktp/flowctrl.h
63
(*((struct flc_obj *)(X))->flc_ops->flc_start_kstat)\
usr/src/uts/common/sys/dktp/flowctrl.h
64
(((struct flc_obj *)(X))->flc_data, (devtype), (instance))
usr/src/uts/common/sys/dktp/flowctrl.h
65
#define FLC_STOP_KSTAT(X) (*((struct flc_obj *)(X))->flc_ops->flc_stop_kstat) \
usr/src/uts/common/sys/dktp/flowctrl.h
66
(((struct flc_obj *)(X))->flc_data)
usr/src/uts/intel/io/dktp/drvobj/strategy.c
101
static int fc_free(struct flc_obj *flcobjp);
usr/src/uts/intel/io/dktp/drvobj/strategy.c
105
static struct flc_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
108
struct flc_obj *flcobjp;
usr/src/uts/intel/io/dktp/drvobj/strategy.c
141
fc_free(struct flc_obj *flcobjp)
usr/src/uts/intel/io/dktp/drvobj/strategy.c
207
struct flc_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
332
struct flc_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
465
static int duplx_free(struct flc_obj *flcobjp);
usr/src/uts/intel/io/dktp/drvobj/strategy.c
479
struct flc_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
482
struct flc_obj *flcobjp;
usr/src/uts/intel/io/dktp/drvobj/strategy.c
502
duplx_free(struct flc_obj *flcobjp)
usr/src/uts/intel/io/dktp/drvobj/strategy.c
703
struct flc_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
98
static struct flc_obj *fc_create(struct flc_objops *fcopsp);