![]() |
Qt 4.8
|
#include "qplatformdefs.h"#include "qabstractfileengine.h"#include "private/qfsfileengine_p.h"#include "private/qcore_unix_p.h"#include "qfilesystementry_p.h"#include "qfilesystemengine_p.h"#include "qfile.h"#include "qdir.h"#include "qdatetime.h"#include "qvarlengtharray.h"#include <sys/mman.h>#include <stdlib.h>#include <limits.h>#include <errno.h>#include <private/qcore_mac_p.h>Go to the source code of this file.
Functions | |
| static QByteArray | openModeToFopenMode (QIODevice::OpenMode flags, const QFileSystemEntry &fileEntry, QFileSystemMetaData &metaData) |
| Returns the stdlib open string corresponding to a QIODevice::OpenMode. More... | |
| static int | openModeToOpenFlags (QIODevice::OpenMode mode) |
| Returns the stdio open flags corresponding to a QIODevice::OpenMode. More... | |
| static bool | setCloseOnExec (int fd) |
| Sets the file descriptor to close on exec. More... | |
|
inlinestatic |
Returns the stdlib open string corresponding to a QIODevice::OpenMode.
Definition at line 97 of file qfsfileengine_unix.cpp.
Referenced by QFSFileEnginePrivate::nativeOpen().
|
inlinestatic |
Returns the stdio open flags corresponding to a QIODevice::OpenMode.
Definition at line 141 of file qfsfileengine_unix.cpp.
Referenced by QFSFileEnginePrivate::nativeHandle(), and QFSFileEnginePrivate::nativeOpen().
|
inlinestatic |
Sets the file descriptor to close on exec.
That is, the file descriptor is not inherited by child processes.
Definition at line 174 of file qfsfileengine_unix.cpp.
Referenced by QFSFileEnginePrivate::nativeOpen().