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

123

/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dfseeko.c1 /* $NetBSD: fseeko.c,v 1.4 2005/05/11 01:01:56 lukem Exp $ */
33 fseeko(FILE *stream, off_t offset, int whence) function
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dfsetpos.c50 return (fseeko(iop, (off_t)*pos, SEEK_SET));
H A Dfseek.c74 fseeko(fp, offset, whence) function
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A Dfseeko.c31 fseeko(Sfio_t* f, off_t off, int op) function
33 STDIO_INT(f, "fseeko", int, (Sfio_t*, off_t, int), (f, off, op))
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstdio_.h222 /* Provide fseek, fseeko functions that are aware of a preceding
224 # define fseeko rpl_fseeko macro
225 extern int fseeko (FILE *fp, off_t offset, int whence);
226 # define fseek(fp, offset, whence) fseeko (fp, (off_t)(offset), whence)
229 # undef fseeko macro
230 # define fseeko(f,o,w) \ macro
231 (GL_LINK_WARNING ("fseeko is unportable - " \
232 "use gnulib module fseeko for portability"), \
233 fseeko (f, o, w))
243 "use fseeko functio
[all...]
/macosx-10.10.1/text_cmds-88/tail/
H A Dforward.c113 if (fseeko(fp, off, SEEK_SET) == -1) {
144 fseeko(fp, -off, SEEK_END) == -1) {
161 if (fseeko(fp, (off_t)0, SEEK_END) == -1) {
233 if (0 != fseeko(fp, sbp->st_size - 1, SEEK_SET)) {
252 if (0 != fseeko(fp, try_at, SEEK_SET)) {
295 if (0 != fseeko(fp, target, SEEK_SET)) {
353 if (fseeko(fp, sbp->st_size, SEEK_SET) == -1) {
/macosx-10.10.1/dtrace-147/head/
H A Ddarwin_shim.h64 #define fseeko64 fseeko
/macosx-10.10.1/text_cmds-88/ed/
H A Dbuf.c59 if (fseeko(sfp, sfseek, SEEK_SET) < 0) {
102 if (fseeko(sfp, (off_t)0, SEEK_END) < 0) {
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dsysdep.h155 extern int fseeko (FILE *stream, off_t offset, int whence);
H A Dbfdio.c60 return fseeko (file, offset, whence);
/macosx-10.10.1/Libc-1044.1.2/gen/NetBSD/
H A Dutmpx.c92 (void)fseeko(U->fp, (off_t)sizeof(struct utmpx32), SEEK_SET);
94 (void)fseeko(U->fp, (off_t)sizeof(U->ut), SEEK_SET);
451 if (fseeko(U->fp, (off_t)0, SEEK_END) == -1)
472 if (fseeko(U->fp, -(off_t)sizeof(ut32), SEEK_CUR) == -1)
474 if (fseeko(U->fp, -(off_t)sizeof(U->ut), SEEK_CUR) == -1)
/macosx-10.10.1/mail_cmds-30/mail/
H A Dfio.c88 (void)fseeko(ibuf, offset, SEEK_SET);
95 (void)fseeko(otf, (off_t)0, SEEK_END);
225 if (fseeko(itf,
227 err(1, "fseeko");
H A Dedit.c117 (void)fseeko(otf, (off_t)0, SEEK_END);
H A Dquit.c123 (void)fseeko(fbuf, mailsize, SEEK_SET);
448 (void)fseeko(ibuf, mailsize, SEEK_SET);
H A Dcollect.c632 (void)fseeko(nf, (off_t)0, SEEK_END);
854 (void)fseeko(nf, (off_t)0, SEEK_END);
/macosx-10.10.1/text_cmds-88/csplit/
H A Dcsplit.c329 fseeko(ofp, -(off_t)sizeof(buf), SEEK_CUR);
334 if (fseeko(ofp, -(off_t)nread, SEEK_CUR) != 0)
342 if (fseeko(ofp, nread - i + 1, SEEK_CUR) != 0)
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_read_open_file.c144 if (fseeko(mine->f, request, SEEK_CUR) != 0)
/macosx-10.10.1/mail_cmds-30/msgs/
H A Dmsgs.c705 fseeko(newmsg, (off_t)0, SEEK_END);
734 fseeko(f, oldpos, SEEK_SET);
816 fseeko(newmsg, oldpos, SEEK_SET);
826 fseeko(newmsg, oldpos, SEEK_SET);/* reposition current message */
909 fseeko(infile, frompos, SEEK_SET);
/macosx-10.10.1/Libc-1044.1.2/nls/FreeBSD/
H A Dmsgcat.c402 if (fseeko(cat->fp, nextSet, SEEK_SET) == -1) {
435 if (fseeko(cat->fp, ntohll(set->data.off), SEEK_SET) == -1)
447 if (fseeko(cat->fp, ntohll(set->u.firstMsg), SEEK_SET) == -1) {
/macosx-10.10.1/shell_cmds-179/hexdump/
H A Ddisplay.c398 if (fseeko(stdin, skip, SEEK_SET) == 0) {
401 if (fseeko(stdin, skip, SEEK_SET))
/macosx-10.10.1/vim-55/src/
H A Dosdef1.h.in25 extern int fseeko __ARGS((FILE *, off_t, int));
/macosx-10.10.1/text_cmds-88/sort/
H A Dsystem.h735 #if ! HAVE_FSEEKO && ! defined fseeko
736 # define fseeko(s, o, w) ((o) == (long int) (o) \ macro
/macosx-10.10.1/syslog-267/libsystem_asl.tproj/src/
H A Dasl_file.c150 status = fseeko(s->store, off, SEEK_SET);
172 status = fseeko(s->store, off, SEEK_SET);
476 status = fseeko(out->store, 0, SEEK_END);
640 status = fseeko(s->store, DB_HEADER_FILTER_MASK_OFFSET, SEEK_SET);
679 status = fseeko(new->store, DB_HEADER_FILTER_MASK_OFFSET, SEEK_SET);
1117 status = fseeko(s->store, 0, SEEK_END);
1134 status = fseeko(s->store, off, SEEK_SET);
1143 status = fseeko(s->store, off, SEEK_SET);
1150 status = fseeko(s->store, 0, SEEK_END);
1206 status = fseeko(
[all...]
/macosx-10.10.1/gpatch-3/patch/
H A Dcommon.h263 # define file_seek fseeko
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Dreadline.c1196 if (fseeko(fp, (off_t)sizeof(buf) * count, SEEK_SET) ==
1242 if (fseeko(tp, (off_t)sizeof(buf) * count, SEEK_SET) < 0) {
1260 if (fseeko(fp, 0, SEEK_SET) == (off_t)-1) {
1265 if (fseeko(tp, (off_t)sizeof(buf) * count + (cp - buf), SEEK_SET) ==

Completed in 181 milliseconds

123