Searched refs:SEEK_CUR (Results 1 - 25 of 160) sorted by relevance

1234567

/freebsd-13-stable/stand/libsa/
H A Dlseek.c87 case SEEK_CUR:
106 if ((filepos = (f->f_ops->fo_seek)(f, (off_t)0, SEEK_CUR)) == -1)
113 case SEEK_CUR:
132 if (where == SEEK_CUR)
/freebsd-13-stable/lib/libfigpar/
H A Dfigpar.c167 curpos = lseek(fd, 0, SEEK_CUR) - 1;
211 if (lseek(fd, 1, SEEK_CUR) != -1)
252 curpos = lseek(fd, 0, SEEK_CUR) - 1;
274 charpos = lseek(fd, 0, SEEK_CUR) - 1;
285 error = (int)lseek(fd, -2, SEEK_CUR);
298 error = (int)lseek(fd, -2, SEEK_CUR);
359 charpos = lseek(fd, 0, SEEK_CUR) - 1;
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/stride_dd/
H A Dstride_dd.c159 if (lseek(ofd, seek * bsize, SEEK_CUR) == -1) {
198 if (lseek(ifd, (stride - 1) * bsize, SEEK_CUR) == -1) {
202 if (lseek(ofd, (stride - 1) * bsize, SEEK_CUR) == -1) {
/freebsd-13-stable/lib/libc/gen/
H A Dlockf.c51 fl.l_whence = SEEK_CUR;
H A Dpututxline.c101 ret = fseeko(fp, -(off_t)sizeof(fe), SEEK_CUR);
165 if (fseeko(fp, -(off_t)sizeof(fe), SEEK_CUR) == -1)
222 ret = fseeko(fp, -(off_t)sizeof fe, SEEK_CUR);
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_read_open_file.c156 if (lseek(fileno(mine->f), skip, SEEK_CUR) < 0)
158 if (fseeko(mine->f, skip, SEEK_CUR) != 0)
160 if (_fseeki64(mine->f, skip, SEEK_CUR) != 0)
162 if (fseek(mine->f, skip, SEEK_CUR) != 0)
H A Darchive_read_open_fd.c155 if (((old_offset = lseek(mine->fd, 0, SEEK_CUR)) >= 0) &&
156 ((new_offset = lseek(mine->fd, skip, SEEK_CUR)) >= 0))
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_open_memstream.c81 ATF_CHECK(fseek(fp, -1, SEEK_CUR) == 0);
83 ATF_CHECK(fseek(fp, 5, SEEK_CUR) == 0);
H A Dt_fflush.c123 ATF_REQUIRE(fseek(f, 0, SEEK_CUR) == 0);
130 ATF_REQUIRE(lseek(fd, 0, SEEK_CUR) == 3);
/freebsd-13-stable/sys/sys/
H A Dunistd.h110 #define SEEK_CUR 1 /* set file offset to current plus offset */ macro
121 #define L_INCR SEEK_CUR
/freebsd-13-stable/contrib/libarchive/libarchive/test/
H A Dtest_read_format_rar.c1359 /* Use various combinations of SEEK_SET, SEEK_CUR, and SEEK_END */
1362 assertEqualInt(0, archive_seek_data(a, 0, SEEK_CUR));
1363 assertEqualInt(-1, archive_seek_data(a, -10, SEEK_CUR));
1364 assertEqualInt(10, archive_seek_data(a, 10, SEEK_CUR));
1365 assertEqualInt(-1, archive_seek_data(a, -20, SEEK_CUR));
1366 assertEqualInt(10, archive_seek_data(a, 0, SEEK_CUR));
1370 assertEqualInt(file_size + 40, archive_seek_data(a, 0, SEEK_CUR));
1371 assertEqualInt(file_size + 40 + 20, archive_seek_data(a, 20, SEEK_CUR));
1372 assertEqualInt(file_size + 40 + 20 + 20, archive_seek_data(a, 20, SEEK_CUR));
1382 assertEqualInt(file_size + 40, archive_seek_data(a, 40, SEEK_CUR));
[all...]
/freebsd-13-stable/lib/libc/tests/stdio/
H A Dopen_memstream2_test.c182 SEEK_FAIL(-1, SEEK_CUR, EINVAL);
185 SEEK_OK(-1, SEEK_CUR, 2);
189 SEEK_FAIL(2, SEEK_CUR, EOVERFLOW);
H A Dopen_wmemstream_test.c182 SEEK_FAIL(-1, SEEK_CUR, EINVAL);
185 SEEK_OK(-1, SEEK_CUR, 2);
189 SEEK_FAIL(2, SEEK_CUR, EOVERFLOW);
/freebsd-13-stable/crypto/heimdal/lib/krb5/
H A Dstore_mem.c50 sp->seek(sp, size, SEEK_CUR);
61 sp->seek(sp, size, SEEK_CUR);
83 case SEEK_CUR:
H A Dstore_emem.c51 sp->seek(sp, size, SEEK_CUR);
74 sp->seek(sp, size, SEEK_CUR);
92 case SEEK_CUR:
/freebsd-13-stable/crypto/heimdal/lib/kadm5/
H A Dsend_recv.c48 len = krb5_storage_seek(sp, 0, SEEK_CUR);
H A Dlog.c68 krb5_storage_seek(sp, -4, SEEK_CUR);
333 off = krb5_storage_seek (sp, 0, SEEK_CUR);
337 len = krb5_storage_seek (sp, 0, SEEK_CUR) - off;
338 krb5_storage_seek(sp, -(len + 4), SEEK_CUR);
342 krb5_storage_seek(sp, len, SEEK_CUR);
413 off = krb5_storage_seek (sp, 0, SEEK_CUR);
419 len = krb5_storage_seek (sp, 0, SEEK_CUR) - off;
421 krb5_storage_seek(sp, -(len + 4), SEEK_CUR);
426 krb5_storage_seek(sp, len, SEEK_CUR);
468 off = krb5_storage_seek(sp, 0, SEEK_CUR);
[all...]
/freebsd-13-stable/tests/sys/cddl/zfs/bin/
H A Dlargest_file.c93 lseek_ret = lseek(fd, offset, SEEK_CUR);
/freebsd-13-stable/bin/dd/
H A Dposition.c102 if (lseek(in.fd, seek_offset(&in), SEEK_CUR) == -1 &&
172 if (lseek(out.fd, seek_offset(&out), SEEK_CUR) == -1 &&
/freebsd-13-stable/sys/contrib/openzfs/lib/libspl/os/freebsd/
H A Dmnttab.c201 nfs = (int)lseek(fileno(fp), 0, SEEK_CUR);
213 if (lseek(fileno(fp), 1, SEEK_CUR) == -1)
/freebsd-13-stable/lib/libc/stdio/
H A Dftell.c111 pos = _sseek(fp, (fpos_t)0, SEEK_CUR);
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/largest_file/
H A Dlargest_file.c105 llseek_ret = lseek64(fd, offset, SEEK_CUR);
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/mmapwrite/
H A Dmmapwrite.c76 lseek(fd, page_size, SEEK_CUR);
/freebsd-13-stable/bin/pax/
H A Dar_io.c185 else if ((lseek(arfd, (off_t)0L, SEEK_CUR) == -1) && (errno == ESPIPE))
478 if (((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0) ||
637 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0)
773 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0)
776 if (lseek(arfd, mpos, SEEK_CUR) < 0)
834 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) >= 0) {
902 if ((cpos = lseek(arfd, (off_t)0L, SEEK_CUR)) < 0) {
/freebsd-13-stable/contrib/bmake/
H A Darch.c602 if (fseek(arch, -elen, SEEK_CUR) != 0)
619 if (fseek(arch, ((long)size + 1) & ~1, SEEK_CUR) != 0)
818 if (fseek(arch, -(long)sizeof *out_arh, SEEK_CUR) !=
855 SEEK_CUR) != 0) {
861 if (fseek(arch, -elen, SEEK_CUR) != 0) {
877 if (fseek(arch, (size + 1) & ~1, SEEK_CUR) != 0) {

Completed in 436 milliseconds

1234567