| DeSR Dependency Parser |
#include <FileHandle.h>
Public Member Functions | |
| FileHandle (char const *path, std::ios::openmode mode=std::ios::in) | |
| bool | open (char const *path, std::ios::openmode mode=std::ios::in) |
| void | close () |
| off64_t | size () |
| bool | truncate (off64_t size) |
| bool | write (off64_t offset, void const *data, Size length) |
| Write an entry in the file at. | |
| bool | write (void const *data, Size length) |
| Write an entry in the file at current position. | |
Public Attributes | |
| int | fd_ |
Definition at line 54 of file FileHandle.h.
| bool IXE::io::FileHandle::write | ( | off64_t | offset, | |
| void const * | data, | |||
| Size | length | |||
| ) |
Write an entry in the file at.
| offset. | File is expanded and filled with 0 from end to offset. |
Definition at line 134 of file FileHandle.cpp.
Referenced by IXE::io::mappedFile::write(), and write().