Searched refs:whence (Results 1 - 25 of 97) sorted by relevance

1234

/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dfseeko.c33 fseeko(FILE *stream, off_t offset, int whence) argument
39 return (fseek(stream, (long) offset, whence));
/macosx-10.10.1/curl-83.1.2/curl/src/
H A Dtool_cb_see.c47 int tool_seek_cb(void *userdata, curl_off_t offset, int whence) argument
63 if(whence != SEEK_SET)
82 if(LSEEK_ERROR == lseek(in->fd, offset, whence))
95 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
101 # define _lseeki64(hnd,ofs,whence) _lseek(hnd,ofs,whence)
103 # define _lseeki64(hnd,ofs,whence) _lseek64(hnd,ofs,whence)
110 # define _lseeki64(hnd,ofs,whence) lsee
[all...]
H A Dtool_cb_see.h43 int tool_seek_cb(void *userdata, curl_off_t offset, int whence);
/macosx-10.10.1/diskdev_cmds-576/disklib/
H A Ddkopen.c49 off64_t dklseek (int filedes, off64_t offset, int whence) argument
52 return (lseek64 (filedes, offset, whence));
54 return (lseek (filedes, offset, whence));
H A Ddkopen.h54 off64_t dklseek (int fileds, off64_t offset, int whence);
/macosx-10.10.1/IOGraphics-485/IOGraphicsFamily/
H A DIOFramebufferReallyPrivate.h30 OSSet * whence; member in class:_IOFramebufferNotifier
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/disc/
H A Dsfdcdos.c83 static struct map *getmapping(Dosdisc_t *dp, Sfoff_t offset, register int whence) argument
85 static struct map *getmapping(dp, offset, whence)
88 register int whence;
104 while((++mp)->logical && (whence==SEEK_CUR?mp->physical:mp->logical) <= offset);
226 * if <whence> is SEEK_CUR, physical offset converted to logical offset
230 static Sfoff_t cur_offset(Dosdisc_t *dp, Sfoff_t offset,Sfio_t *iop,register int whence) argument
232 static Sfoff_t cur_offset(dp, offset, iop, whence)
236 register int whence;
242 if(whence==SEEK_CUR)
244 whence
276 dos_seek(Sfio_t *iop, Sfoff_t offset, register int whence, Sfdisc_t* disc) argument
[all...]
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dfseek.c54 fseek(fp, offset, whence)
57 int whence;
66 ret = _fseeko(fp, (off_t)offset, whence, 1);
74 fseeko(fp, offset, whence)
77 int whence;
86 ret = _fseeko(fp, offset, whence, 0);
98 _fseeko(fp, offset, whence, ltest)
101 int whence;
119 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
120 * After this, whence i
[all...]
H A Dstdio.c75 __sseek(cookie, offset, whence)
78 int whence;
82 return (lseek(fp->_file, (off_t)offset, whence));
148 _sseek(fp, offset, whence)
151 int whence;
158 ret = (*fp->_seek)(fp->_cookie, offset, whence);
169 if (offset != 0 || whence != SEEK_CUR) {
/macosx-10.10.1/CPANInternal-159.1/Class-Trigger-0.14/inc/IO/
H A DScalar.pm318 my ($self, $pos, $whence) = @_;
322 if ($whence == 0) { *$self->{Pos} = $pos } ### SEEK_SET
323 elsif ($whence == 1) { *$self->{Pos} += $pos } ### SEEK_CUR
324 elsif ($whence == 2) { *$self->{Pos} = $eofpos + $pos} ### SEEK_END
325 else { croak "bad seek whence ($whence)" }
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/include/isc/
H A Dstdio.h51 isc_stdio_seek(FILE *f, long offset, int whence);
/macosx-10.10.1/ntp-92/lib/isc/include/isc/
H A Dstdio.h51 isc_stdio_seek(FILE *f, long offset, int whence);
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXflock.c60 * o lockInfoPtr - Lock info structure, start, length and whence are
77 lockInfoPtr->whence = 0;
102 lockInfoPtr->whence = 0;
104 lockInfoPtr->whence = 1;
106 lockInfoPtr->whence = 2;
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dstore_fd.c56 fd_seek(krb5_storage * sp, off_t offset, int whence) argument
58 return lseek(FD(sp), offset, whence);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/unix/
H A Dstdio.c53 isc_stdio_seek(FILE *f, long offset, int whence) { argument
56 r = fseek(f, offset, whence);
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/win32/
H A Dstdio.c52 isc_stdio_seek(FILE *f, long offset, int whence) { argument
55 r = fseek(f, offset, whence);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dsysdep.h155 extern int fseeko (FILE *stream, off_t offset, int whence);
161 extern int fseeko64 (FILE *stream, off64_t offset, int whence);
H A Dbfdio.c55 real_fseek (FILE *file, file_ptr offset, int whence) argument
58 return fseeko64 (file, offset, whence);
60 return fseeko (file, offset, whence);
62 return fseek (file, offset, whence);
103 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
/macosx-10.10.1/ntp-92/lib/isc/unix/
H A Dstdio.c52 isc_stdio_seek(FILE *f, long offset, int whence) { argument
55 r = fseek(f, offset, whence);
/macosx-10.10.1/ntp-92/lib/isc/win32/
H A Dstdio.c52 isc_stdio_seek(FILE *f, long offset, int whence) { argument
55 r = fseek(f, offset, whence);
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_atari.c74 _tiffSeekProc(thandle_t fd, off_t off, int whence) argument
79 if (whence == SEEK_END || off <= 0)
80 return Fseek(off, (int) fd, whence);
82 if (whence == SEEK_SET)
86 new_off = Fseek(off, (int) fd, whence);
H A Dtif_stream.cxx88 _tiffosSeekProc(thandle_t fd, toff_t off, int whence) argument
97 switch(whence) {
124 switch( whence ) {
161 _tiffisSeekProc(thandle_t fd, toff_t off, int whence) argument
165 switch(whence) {
/macosx-10.10.1/sudo-73/src/zlib/
H A Dgzlib.c296 z_off64_t ZEXPORT gzseek64(file, offset, whence)
299 int whence;
317 if (whence != SEEK_SET && whence != SEEK_CUR)
321 if (whence == SEEK_SET)
373 z_off_t ZEXPORT gzseek(file, offset, whence)
376 int whence;
380 ret = gzseek64(file, (z_off64_t)offset, whence);
/macosx-10.10.1/zlib-55/zlib/
H A Dgzlib.c275 z_off64_t ZEXPORT gzseek64(file, offset, whence)
278 int whence;
296 if (whence != SEEK_SET && whence != SEEK_CUR)
300 if (whence == SEEK_SET)
351 z_off_t ZEXPORT gzseek(file, offset, whence)
354 int whence;
358 ret = gzseek64(file, (z_off64_t)offset, whence);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstdio_.h225 extern int fseeko (FILE *fp, off_t offset, int whence);
226 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
237 extern int rpl_fseek (FILE *fp, long offset, int whence);

Completed in 180 milliseconds

1234