|
MythTV master
|
Go to the source code of this file.
Typedefs | |
| using | callback_t = void(*)(void *) |
Functions | |
| void | MythFileOpenRegisterCallback (const char *Pathname, void *Object, callback_t Func) |
| int | MythFileCheck (int Id) |
| MTV_PUBLIC int | MythFileOpen (const char *Pathname, int Flags) |
| MTV_PUBLIC int | MythfileClose (int FileID) |
| MTV_PUBLIC off_t | MythFileSeek (int FileID, off_t Offset, int Whence) |
| MTV_PUBLIC off_t | MythFileTell (int FileID) |
| MTV_PUBLIC ssize_t | MythFileRead (int FileID, void *Buffer, size_t Count) |
| MTV_PUBLIC ssize_t | MythFileWrite (int FileID, void *Buffer, size_t Count) |
| MTV_PUBLIC int | MythFileStat (const char *Path, struct stat *Buf) |
| MTV_PUBLIC int | MythFileStatFD (int FileID, struct stat *Buf) |
| MTV_PUBLIC int | MythFileExists (const char *Path, const char *File) |
| int | MythDirCheck (int DirID) |
| MTV_PUBLIC int | MythDirOpen (const char *DirName) |
| MTV_PUBLIC int | MythDirClose (int DirID) |
| MTV_PUBLIC std::string | MythDirRead (int DirID) |
| using callback_t = void (*)(void*) |
Definition at line 10 of file mythiowrapper.h.
| int MythDirCheck | ( | int | DirID | ) |
Definition at line 376 of file mythiowrapper.cpp.
| MTV_PUBLIC int MythDirClose | ( | int | DirID | ) |
Definition at line 437 of file mythiowrapper.cpp.
Referenced by MythBDDirClose().
| MTV_PUBLIC int MythDirOpen | ( | const char * | DirName | ) |
Definition at line 385 of file mythiowrapper.cpp.
Referenced by MythBDDirOpen().
| MTV_PUBLIC std::string MythDirRead | ( | int | DirID | ) |
Definition at line 460 of file mythiowrapper.cpp.
Referenced by MythBDDirRead().
| int MythFileCheck | ( | int | Id | ) |
Definition at line 109 of file mythiowrapper.cpp.
| MTV_PUBLIC int MythfileClose | ( | int | FileID | ) |
Definition at line 206 of file mythiowrapper.cpp.
Referenced by MythBDBuffer::Close(), MythDVDInfo::GetNameAndSerialNum(), MythBDFileClose(), MythBDInfo::MythBDInfo(), and MythDVD_close().
| MTV_PUBLIC int MythFileExists | ( | const char * | Path, |
| const char * | File | ||
| ) |
Definition at line 349 of file mythiowrapper.cpp.
Referenced by MythDVD_FileExists().
| MTV_PUBLIC int MythFileOpen | ( | const char * | Pathname, |
| int | Flags | ||
| ) |
Definition at line 116 of file mythiowrapper.cpp.
Referenced by MythDVDInfo::GetNameAndSerialNum(), MythBDFileOpen(), MythBDInfo::MythBDInfo(), MythDVD_open(), and MythBDBuffer::OpenFile().
| void MythFileOpenRegisterCallback | ( | const char * | Pathname, |
| void * | Object, | ||
| callback_t | Func | ||
| ) |
Definition at line 82 of file mythiowrapper.cpp.
Referenced by MythBDBuffer::OpenFile().
| MTV_PUBLIC ssize_t MythFileRead | ( | int | FileID, |
| void * | Buffer, | ||
| size_t | Count | ||
| ) |
Definition at line 275 of file mythiowrapper.cpp.
Referenced by BDRead(), MythDVDInfo::GetNameAndSerialNum(), MythBDFileRead(), MythBDInfo::MythBDInfo(), and MythDVD_read().
| MTV_PUBLIC off_t MythFileSeek | ( | int | FileID, |
| off_t | Offset, | ||
| int | Whence | ||
| ) |
Definition at line 238 of file mythiowrapper.cpp.
Referenced by BDRead(), MythBDFileSeek(), MythBDInfo::MythBDInfo(), and MythDVD_lseek().
| MTV_PUBLIC int MythFileStat | ( | const char * | Path, |
| struct stat * | Buf | ||
| ) |
Definition at line 313 of file mythiowrapper.cpp.
Referenced by MythDVDInfo::GetNameAndSerialNum(), MythDVD_dvdstat(), MythFileOpen(), and MythFileStatFD().
| MTV_PUBLIC int MythFileStatFD | ( | int | FileID, |
| struct stat * | Buf | ||
| ) |
Definition at line 328 of file mythiowrapper.cpp.
| MTV_PUBLIC off_t MythFileTell | ( | int | FileID | ) |
Definition at line 257 of file mythiowrapper.cpp.
Referenced by MythBDFileTell().
| MTV_PUBLIC ssize_t MythFileWrite | ( | int | FileID, |
| void * | Buffer, | ||
| size_t | Count | ||
| ) |
Definition at line 294 of file mythiowrapper.cpp.
Referenced by MythBDFileWrite().