Searched refs:SEEK_SET (Results 1 - 25 of 75) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dunistd.h77 #ifndef SEEK_SET
78 #define SEEK_SET 0 /**< set file offset to offset */ macro
88 #define L_SET SEEK_SET
H A DEfiSysCall.h9 SEEK_SET 0 set file offset to offset
80 #ifndef SEEK_SET
81 #define SEEK_SET 0 /**< set file offset to offset */ macro
H A Dfcntl.h127 #ifndef SEEK_SET
128 #define SEEK_SET 0 /* set file offset to offset */ macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dfsetpos.c62 return (fseeko(iop, (off_t)*pos, SEEK_SET));
H A Drewind.c61 (void) fseek(fp, 0L, SEEK_SET);
H A Dfseek.c62 * Zero extend the offset if SEEK_SET to allow access to 4GB files
69 if (whence == SEEK_SET)
H A Dfseeko.c109 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
110 * After this, whence is either SEEK_SET or SEEK_END.
139 whence = SEEK_SET;
143 case SEEK_SET:
183 if (whence == SEEK_SET)
256 if ((*seekfn)(fp->_cookie, curoff, SEEK_SET) == POS_ERR)
/vbox/src/bldprogs/
H A DVBoxPeSetVersion.cpp39 if (fseek(pFile, MzHdr.e_lfanew, SEEK_SET) != 0)
72 if (fseek(pFile, MzHdr.e_lfanew, SEEK_SET) != 0)
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dswapdevids.pl44 seek(F, 0, SEEK_SET) or die "$file: Cannot seek to beginning\n";
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiLdrImage/
H A DEfiLdrImage.c140 fseek (in, 0, SEEK_SET);
288 fseek (fpOut, EfiLdrHeader.FileLength, SEEK_SET);
319 fseek (fpOut, 0, SEEK_SET);
/vbox/src/VBox/Runtime/r3/darwin/
H A Dfilelock-darwin.cpp79 fl.l_whence = SEEK_SET;
145 fl.l_whence = SEEK_SET;
/vbox/src/VBox/Runtime/r3/os2/
H A Dfilelock-os2.cpp79 fl.l_whence = SEEK_SET;
160 fl.l_whence = SEEK_SET;
/vbox/src/VBox/Runtime/r3/posix/
H A Dfilelock-posix.cpp78 fl.l_whence = SEEK_SET;
122 fl.l_whence = SEEK_SET;
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/io/
H A Dtst.fds.c88 (void) lseek(fds[n - 1], 123, SEEK_SET);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16io.c665 seekOrigin = lseek( f, 0l, SEEK_SET );
700 rc = lseek( f, seekOrigin, SEEK_SET );
734 seekOrigin = lseek( f, 0l, SEEK_SET );
757 rc = lseek( f, seekOrigin, SEEK_SET );
785 seekOrigin = lseek( f, 0l, SEEK_SET );
806 rc = lseek( f, seekOrigin, SEEK_SET );
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgzlog.c415 if (lseek(log->fd, 0, SEEK_SET) < 0 ||
451 ret = lseek(log->fd, HEAD, SEEK_SET) < 0 ||
476 if (back != 8 && (lseek(log->fd, log->last - len, SEEK_SET) < 0 ||
491 return lseek(log->fd, log->last - len, SEEK_SET) < 0 ||
645 SEEK_SET) < 0 ||
934 if (lseek(log->fd, log->first - 1, SEEK_SET) < 0)
H A Dgzappend.c353 lseek(gz.fd, lastoff - (lastbit != 0), SEEK_SET);
372 lseek(gz.fd, --end, SEEK_SET);
376 lseek(gz.fd, end, SEEK_SET);
/vbox/src/VBox/Additions/WINNT/Installer/InstallHelper/
H A DVBoxGuestInstallHelper.cpp301 if (!fseek(pFh, 60L /*0x3C*/, SEEK_SET))
307 if (!fseek(pFh, byOffsetPE, SEEK_SET))
331 if (!fseek(pFh, byOffsetCOFF, SEEK_SET))
/vbox/src/VBox/Main/webservice/
H A Dsplit-soapC.cpp61 int rc3 = fseek(pFileIn, 0, SEEK_SET);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiRom/
H A DEfiRom.c262 fseek (InFptr, 0, SEEK_SET);
512 fseek (InFptr, 0, SEEK_SET);
774 fseek (Fptr, 0, SEEK_SET);
793 fseek (Fptr, (long) DosHeader.e_lfanew, SEEK_SET); local
1312 if (fseek (InFptr, ImageStart + PciRomHdr.PcirOffset, SEEK_SET)) {
1406 if (fseek (InFptr, ImageStart, SEEK_SET)) {
1470 if (fseek (InFptr, ImageStart + (PciDs23.ImageLength * 512), SEEK_SET)) {
1475 if (fseek (InFptr, ImageStart + (PciDs30.ImageLength * 512), SEEK_SET)) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenPage/
H A DGenPage.c261 fseek (NoPageFile, 0, SEEK_SET);
279 fseek (PageFile, gPageTableOffsetInFile, SEEK_SET);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A D7zFile.c177 case SZ_SEEK_SET: moveMethod = SEEK_SET; break;
209 fseek(p->file, pos, SEEK_SET);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dstdio.h63 #ifndef SEEK_SET
64 #define SEEK_SET 0 macro
/vbox/src/libs/zlib-1.2.6/
H A Dgzlib.c289 if (LSEEK(state->fd, state->start, SEEK_SET) == -1)
317 if (whence != SEEK_SET && whence != SEEK_CUR)
321 if (whence == SEEK_SET)
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/UefiShell/
H A DdaShell.c109 if(whence != SEEK_SET) {
121 CurPos = 0; // offset is an absolute position for SEEK_SET
224 BufSize = (ssize_t)da_ShellSeek(filp, *offset, SEEK_SET);
274 int How = SEEK_SET;
284 How = SEEK_SET;

Completed in 169 milliseconds

123