Searched refs:fseeko (Results 1 - 25 of 33) sorted by relevance

12

/haiku-fatelf/src/system/libroot/posix/stdio/
H A D_fseek.c11 return fseeko(stream, offset, seekType);
H A Dfseek.c55 fseeko(fp, offset, whence) function
252 __indr_reference(fseeko, fseek);
262 return(fseeko(fp, off, whence));
/haiku-fatelf/src/system/libroot/posix/glibc/libio/
H A Dfseeko.c32 fseeko (fp, offset, whence) function
H A Dstdio.h540 extern int fseeko (FILE *__stream, off_t __off, int __whence) __THROW;
545 extern int __REDIRECT (fseeko,
550 # define fseeko fseeko64
/haiku-fatelf/src/bin/coreutils/lib/
H A Dfflush.c42 fseeko (fp, 0, SEEK_CUR);
66 fseeko (fp, 0, SEEK_CUR);
194 /* Disable seek optimization for the next fseeko call. This tells the
195 following fseeko call to seek to the desired position directly, rather
198 int result = fseeko (stream, pos, SEEK_SET);
H A Dclosein.c85 fseeko (stdin, 0, SEEK_CUR) == lseek (0, 0, SEEK_CUR). */
90 if (fseeko (stdin, 0, SEEK_CUR) == 0 && fflush (stdin) != 0)
H A Dfseeko.c4 /* An fseeko() function that, together with fflush(), is POSIX compliant.
31 #undef fseeko macro
34 # define fseeko fseek macro
56 mode; but has an fseeko that requires 64-bit mode. */
94 #error "Please port gnulib fseeko.c to your platform! Look at the code in fpurge.c, then report this to bug-gnulib."
149 return fseeko (fp, offset, whence);
H A Dfreadseek.c109 return fseeko (fp, offset, SEEK_CUR);
H A Dstdio.in.h219 fseek module depends on the fseeko module, so we only have three
234 3. The developer is using the fseeko module, but not fseek. Gnulib
262 /* Provide fseek, fseeko functions that are aware of a preceding
264 # undef fseeko
265 # define fseeko rpl_fseeko
266 extern int fseeko (FILE *fp, off_t offset, int whence) _GL_ARG_NONNULL ((1));
273 return fseeko (fp, offset, whence);
280 # undef fseeko
282 _GL_WARN_ON_USE (fseeko, "fseeko i
[all...]
H A Dgetpass.c145 fseeko (out, 0, SEEK_CUR);
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dclosein.c85 fseeko (stdin, 0, SEEK_CUR) == lseek (0, 0, SEEK_CUR). */
90 if (fseeko (stdin, 0, SEEK_CUR) == 0 && fflush (stdin) != 0)
H A Dfseeko.c1 /* An fseeko() function that, together with fflush(), is POSIX compliant.
26 #undef fseeko macro
29 # define fseeko fseek macro
58 mode; but has an fseeko that requires 64-bit mode. */
98 #error "Please port gnulib fseeko.c to your platform! Look at the code in fpurge.c, then report this to bug-gnulib."
119 return fseeko (fp, offset, whence);
H A Dfflush.c82 /* Disable seek optimization for the next fseeko call. This tells the
83 following fseeko call to seek to the desired position directly, rather
88 result = fseeko (stream, pos, SEEK_SET);
H A Dstdio.h272 /* Provide fseek, fseeko functions that are aware of a preceding
274 # define fseeko rpl_fseeko
275 extern int fseeko (FILE *fp, off_t offset, int whence);
276 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
279 # undef fseeko macro
280 # define fseeko(f,o,w) \ macro
281 (GL_LINK_WARNING ("fseeko is unportable - " \
282 "use gnulib module fseeko for portability"), \
283 fseeko (f, o, w))
293 "use fseeko functio
[all...]
H A Dstdio.in.h243 /* Provide fseek, fseeko functions that are aware of a preceding
245 # define fseeko rpl_fseeko macro
246 extern int fseeko (FILE *fp, off_t offset, int whence);
247 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
250 # undef fseeko macro
251 # define fseeko(f,o,w) \ macro
252 (GL_LINK_WARNING ("fseeko is unportable - " \
253 "use gnulib module fseeko for portability"), \
254 fseeko (f, o, w))
264 "use fseeko functio
[all...]
/haiku-fatelf/src/kits/storage/
H A DFileIO.cpp58 fseeko(fFile, oldPosition, SEEK_SET);
76 fseeko(fFile, oldPosition, SEEK_SET);
85 if (fseeko(fFile, position, seekMode) < 0)
134 if (fseeko(fFile, position, seekMode) < 0)
/haiku-fatelf/src/bin/network/wget/lib/
H A Dfseeko.c1 /* An fseeko() function that, together with fflush(), is POSIX compliant.
28 #undef fseeko macro
31 # define fseeko fseek macro
53 mode; but has an fseeko that requires 64-bit mode. */
91 #error "Please port gnulib fseeko.c to your platform! Look at the code in fpurge.c, then report this to bug-gnulib."
129 return fseeko (fp, offset, whence);
H A Dstdio.in.h318 /* Provide fseek, fseeko functions that are aware of a preceding
320 # define fseeko rpl_fseeko
321 extern int fseeko (FILE *fp, off_t offset, int whence);
322 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
325 # undef fseeko
326 # define fseeko(f,o,w) \
327 (GL_LINK_WARNING ("fseeko is unportable - " \
328 "use gnulib module fseeko for portability"), \
329 fseeko (f, o, w))
339 "use fseeko functio
[all...]
H A Dgetpass.c144 fseeko (out, 0, SEEK_CUR);
H A DMakefile.am187 ## begin gnulib module fseeko
190 EXTRA_DIST += fseeko.c stdio-impl.h
192 EXTRA_libgnu_a_SOURCES += fseeko.c
194 ## end gnulib module fseeko
/haiku-fatelf/src/tests/system/libroot/posix/
H A Dfseek_test.cpp2 Tests of fseek and fseeko.
85 /* Do the same for fseeko(). */
93 if (fseeko(fp, 0, SEEK_CUR) != 0) {
119 /* Now with fseeko. */
120 if (fseeko(fp, 0, SEEK_SET) != 0) {
121 printf("%d: fseeko(fp, 0, SEEK_SET) failed\n", __LINE__);
133 printf("%d: content after fseeko(,,SEEK_SET) wrong\n", __LINE__);
155 /* Now with fseeko. */
156 if (fseeko(fp, -((int) sizeof(outstr) - 1), SEEK_CUR) != 0) {
157 printf("%d: fseeko(f
[all...]
/haiku-fatelf/headers/posix/
H A Dstdio.h110 extern int fseeko(FILE *stream, off_t offset, int seekType);
/haiku-fatelf/src/bin/gdb/bfd/
H A Dbfdio.c59 return fseeko (file, offset, whence);
/haiku-fatelf/src/bin/patch/
H A Dcommon.h280 # define file_seek fseeko
/haiku-fatelf/src/bin/network/ftp/
H A Dftp.c685 rc = fseeko(fin, restart_point, SEEK_SET);
1133 if (fseeko(fout, (off_t)0, SEEK_SET) < 0)
1141 if (fseeko(fout, (off_t)0, SEEK_CUR) < 0) {

Completed in 215 milliseconds

12