Searched refs:seekf (Results 1 - 25 of 29) sorted by relevance

12

/ast/src/cmd/3d/
H A Dlseek3d.c59 static Seek64_f seekf; local
67 if (!seekf)
68 seekf = (Seek64_f)sysfunc(SYS3D_lseek64);
80 r = (*seekf)(fd, off, op);
103 static Seek_f seekf; local
114 if (!seekf)
115 seekf = (Seek_f)sysfunc(SYS3D_lseek);
116 r = (*seekf)(fd, off, op);
/ast/src/lib/libast/disc/
H A Dsfdcslow.c74 disc->seekf = NIL(Sfseek_f);
H A Dsfdctee.c90 te->disc.seekf = NIL(Sfseek_f);
H A Dsfdcfilter.c174 fi->disc.seekf = filterseek;
H A Dsfdcdio.c213 di->disc.seekf = NIL(Sfseek_f);
H A Dsfdcseekable.c213 sk->disc.seekf = skseek;
H A Dsfdcsubstr.c203 su->disc.seekf = streamseek;
H A Dsfdcunion.c184 un->disc.seekf = unseek;
H A Dsfdcdos.c407 dos->disc.seekf = dos_seek;
/ast/src/cmd/tests/sfio/
H A Dttell.c142 Disc1.seekf = discseek; sfdisc(f,&Disc1);
143 Disc2.seekf = discseek; sfdisc(f,&Disc2);
144 Disc3.seekf = discseek; sfdisc(f,&Disc3);
H A Dtmprdwr.c132 disc.disc.seekf = 0;
/ast/src/lib/libast/sfio/
H A Dsfsk.c75 { SFDISC(f,dc,seekf);
76 if(dc && dc->seekf)
H A Dsfsize.c57 if(disc->seekf)
H A Dsfdisc.c187 /* save old readf, writef, and seekf to see if stream need reinit */
194 GETDISCF(oseekf,seekf,Sfseek_f);
251 REINIT(oseekf,seekf,Sfseek_f);
H A Dsfsetbuf.c213 /* set disc to the first discipline with a seekf */
215 if(disc->seekf)
H A Dsfhdr.h958 rv = (*dc->seekf)(f,addr,type,dc); \
/ast/src/lib/libdss/
H A Ddsslib.h54 Dssseek_f seekf; \
H A Ddssfile.c314 return file->seekf ? (*file->seekf)(file, DSS_TELL, file->dss->disc) : file->offset;
324 return (file->seekf ? (*file->seekf)(file, offset, file->dss->disc) : sfseek(file->io, offset, SEEK_SET)) == offset ? 0 : -1;
H A Ddss.h108 Sfoff_t (*seekf)(Dssfile_t*, Sfoff_t, Dssdisc_t*); member in struct:Dssformat_s
/ast/src/lib/libcodex/
H A Dcodex.c141 if (!code->meth->seekf || (*((Sfoff_t*)data) = (*code->meth->seekf)(code, (Sfoff_t)0, SEEK_CUR)) < 0)
145 if (!code->meth->seekf || (*code->meth->seekf)(code, *((Sfoff_t*)data), SEEK_SET) < 0)
319 if (!meth->seekf)
321 r = (*meth->seekf)(code, pos, op);
H A Dcodex.h118 Sfoff_t (*seekf)(Codex_t*, Sfoff_t, int); member in struct:Codexmeth_s
/ast/src/cmd/pax/
H A Dpaxlib.h211 off_t (*seekf)(Pax_t*, Paxarchive_t*, off_t, int, int); member in struct:Pax_s
238 #define paxseek(p,a,o,w,f) (*(p)->seekf)(p,a,o,w,f)
H A Dpaxlib.c228 pax->seekf = paxseek;
/ast/src/lib/libz/
H A Dsfdcgzip.c274 gz->disc.seekf = sfgzseek;
/ast/src/lib/libast/include/
H A Dsfio.h57 Sfseek_f seekf; /* seek function */ member in struct:_sfdisc_s

Completed in 98 milliseconds

12