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

123

/freebsd-10.1-release/lib/libc/sys/
H A Dlseek.c46 lseek(fd, offset, whence)
49 int whence;
53 return(__sys_lseek(fd, offset, whence));
55 return(__sys_freebsd6_lseek(fd, 0, offset, whence));
/freebsd-10.1-release/tools/regression/lib/libc/stdio/
H A Dtest-open_memstream.c161 #define SEEK_FAIL(offset, whence, error) do { \
163 if (fseeko(fp, (offset), (whence)) == 0) \
165 __STRING(offset), __STRING(whence), \
169 __STRING(offset), __STRING(whence), errno, \
173 #define SEEK_OK(offset, whence, result) do { \
174 if (fseeko(fp, (offset), (whence)) != 0) \
176 __STRING(offset), __STRING(whence), strerror(errno)); \
179 __STRING(offset), __STRING(whence), \
H A Dtest-open_wmemstream.c161 #define SEEK_FAIL(offset, whence, error) do { \
163 if (fseeko(fp, (offset), (whence)) == 0) \
165 __STRING(offset), __STRING(whence), \
169 __STRING(offset), __STRING(whence), errno, \
173 #define SEEK_OK(offset, whence, result) do { \
174 if (fseeko(fp, (offset), (whence)) != 0) \
176 __STRING(offset), __STRING(whence), strerror(errno)); \
179 __STRING(offset), __STRING(whence), \
/freebsd-10.1-release/lib/libc/stdio/
H A Dstdio.c69 __sseek(void *cookie, fpos_t offset, int whence) argument
73 return (lseek(fp->_file, (off_t)offset, whence));
132 _sseek(FILE *fp, fpos_t offset, int whence) argument
139 ret = (*fp->_seek)(fp->_cookie, offset, whence);
150 if (offset != 0 || whence != SEEK_CUR) {
H A Dfseek.c54 fseek(FILE *fp, long offset, int whence) argument
64 ret = _fseeko(fp, (off_t)offset, whence, 1);
72 fseeko(FILE *fp, off_t offset, int whence) argument
82 ret = _fseeko(fp, offset, whence, 0);
94 _fseeko(FILE *fp, off_t offset, int whence, int ltest) argument
111 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
112 * After this, whence is either SEEK_SET or SEEK_END.
114 switch (whence) {
142 whence = SEEK_SET;
188 if (whence
[all...]
H A Dfmemopen.c49 static fpos_t fmemopen_seek(void *cookie, fpos_t offset, int whence);
209 fmemopen_seek(void *cookie, fpos_t offset, int whence) argument
214 switch (whence) {
H A Dopen_memstream.c108 memstream_seek(void *cookie, fpos_t pos, int whence) argument
119 switch (whence) {
157 whence, (intmax_t)old, (intmax_t)ms->offset);
/freebsd-10.1-release/contrib/sendmail/libsm/
H A Dsyslogio.c121 ** offset -- the new offset position relative to 'whence'
122 ** whence -- flag indicating start of 'offset'
129 sm_syslogseek(fp, offset, whence)
132 int whence;
H A Dfseek.c68 ** offset -- seek offset based on 'whence'
69 ** whence -- indicates where seek is relative from.
77 sm_io_seek(fp, timeout, offset, whence)
81 int SM_NONVOLATILE whence;
129 ** Change any SM_IO_SEEK_CUR to SM_IO_SEEK_SET, and check `whence'
130 ** argument. After this, whence is either SM_IO_SEEK_SET or
134 switch (whence)
168 whence = SM_IO_SEEK_SET;
215 if (whence == SM_IO_SEEK_SET)
322 (*seekfn)(fp, (off_t) offset, whence)
[all...]
H A Dsmstdio.c193 ** offset -- new location based on 'whence'
194 ** whence -- indicates "base" for 'offset'
201 sm_stdioseek(fp, offset, whence)
204 int whence;
211 return fseek(s, offset, whence);
H A Dstdio.c167 ** offset -- how far to position from "base" (set by 'whence')
168 ** whence -- indicates where the "base" of the 'offset' to start
179 sm_stdseek(fp, offset, whence)
182 int whence;
186 ret = lseek(fp->f_file, (off_t) offset, whence);
/freebsd-10.1-release/contrib/ntp/lib/isc/include/isc/
H A Dstdio.h51 isc_stdio_seek(FILE *f, long offset, int whence);
/freebsd-10.1-release/contrib/binutils/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.c53 real_fseek (FILE *file, file_ptr offset, int whence) argument
56 return fseeko64 (file, offset, whence);
58 return fseeko (file, offset, whence);
60 return fseek (file, offset, whence);
101 . int (*bseek) (struct bfd *abfd, file_ptr offset, int whence);
H A Dcache.c252 cache_bseek (struct bfd *abfd, file_ptr offset, int whence) argument
254 FILE *f = bfd_cache_lookup (abfd, whence != SEEK_CUR ? CACHE_NO_SEEK : 0);
257 return real_fseek (f, offset, whence);
/freebsd-10.1-release/crypto/heimdal/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);
H A Dstore_mem.c72 mem_seek(krb5_storage *sp, off_t offset, int whence) argument
75 switch(whence){
/freebsd-10.1-release/sys/i386/ibcs2/
H A Dibcs2_other.c77 largs.whence = uap->whence;
/freebsd-10.1-release/contrib/ntp/lib/isc/unix/
H A Dstdio.c53 isc_stdio_seek(FILE *f, long offset, int whence) { argument
56 r = fseek(f, offset, whence);
/freebsd-10.1-release/contrib/ntp/lib/isc/win32/
H A Dstdio.c52 isc_stdio_seek(FILE *f, long offset, int whence) { argument
55 r = fseek(f, offset, whence);
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_read_open_memory.c52 static int64_t memory_read_seek(struct archive *, void *, int64_t offset, int whence);
148 memory_read_seek(struct archive *a, void *client_data, int64_t offset, int whence) argument
153 switch (whence) {
/freebsd-10.1-release/contrib/libarchive/libarchive/test/
H A Dread_open_memory.c53 static int64_t memory_read_seek(struct archive *, void *, int64_t request, int whence);
181 memory_read_seek(struct archive *a, void *client_data, int64_t offset, int whence) argument
186 switch (whence) {
/freebsd-10.1-release/lib/libz/
H A Dgzlib.c365 z_off64_t ZEXPORT gzseek64(file, offset, whence)
368 int whence;
386 if (whence != SEEK_SET && whence != SEEK_CUR)
390 if (whence == SEEK_SET)
442 z_off_t ZEXPORT gzseek(file, offset, whence)
445 int whence;
449 ret = gzseek64(file, (z_off64_t)offset, whence);
/freebsd-10.1-release/sys/boot/userboot/
H A Duserboot.h102 int whence);
/freebsd-10.1-release/sys/powerpc/wii/
H A Dwii_ipcreg.h75 int32_t whence; member in struct:wiiipc_ipc_msg::__anon11274::__anon11277

Completed in 344 milliseconds

123