Lines Matching refs:bbh_obj
49 struct bbh_obj { struct
56 int (*bbh_free)(struct bbh_obj *); argument
66 #define BBH_INIT(X) (*((struct bbh_obj *)(X))->bbh_ops->bbh_init)\
67 (((struct bbh_obj *)(X))->bbh_data)
68 #define BBH_FREE(X) (*((struct bbh_obj *)(X))->bbh_ops->bbh_free) ((X))
69 #define BBH_GETHANDLE(X, bp) (*((struct bbh_obj *)(X))->bbh_ops->bbh_gethandle)\
70 (((struct bbh_obj *)(X))->bbh_data, (bp))
71 #define BBH_HTOC(X, handle) (*((struct bbh_obj *)(X))->bbh_ops->bbh_htoc) \
72 (((struct bbh_obj *)(X))->bbh_data, (handle))
74 (*((struct bbh_obj *)(X))->bbh_ops->bbh_freehandle) \
75 (((struct bbh_obj *)(X))->bbh_data, (handle))