Home | History | Annotate | Download | only in public

Lines Matching refs:FileHandle

47     typedef HANDLE FileHandle;
49 typedef int FileHandle;
63 virtual FileHandle openFile(const WebString& path, int mode) { return FileHandle(); }
64 // Should set the FileHandle to a invalid value if the file is closed successfully.
65 virtual void closeFile(FileHandle&) { }
66 virtual long long seekFile(FileHandle, long long offset, int origin) { return 0; }
67 virtual bool truncateFile(FileHandle, long long offset) { return false; }
68 virtual int readFromFile(FileHandle, char* data, int length) { return 0; }
69 virtual int writeToFile(FileHandle, const char* data, int length) { return 0; }