Searched defs:searchf (Results 1 - 5 of 5) sorted by relevance

/ast/src/cmd/mailx/port/
H A Ddtrestore.c87 reg Dtsearch_f searchf = dt->meth->searchf; local
118 (*searchf)(dt,(Void_t*)list,DT_RENEW);
H A Ddtdisc.c105 reg Dtsearch_f searchf; local
121 searchf = dt->meth->searchf;
160 (void)(*searchf)(dt,(Void_t*)root,DT_RENEW);
173 (void)(*searchf)(dt,(Void_t*)root,DT_RENEW);
182 (void)(*searchf)(dt,(Void_t*)root,DT_RENEW);
H A Ddtmethod.c86 reg Dtsearch_f searchf; local
118 searchf = meth->searchf;
119 if(dt->searchf == oldmeth->searchf)
120 dt->searchf = searchf;
145 (void)(*searchf)(dt,(Void_t*)list,DT_RENEW);
H A Dcdt.h197 { Dtsearch_f searchf; /* search function */ member in struct:_dtmethod_s
228 { Dtsearch_f searchf;/* searching function */ member in struct:_dt_s
318 #define dtfirst(d) (*(_DT_(d)->searchf))((d),NIL(Void_t*),DT_FIRST)
319 #define dtnext(d,o) (*(_DT_(d)->searchf))((d),(Void_t*)(o),DT_NEXT)
320 #define dtlast(d) (*(_DT_(d)->searchf))((d),NIL(Void_t*),DT_LAST)
321 #define dtprev(d,o) (*(_DT_(d)->searchf))((d),(Void_t*)(o),DT_PREV)
322 #define dtsearch(d,o) (*(_DT_(d)->searchf))((d),(Void_t*)(o),DT_SEARCH)
323 #define dtinsert(d,o) (*(_DT_(d)->searchf))((d),(Void_t*)(o),DT_INSERT)
324 #define dtdelete(d,o) (*(_DT_(d)->searchf))((d),(Void_t*)(o),DT_DELETE)
325 #define dtmatch(d,o) (*(_DT_(d)->searchf))((
[all...]
/ast/src/lib/libast/include/
H A Dcdt.h110 { Dtsearch_f searchf; /* search function */ member in struct:_dtmethod_s
144 { Dtsearch_f searchf;/* search function */ member in struct:_dt_s
328 #define dtfirst(d) (*(_DT(d)->searchf))((d),(Void_t*)(0),DT_FIRST)
329 #define dtnext(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_NEXT)
330 #define dtatleast(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_ATLEAST)
331 #define dtlast(d) (*(_DT(d)->searchf))((d),(Void_t*)(0),DT_LAST)
332 #define dtprev(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_PREV)
333 #define dtatmost(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_ATMOST)
334 #define dtsearch(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_SEARCH)
335 #define dtmatch(d,o) (*(_DT(d)->searchf))((
[all...]

Completed in 29 milliseconds