Home
last modified time | relevance | path

Searched refs:off_t (Results 1 – 25 of 812) sorted by path

12345678910>>...33

/illumos-gate/usr/src/boot/common/
H A Dbootstrap.h71 int kern_pread(int fd, vm_offset_t dest, size_t len, off_t off);
72 void *alloc_pread(int fd, off_t off, size_t len);
H A Dgfx_fb.c491 off_t off; in gfxfb_blt_fill()
572 off_t off; in gfxfb_blt_video_to_buffer()
674 off_t off; in gfxfb_blt_buffer_to_video()
780 off_t off; in gfxfb_blt_video_to_video()
H A Dload_elf.c648 if (lseek(ef->fd, (off_t)shdr[i].sh_offset, SEEK_SET) == -1) { in __elfN()
H A Dload_elf_obj.c203 shdr = alloc_pread(ef->fd, (off_t)hdr->e_shoff, shdrbytes); in __elfN()
318 cshdr->sh_size, (off_t)cshdr->sh_offset) != 0) { in __elfN()
H A Dmisc.c121 kern_pread(int fd, vm_offset_t dest, size_t len, off_t off) in kern_pread()
144 alloc_pread(int fd, off_t off, size_t len) in alloc_pread()
/illumos-gate/usr/src/boot/i386/isoboot/
H A Dcd9660read.c324 off_t byte_off; in cd9660_fsread()
/illumos-gate/usr/src/boot/i386/libi386/
H A Dlibi386.h39 off_t offset;
/illumos-gate/usr/src/boot/include/
H A Dstdio.h53 typedef __off_t off_t; typedef
H A Dunistd.h48 typedef __off_t off_t; typedef
352 off_t lseek(int, off_t, int);
394 int ftruncate(int, off_t);
419 ssize_t pread(int, void *, size_t, off_t);
420 ssize_t pwrite(int, const void *, size_t, off_t);
425 int truncate(const char *, off_t);
454 int lockf(int, int, off_t);
580 off_t __syscall(quad_t, ...);
/illumos-gate/usr/src/boot/libsa/
H A Dbzipfs.c72 static off_t bzf_seek(struct open_file *, off_t, int);
323 static off_t
324 bzf_seek(struct open_file *f, off_t offset, int where) in bzf_seek()
327 off_t target; in bzf_seek()
H A Dcd9660.c69 static off_t cd9660_seek(struct open_file *f, off_t offset, int where);
99 off_t f_off; /* Current offset within file */
101 off_t f_size; /* Size of file */
588 static off_t
589 cd9660_seek(struct open_file *f, off_t offset, int where) in cd9660_seek()
H A Ddosfs.c47 static off_t dos_seek(struct open_file *, off_t offset, int);
140 static off_t fsize(DOS_FS *, DOS_DE *);
284 off_t size; in dos_read()
341 static off_t
342 dos_seek(struct open_file *fd, off_t offset, int whence) in dos_seek()
344 off_t off; in dos_seek()
729 static off_t
H A Dext2fs.c101 static off_t ext2fs_seek(struct open_file *f, off_t offset, int where);
304 off_t f_seekp; /* seek pointer */
847 static off_t
848 ext2fs_seek(struct open_file *f, off_t offset, int where) in ext2fs_seek()
H A Dgzipfs.c40 off_t zf_dataoffset;
50 static off_t zf_seek(struct open_file *f, off_t offset, int where);
95 get_byte(struct z_file *zf, off_t *curoffp) in get_byte()
297 static off_t
298 zf_seek(struct open_file *f, off_t offset, int where) in zf_seek()
301 off_t target; in zf_seek()
337 off_t pos1, pos2; in zf_stat()
348 sb->st_size = (off_t)size; in zf_stat()
H A Dlseek.c66 off_t
67 lseek(int fd, off_t offset, int where) in lseek()
69 off_t bufpos, filepos, target; in lseek()
H A Dnfs.c114 off_t off;
128 static off_t nfs_seek(struct open_file *f, off_t offset, int where);
390 nfs_readdata(struct nfs_iodesc *d, off_t off, void *addr, size_t len) in nfs_readdata()
707 off_t
708 nfs_seek(struct open_file *f, off_t offset, int where) in nfs_seek()
H A Dnullfs.c96 off_t
97 null_seek(struct open_file *f __unused, off_t offset __unused, in null_seek()
H A Dpkgfs.c46 static off_t pkg_seek(struct open_file *, off_t, int);
113 off_t tf_ofs;
114 off_t tf_size;
115 off_t tf_fp;
273 off_t fp; in pkg_read()
330 static off_t
335 off_t delta; in pkg_seek()
520 static off_t
587 static off_t
617 off_t ofs; in new_package()
[all …]
H A Dsplitfs.c43 off_t tot_pos; /* Offset from the beginning of the sequence */
44 off_t file_pos; /* Offset from the beginning of the slice */
51 static off_t splitfs_seek(struct open_file *f, off_t offset, int where);
234 static off_t
235 splitfs_seek(struct open_file *f, off_t offset, int where) in splitfs_seek()
239 off_t new_pos, seek_by; in splitfs_seek()
H A Dstand.h113 off_t (*fo_seek)(struct open_file *f, off_t offset, int where);
183 off_t f_offset; /* current file offset */
186 off_t f_raoffset; /* consumer offset in readahead buffer */
397 extern off_t null_seek(struct open_file *, off_t, int);
H A Dtftp.c71 static off_t tftp_seek(struct open_file *, off_t, int);
608 static off_t
609 tftp_seek(struct open_file *f, off_t offset, int where) in tftp_seek()
H A Dufs.c89 static off_t ufs_seek(struct open_file *, off_t, int);
108 off_t f_seekp; /* seek pointer */
770 static off_t
771 ufs_seek(struct open_file *f, off_t offset, int where) in ufs_seek()
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dzfs.c57 static off_t zfs_seek(struct open_file *, off_t, int);
78 off_t f_seekp; /* seek pointer */
164 static off_t
165 zfs_seek(struct open_file *f, off_t offset, int where) in zfs_seek()
345 vdev_read(vdev_t *vdev __unused, void *priv, off_t offset, void *buf, in vdev_read()
351 off_t start_sec; in vdev_read()
465 vdev_write(vdev_t *vdev, off_t offset, void *buf, size_t bytes) in vdev_write()
470 off_t start_sec; in vdev_write()
H A Dzfsimpl.c225 off_t offset, size_t size) in vdev_read_phys()
381 off_t offset = 0; in vdev_indirect_mapping_entry()
690 off_t offset, size_t bytes) in vdev_indirect_read()
778 off_t offset, size_t bytes) in vdev_disk_read()
795 off_t offset, size_t bytes) in vdev_mirror_read()
1615 off_t off; in vdev_label_read()
1673 off_t off; in vdev_label_write()
2282 off_t offset; in zio_read()
2837 off_t off = ((off_t)(i + 1)) << zl.l_bs; in fzap_list()
2930 off_t offset; in objset_get_dnode()
[all …]
/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfsimpl.h1672 typedef int vdev_phys_read_t(struct vdev *, void *, off_t, void *, size_t);
1673 typedef int vdev_phys_write_t(struct vdev *, off_t, void *, size_t);
1674 typedef int vdev_read_t(struct vdev *, const blkptr_t *, void *, off_t, size_t);

12345678910>>...33