Symbol: fseek
headers/posix/stdio.h
126
extern int fseek(FILE *stream, long offset, int seekType);
headers/private/kernel/boot/stdio.h
61
extern int fseek(FILE *stream, long offset, int seekType);
src/add-ons/kernel/bus_managers/acpi/acpica/include/acclib.h
406
fseek (
src/add-ons/media/plugins/ape_reader/MAClib/StdLibFileIO.cpp
188
return fseek(m_pFile, nDistance, nMoveMode);
src/add-ons/translators/raw/RAW.cpp
3054
fseek(ifp, get4()+base, SEEK_SET);
src/add-ons/translators/raw/RAW.cpp
3138
fseek (ifp, 78, SEEK_CUR);
src/add-ons/translators/raw/RAW.cpp
3145
fseek (ifp, 52, SEEK_CUR);
src/add-ons/translators/raw/RAW.cpp
3147
fseek (ifp, 114, SEEK_CUR);
src/add-ons/translators/raw/RAW.cpp
3257
fseek (ifp, j, SEEK_SET);
src/add-ons/translators/raw/RAW.cpp
3273
fseek (ifp, 16, SEEK_CUR);
src/add-ons/translators/raw/RAW.cpp
3275
fseek (ifp, 28, SEEK_CUR);
src/add-ons/translators/raw/RAW.cpp
3287
fseek(ifp, sony_offset, SEEK_SET);
src/add-ons/translators/raw/RAW.cpp
3293
fseek(ifp, 0, SEEK_SET);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2909
fseek(fp, 0, SEEK_END);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2911
fseek(fp, 0, SEEK_SET);
src/bin/unzip/extract.c
510
fseek((FILE *)G.zipfd, (LONGINT)cd_bufstart, SEEK_SET);
src/bin/unzip/extract.c
909
fseek((FILE *)G.zipfd, (LONGINT)bufstart, SEEK_SET);
src/bin/unzip/fileio.c
689
fseek(G.zipfd, (LONGINT)bufstart, SEEK_SET);
src/bin/unzip/process.c
931
fseek((FILE *)G.zipfd, G.ziplen-tail_len, SEEK_SET);
src/bin/unzip/unzpriv.h
2123
# define lseek(fd,o,w) fseek((FILE *)(fd),(o),(w))
src/libs/agg/src/agg_gsv_text.cpp
553
fseek(fd, 0l, SEEK_END);
src/libs/agg/src/agg_gsv_text.cpp
555
fseek(fd, 0l, SEEK_SET);
src/libs/libsolv/solv/repopage.c
823
if (fseek(fp, in_len, SEEK_CUR) < 0)
src/libs/print/libprint/PackBits.cpp
176
fseek(input, 0, SEEK_END);
src/libs/print/libprint/PackBits.cpp
178
fseek(input, 0, SEEK_SET);
src/libs/stdc++/legacy/stdiostream.cc
103
return fseek(_file, offset, fdir);
src/system/libroot/posix/glibc/include/stdio_private.h
110
libc_hidden_proto (fseek)
src/system/libroot/posix/glibc/libio/fseek.c
43
libc_hidden_def (fseek)
src/system/libroot/posix/glibc/libio/stdio.h
759
extern int fseek (FILE *__stream, long int __off, int __whence);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
116
fseek(fFile, bytes, SEEK_CUR);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
123
fseek(fFile, 0, SEEK_SET);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
133
fseek(fFile, nextChunk, SEEK_SET);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
253
fseek(fFile, 0, SEEK_SET);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
311
fseek(fFile, pos, SEEK_SET);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
382
fseek(fFile, next, SEEK_SET);
src/tests/kits/midi/synth_file_reader/SynthFileReader.cpp
394
fseek(fFile, offset, SEEK_CUR);
src/tests/kits/midi/synth_file_reader/SynthFileReader.h
55
void Seek(uint32 pos) { fseek(fFile, pos, SEEK_SET); }
src/tests/system/libroot/posix/fseek_test.cpp
102
if (fseek(fp, 0, SEEK_SET) != 0) {
src/tests/system/libroot/posix/fseek_test.cpp
138
if (fseek(fp, -((int) sizeof(outstr) - 1), SEEK_CUR) != 0) {
src/tests/system/libroot/posix/fseek_test.cpp
174
if (fseek(fp, -((int) sizeof(outstr) - 1), SEEK_END) != 0) {
src/tests/system/libroot/posix/fseek_test.cpp
246
if (fseek(fp, -(2 + 2 * (sizeof(outstr) - 1)), SEEK_CUR) != 0) {
src/tests/system/libroot/posix/fseek_test.cpp
292
} else if (fseek(fp, -(2 + 2 * (sizeof(outstr) - 1)), SEEK_END) != 0) {
src/tests/system/libroot/posix/fseek_test.cpp
390
ASSERT(fseek(fp, 0, SEEK_CUR) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
392
ASSERT(fseek(fp, 0, SEEK_SET) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
394
ASSERT(fseek(fp, 0, SEEK_END) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
399
ASSERT(fseek(fp, 2, SEEK_SET) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
415
ASSERT(fseek(fp, 0, SEEK_CUR) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
417
ASSERT(fseek(fp, 2, SEEK_SET) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
434
ASSERT(fseek(fp, 0, SEEK_CUR) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
442
ASSERT(fseek(fp, 0, SEEK_END) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
455
ASSERT(fseek(fp, 2, SEEK_SET) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
457
ASSERT(fseek(fp, 0, SEEK_END) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
460
ASSERT(fseek(fp, 0, SEEK_END) == 0);
src/tests/system/libroot/posix/fseek_test.cpp
77
if (fseek(fp, 0, SEEK_CUR) != 0) {