Symbol: que_obj
usr/src/uts/common/sys/dktp/queue.h
41
int (*que_free)(struct que_obj *);
usr/src/uts/common/sys/dktp/queue.h
47
struct que_obj *qfifo_create();
usr/src/uts/common/sys/dktp/queue.h
48
struct que_obj *qmerge_create();
usr/src/uts/common/sys/dktp/queue.h
49
struct que_obj *qsort_create();
usr/src/uts/common/sys/dktp/queue.h
50
struct que_obj *qtag_create();
usr/src/uts/common/sys/dktp/queue.h
52
#define QUE_INIT(X, lkarg) (*((struct que_obj *)(X))->que_ops->que_init) \
usr/src/uts/common/sys/dktp/queue.h
53
(((struct que_obj *)(X))->que_data, (lkarg))
usr/src/uts/common/sys/dktp/queue.h
54
#define QUE_FREE(X) (*((struct que_obj *)(X))->que_ops->que_free) ((X))
usr/src/uts/common/sys/dktp/queue.h
55
#define QUE_ADD(X, bp) (*((struct que_obj *)(X))->que_ops->que_ins) \
usr/src/uts/common/sys/dktp/queue.h
56
(((struct que_obj *)(X))->que_data, (bp))
usr/src/uts/common/sys/dktp/queue.h
57
#define QUE_DEL(X) (*((struct que_obj *)(X))->que_ops->que_del) \
usr/src/uts/common/sys/dktp/queue.h
58
(((struct que_obj *)(X))->que_data)
usr/src/uts/intel/io/dktp/drvobj/strategy.c
1343
struct que_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
1383
struct que_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
1465
struct que_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
727
static struct que_obj *que_create(struct que_objops *qopsp);
usr/src/uts/intel/io/dktp/drvobj/strategy.c
729
static int que_free(struct que_obj *queobjp);
usr/src/uts/intel/io/dktp/drvobj/strategy.c
732
static struct que_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
736
struct que_obj *queobjp;
usr/src/uts/intel/io/dktp/drvobj/strategy.c
757
que_free(struct que_obj *queobjp)
usr/src/uts/intel/io/dktp/drvobj/strategy.c
850
struct que_obj *
usr/src/uts/intel/io/dktp/drvobj/strategy.c
854
struct que_obj *queobjp;
usr/src/uts/intel/io/dktp/drvobj/strategy.c
871
qmerge_free(struct que_obj *queobjp)