Searched refs:off_t (Results 26 - 50 of 91) sorted by relevance

1234

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dunistd.h125 ssize_t pread(int, void *, size_t, off_t);
126 ssize_t pwrite(int, const void *, size_t, off_t);
187 int lockf(int, int, off_t);
208 int fsync_range(int, int, off_t, off_t);
H A Ddirent.h66 off_t dd_seek; /* magic cookie returned by getdents */
H A Dstdio.h90 int fseeko (FILE *, off_t, int);
177 innards of an fpos_t anyway. The library internally uses off_t,
1505 #ifndef off_t
1506 typedef __off_t off_t; typedef
1507 #define off_t __off_t macro
1508 #endif /* off_t */
1511 int fseeko(FILE *, off_t, int);
1512 off_t ftello(FILE *);
/vbox/src/libs/zlib-1.2.6/examples/
H A Dzran.c63 off_t out; /* corresponding offset in uncompressed data */
64 off_t in; /* offset in input file of first full byte */
88 off_t in, off_t out, unsigned left, unsigned char *window)
139 local int build_index(FILE *in, off_t span, struct access **built)
142 off_t totin, totout; /* our own total counters to avoid 4GB limit */
143 off_t last; /* totout value of last access point */
244 local int extract(FILE *in, struct access *index, off_t offset,
352 off_t offset;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dstat.h55 off_t st_size; ///< file size, in bytes
56 off_t st_physsize; ///< physical space the file consumes
57 off_t st_curpos; ///< current position within the file, or XY coord. for Console
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dposix_io.h26 off_t offset, size_t len );
H A Dxfer.h37 off_t offset;
105 extern int xfer_seek ( struct interface *intf, off_t offset );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Console/
H A DdaConsole.c98 off_t
102 off_t Position,
150 IN off_t *Position,
223 IN OUT off_t *offset, // Console ignores this
351 Buffer->st_size = (off_t)Stream->NumRead;
358 Buffer->st_curpos = (off_t)CursorPos.Offset;
359 Buffer->st_size = (off_t)Stream->NumWritten;
369 Buffer->st_physsize = (off_t)CursorPos.Offset;
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dlibkir.h170 copy_to_user ( userptr_t buffer, off_t offset, const void *src, size_t len ) {
184 copy_from_user ( void *dest, userptr_t buffer, off_t offset, size_t len ) {
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_prov.h105 off_t sf_size;
106 off_t sf_alloc;
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h82 typedef INT64 off_t; typedef
134 off_t st_size; /* file size, in bytes */
184 off_t lseek (int, off_t, int);
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/test/
H A Dfsw_posix.c167 off_t fsw_posix_lseek(struct fsw_posix_file *file, off_t offset, int whence)
368 off_t block_offset, seek_result;
374 block_offset = (off_t)phys_bno * vol->phys_blocksize;
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dlinux_api.h65 int flags, int fd, off_t offset );
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxDev-haiku.c80 static status_t VBoxGuestHaikuWrite(void *cookie, off_t position, const void *data, size_t *numBytes);
81 static status_t VBoxGuestHaikuRead(void *cookie, off_t position, void *data, size_t *numBytes);
372 static status_t VBoxGuestHaikuWrite(void *cookie, off_t position, const void *data, size_t *numBytes)
388 static status_t VBoxGuestHaikuRead(void *cookie, off_t position, void *data, size_t *numBytes)
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dtimer.c65 MAP_PRIVATE, t->fd, (off_t)raddr);
74 (off_t)raddr);
/vbox/src/VBox/Additions/solaris/Virtio/
H A DVirtio-solaris.h109 typedef void (*PFNVIRTIOGET)(struct VirtioDevice *pDevice, off_t off, void *pv, size_t cb);
110 typedef void (*PFNVIRTIOSET)(struct VirtioDevice *pDevice, off_t off, void *pv, size_t cb);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/
H A Dnextstep.c56 int fildes, off_t off)
90 int fildes, off_t off)
/vbox/src/VBox/Additions/haiku/VBoxVideo/driver/
H A Ddriver.cpp130 status_t device_read(void *dev, off_t pos, void *buf, size_t *len);
131 status_t device_write(void *dev, off_t pos, const void *buf, size_t *len);
315 status_t device_read(void *dev, off_t pos, void *buf, size_t *len)
322 status_t device_write(void *dev, off_t pos, const void *buf, size_t *len)
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/md/
H A Dsunos4.h152 extern int ftruncate(int, off_t);
/vbox/src/VBox/Runtime/r3/posix/
H A Dfileio-posix.cpp438 /* check that within off_t range. */
439 if ( sizeof(off_t) < sizeof(offSeek)
447 off_t offCurrent = lseek(RTFileToNative(hFile), (off_t)offSeek, aSeekRecode[uMethod]);
530 if ( sizeof(off_t) < sizeof(cbSize)
538 if (chsize(RTFileToNative(hFile), (off_t)cbSize) == 0)
544 if (ftruncate(RTFileToNative(hFile), (off_t)cbSize) == 0)
600 off_t cbMedia = 0;
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Dport.h81 typedef long off_t; typedef
301 ssize_t pread( int fd, void *buf, size_t count, off_t offset );
305 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset );
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dport.h80 typedef long off_t; typedef
305 ssize_t pread( int fd, void *buf, size_t count, off_t offset );
309 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset );
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Dport.h81 typedef long off_t; typedef
301 ssize_t pread( int fd, void *buf, size_t count, off_t offset );
305 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset );
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dport.h78 typedef long off_t; typedef
310 ssize_t pread( int fd, void *buf, size_t count, off_t offset );
314 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset );
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dport.h81 typedef long off_t; typedef
301 ssize_t pread( int fd, void *buf, size_t count, off_t offset );
305 ssize_t pwrite( int fd, const void *buf, size_t count, off_t offset );

Completed in 98 milliseconds

1234