Searched refs:walkf (Results 1 - 6 of 6) sorted by relevance
/ast/src/cmd/tests/sfio/ |
H A D | twalk.c | 23 int walkf(Sfio_t* f, Void_t* cntp) function 25 int walkf(f, cntp) 38 if((c = sfwalk(walkf, &count, 0)) != 3) /* counting sfstdin/out/err */ 44 if((c = sfwalk(walkf, &count, 0)) != 7) /* recount std-streams and 1 more */
|
/ast/src/lib/libast/sfio/ |
H A D | sfwalk.c | 30 int sfwalk(Sfwalk_f walkf, Void_t* data, int type) argument 32 int sfwalk(walkf, data, type) 33 Sfwalk_f walkf; /* return <0: stop, >=0: continue */ 57 if((rv = (*walkf)(f, data)) < 0)
|
/ast/src/lib/libvcodex/Vcwindow/ |
H A D | vcwmethod.c | 66 int vcwwalkmeth(Vcwalk_f walkf, Void_t* disc) argument 68 int vcwwalkmeth(Vcwalk_f walkf, Void_t* disc) 69 Vcwalk_t walkf; 75 if(!walkf) 79 { rv = (*walkf)((Void_t*)_Vcwmethods[i],
|
/ast/src/lib/libvcodex/ |
H A D | vcalias.c | 276 static int vcwalklist(Vcalias_t* al, Vcwalk_f walkf, Void_t* disc) argument 278 static int vcwalklist(al, walkf, disc) 280 Vcwalk_f walkf; 286 if(!walkf) 289 if((rv = (*walkf)((Void_t*)0, al->name, al->value, disc)) < 0 ) 296 int vcwalkalias(Vcwalk_f walkf, Void_t* disc) argument 298 int vcwalkalias(walkf, disc) 299 Vcwalk_f walkf; 305 return vcwalklist(Alias, walkf, disc); 310 int vcwalkfname(Vcwalk_f walkf, Void_ argument [all...] |
H A D | vcmethod.c | 216 int vcwalkmeth(Vcwalk_f walkf, Void_t* disc) argument 218 int vcwalkmeth(walkf, disc) 219 Vcwalk_f walkf; 229 if(!walkf) 234 { rv = (*walkf)((Void_t*)mtl->list[i],
|
/ast/src/cmd/mailx/ |
H A D | vars.c | 828 * Apply walkf(node,handle) to each node in the dictionary. 829 * Non-zero return from walkf terminates walk with that value. 833 dictwalk(Dt_t** dp, int (*walkf)(Dt_t*, void*, void*), void* context) argument 835 return *dp ? dtwalk(*dp, walkf, context) : 0;
|
Completed in 11 milliseconds