Lines Matching defs:meth
33 if (type == DT_DELETE && (dt->meth->type&(DT_OBAG|DT_BAG)))
39 Dt_t* _dtopen(Dtdisc_t* disc, Dtmethod_t* meth, unsigned long version)
41 Dt_t* _dtopen(disc, meth, version)
43 Dtmethod_t* meth;
51 if(!disc || !meth)
56 type = meth->type;
59 pdt.searchf = meth->searchf;
60 pdt.meth = meth;
68 { if((data->type & DT_METHODS) != meth->type)
82 if((*meth->eventf)(&pdt, DT_OPEN, NIL(Void_t*)) < 0 || !pdt.data )
90 { (void)(*meth->eventf)(&pdt, DT_CLOSE, NIL(Void_t*));
111 Dt_t* dtopen(Dtdisc_t* disc, Dtmethod_t* meth)
113 Dt_t* dtopen(disc, meth)
115 Dtmethod_t* meth;
118 return _dtopen(disc, meth, 20050420L);