Home
last modified time | relevance | path

Searched refs:IsReadSeekable (Results 1 – 7 of 7) sorted by relevance

/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/io/
H A Dio_virtual_wrapper.hpp32 virtual bool IsReadSeekable() = 0;
58 bool IsReadSeekable() override { in IsReadSeekable() function in mpt::MPT_INLINE_NS::IO::IFile
59 return mpt::IO::IsReadSeekable(f); in IsReadSeekable()
154 virtual bool IsReadSeekable() = 0;
184 bool IsReadSeekable() override { in IsReadSeekable() function in mpt::MPT_INLINE_NS::IO::IOFile
185 return mpt::IO::IsReadSeekable(f); in IsReadSeekable()
241 inline bool IsReadSeekable() { in IsReadSeekable() function
242 return f.IsReadSeekable(); in IsReadSeekable()
345 inline bool IsReadSeekable() { in IsReadSeekable() function
346 return f.IsReadSeekable(); in IsReadSeekable()
H A Dbase.hpp52 inline bool IsReadSeekable(Tfile & f) { in IsReadSeekable() function
53 return FileOps(f).IsReadSeekable(); in IsReadSeekable()
H A Dio_span.hpp48 inline bool IsReadSeekable() { in IsReadSeekable() function
H A Dio_stdstream.hpp63 inline bool IsReadSeekable() { in IsReadSeekable() function
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/io_write/
H A Dbuffer.hpp134 inline bool IsReadSeekable() { in IsReadSeekable() function
135 return IsReadSeekable(f.file()); in IsReadSeekable()
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/src/mpt/io_read/
H A Dfiledata_stdstream.hpp38 return mpt::IO::IsReadSeekable(stream); in IsSeekable()
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/common/
H A DmptFileIO.cpp399 if(mpt::IO::IsReadSeekable(m_File)) in Open()