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

1234

/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dfseeko.c36 fseeko (FILE *stream, off_t offset, int whence) argument
42 if (fseek (stream, pos, whence) != 0)
45 whence = SEEK_CUR;
47 return fseek (stream, (long) offset, whence);
/netbsd-6-1-5-RELEASE/lib/libc/stdio/
H A Dfseek.c54 fseek(FILE *fp, long l_offset, int whence) argument
58 if (whence == SEEK_SET)
62 return fseeko(fp, offset, whence);
H A D_fseeko.c40 fseeko(FILE *stream, off_t offset, int whence)
43 return _fseeko(stream, offset, whence);
H A Dstdio.c98 __sseek(cookie, offset, whence)
101 int whence;
108 ret = lseek(__sfileno(fp), offset, whence);
H A Dfseeko.c63 fseeko(FILE *fp, off_t offset, int whence)
89 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
90 * After this, whence is either SEEK_SET or SEEK_END.
92 switch (whence) {
118 whence = SEEK_SET;
161 if (whence == SEEK_SET)
250 (*seekfn)(fp->_cookie, offset, whence) == POS_ERR) {
H A Dfmemopen.c101 fmemopen_seek(void *cookie, off_t offset, int whence) argument
108 switch (whence) {
/netbsd-6-1-5-RELEASE/lib/libc/sys/
H A Dlseek.c57 lseek(fd, offset, whence)
60 int whence; variable
63 return __lseek(fd, 0, offset, whence);
/netbsd-6-1-5-RELEASE/sys/compat/linux/common/
H A Dlinux_llseek.c66 syscallarg(int) whence;
76 SCARG(&bla, whence) = SCARG(uap, whence);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/include/isc/
H A Dstdio.h53 isc_stdio_seek(FILE *f, long offset, int whence);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/include/isc/
H A Dstdio.h53 isc_stdio_seek(FILE *f, long offset, int whence);
/netbsd-6-1-5-RELEASE/sys/compat/linux32/arch/amd64/
H A Dlinux32_missing.h57 syscallarg(int) whence; member in struct:linux_sys_llseek_args
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dstore_fd.c58 fd_seek(krb5_storage * sp, off_t offset, int whence) argument
60 return lseek(FD(sp), offset, whence);
H A Dstore_emem.c81 emem_seek(krb5_storage *sp, off_t offset, int whence) argument
84 switch(whence){
H A Dstore_mem.c74 mem_seek(krb5_storage *sp, off_t offset, int whence) argument
77 switch(whence){
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/unix/
H A Dstdio.c55 isc_stdio_seek(FILE *f, long offset, int whence) { argument
58 r = fseek(f, offset, whence);
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/win32/
H A Dstdio.c54 isc_stdio_seek(FILE *f, long offset, int whence) { argument
57 r = fseek(f, offset, whence);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/unix/
H A Dstdio.c54 isc_stdio_seek(FILE *f, long offset, int whence) { argument
57 r = fseek(f, offset, whence);
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/win32/
H A Dstdio.c54 isc_stdio_seek(FILE *f, long offset, int whence) { argument
57 r = fseek(f, offset, whence);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/bfd/
H A Dsysdep.h156 extern int fseeko (FILE *stream, off_t offset, int whence);
162 extern int fseeko64 (FILE *stream, off64_t offset, int whence);
H A Dbfdio.c58 real_fseek (FILE *file, file_ptr offset, int whence) argument
61 return fseeko64 (file, offset, whence);
63 return fseeko (file, offset, whence);
65 return fseek (file, offset, whence);
157 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/bfd/
H A Dsysdep.h156 extern int fseeko (FILE *stream, off_t offset, int whence);
162 extern int fseeko64 (FILE *stream, off64_t offset, int whence);
H A Dbfdio.c58 real_fseek (FILE *file, file_ptr offset, int whence) argument
61 return fseeko64 (file, offset, whence);
63 return fseeko (file, offset, whence);
65 return fseek (file, offset, whence);
157 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
/netbsd-6-1-5-RELEASE/sys/arch/zaurus/stand/zboot/
H A Dpathfs.c72 pathfs_seek(struct open_file *fd, off_t offset, int whence) argument
75 return ulseek((int)fd->f_devdata, offset, whence);
/netbsd-6-1-5-RELEASE/sys/arch/hpcmips/stand/libsa/
H A Dwinfs.c138 win_seek(struct open_file *f, off_t offset, int whence) argument
144 switch (whence) {
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/src/lib/
H A Dbufgap.c294 bufgap_seek(bufgap_t *bp, int64_t off, int whence, int type) argument
298 switch(whence) {
321 switch(whence) {
339 switch(whence) {
380 bufgap_tell(bufgap_t *bp, int whence, int type) argument
382 switch(whence) {
390 (void) fprintf(stderr, "weird whence in bufgap_tell\n");

Completed in 306 milliseconds

1234