Searched refs:seekMode (Results 1 - 25 of 32) sorted by relevance

12

/haiku/docs/develop/media/
H A DMediaExtractorAddOn.h244 // seekMode per BFile::Seek, only SEEK_SET is required
254 int32 seekMode = 0) = 0;
270 // seekMode per BFile::Seek, only SEEK_SET is required
280 int32 seekMode = 0) = 0;
300 // seekMode per BFile::Seek, only SEEK_SET is required
310 int32 seekMode = 0) = 0;
317 // If the seekMode is SEEK_SET it will seek a fraction of the way
318 // back to the beginning from the current location. If the seekMode
320 // the current location. If the seekMode is SEEK_CUR it will seek
340 // seekMode pe
[all...]
/haiku/src/add-ons/translators/shared/
H A DStreamBuffer.h31 off_t Seek(off_t position, uint32 seekMode);
H A DStreamBuffer.cpp196 StreamBuffer::Seek(off_t position, uint32 seekMode) argument
199 if (seekMode == SEEK_CUR) {
222 return fStream->Seek(position, seekMode);
/haiku/src/kits/storage/
H A DFileIO.cpp83 BFileIO::Seek(off_t position, uint32 seekMode) argument
85 if (fseeko(fFile, position, seekMode) < 0)
126 BFileIO::_Seek(off_t position, uint32 seekMode) const
134 if (fseeko(fFile, position, seekMode) < 0)
H A DFileDescriptorIO.cpp63 BFileDescriptorIO::Seek(off_t position, uint32 seekMode) argument
65 off_t result = lseek(fFD, position, seekMode);
H A DFdIO.cpp92 BFdIO::Seek(off_t position, uint32 seekMode) argument
94 off_t newPosition = lseek(fFd, position, seekMode);
H A DOffsetFile.cpp96 OffsetFile::Seek(off_t position, uint32 seekMode) argument
101 switch (seekMode) {
/haiku/headers/private/storage/
H A DFileIO.h28 virtual off_t Seek(off_t position, uint32 seekMode);
38 off_t _Seek(off_t position, uint32 seekMode) const;
H A DFileDescriptorIO.h26 virtual off_t Seek(off_t position, uint32 seekMode);
H A DFdIO.h29 virtual off_t Seek(off_t position, uint32 seekMode);
H A DOffsetFile.h48 off_t Seek(off_t position, uint32 seekMode);
/haiku/src/kits/support/
H A DDataPositionIOWrapper.cpp70 BDataPositionIOWrapper::Seek(off_t position, uint32 seekMode) argument
72 switch (seekMode) {
H A DBufferIO.cpp149 BBufferIO::Seek(off_t position, uint32 seekMode) argument
156 switch (seekMode) {
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DMessageIO.cpp125 BMailMessageIO::Seek(off_t position, uint32 seekMode) argument
127 if (seekMode == SEEK_END && fState != ALL_READING_DONE) {
136 return fSlave->Seek(position, seekMode);
H A DMessageIO.h27 virtual off_t Seek(off_t position, uint32 seekMode);
/haiku/src/tools/restest/
H A DOffsetFile.h24 off_t Seek(off_t position, uint32 seekMode);
H A DOffsetFile.cpp86 OffsetFile::Seek(off_t position, uint32 seekMode) argument
88 // off_t result = fFile.Seek(position + fOffset, seekMode);
93 switch (seekMode) {
/haiku/headers/private/support/
H A DDataPositionIOWrapper.h25 virtual off_t Seek(off_t position, uint32 seekMode);
/haiku/src/kits/media/experimental/
H A DAdapterIO.cpp137 virtual off_t Seek(off_t position, uint32 seekMode) argument
141 if (seekMode == SEEK_SET)
142 return fBuffer->Seek(_PositionToRelative(position), seekMode);
143 return fBuffer->Seek(position, seekMode);
298 BAdapterIO::Seek(off_t position, uint32 seekMode) argument
305 if (seekMode == SEEK_CUR)
307 else if (seekMode == SEEK_END) {
331 return fBuffer->Seek(position, seekMode);
/haiku/headers/os/support/
H A DDataIO.h69 virtual off_t Seek(off_t position, uint32 seekMode) = 0;
104 virtual off_t Seek(off_t position, uint32 seekMode);
137 virtual off_t Seek(off_t position, uint32 seekMode);
H A DBufferIO.h23 virtual off_t Seek(off_t position, uint32 seekMode);
/haiku/headers/os/translation/
H A DBitmapStream.h26 virtual off_t Seek(off_t position, uint32 seekMode);
/haiku/headers/os/storage/
H A DFile.h40 virtual off_t Seek(off_t offset, uint32 seekMode);
/haiku/headers/build/os/storage/
H A DFile.h54 virtual off_t Seek(off_t offset, uint32 seekMode);
/haiku/headers/private/media/experimental/
H A DAdapterIO.h52 virtual off_t Seek(off_t position, uint32 seekMode);

Completed in 129 milliseconds

12