/external/webkit/Source/WebCore/platform/ |
D | FileSystem.h | 123 typedef QFile* PlatformFileHandle; typedef 124 const PlatformFileHandle invalidPlatformFileHandle = 0; 126 typedef GFileIOStream* PlatformFileHandle; typedef 127 const PlatformFileHandle invalidPlatformFileHandle = 0; 129 typedef HANDLE PlatformFileHandle; typedef 132 const PlatformFileHandle invalidPlatformFileHandle = reinterpret_cast<HANDLE>(-1); 134 typedef IFile* PlatformFileHandle; typedef 135 const PlatformFileHandle invalidPlatformFileHandle = 0; 137 typedef wxFile* PlatformFileHandle; typedef 138 const PlatformFileHandle invalidPlatformFileHandle = 0; [all …]
|
D | FileStream.h | 91 PlatformFileHandle m_handle;
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | FileSystemChromium.cpp | 85 PlatformFileHandle openFile(const String& path, FileOpenMode mode) in openFile() 90 void closeFile(PlatformFileHandle& handle) in closeFile() 95 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin) in seekFile() 100 bool truncateFile(PlatformFileHandle handle, long long offset) in truncateFile() 105 int readFromFile(PlatformFileHandle handle, char* data, int length) in readFromFile() 110 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile()
|
D | PlatformBridge.h | 141 static PlatformFileHandle openFile(const String& path, FileOpenMode); 142 static void closeFile(PlatformFileHandle&); 143 static long long seekFile(PlatformFileHandle, long long offset, FileSeekOrigin); 144 static bool truncateFile(PlatformFileHandle, long long offset); 145 static int readFromFile(PlatformFileHandle, char* data, int length); 146 static int writeToFile(PlatformFileHandle, const char* data, int length); 165 static PlatformFileHandle databaseOpenFile(const String& vfsFleName, int desiredFlags);
|
/external/webkit/Source/WebCore/platform/qt/ |
D | FileSystemQt.cpp | 117 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle) in openTemporaryFile() 132 PlatformFileHandle openFile(const String& path, FileOpenMode mode) in openFile() 150 int readFromFile(PlatformFileHandle handle, char* data, int length) in readFromFile() 157 void closeFile(PlatformFileHandle& handle) in closeFile() 165 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin) in seekFile() 193 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile()
|
/external/webkit/Source/WebCore/platform/posix/ |
D | FileSystemPOSIX.cpp | 72 PlatformFileHandle openFile(const String& path, FileOpenMode mode) in openFile() 87 void closeFile(PlatformFileHandle& handle) in closeFile() 95 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin) in seekFile() 114 bool truncateFile(PlatformFileHandle handle, long long offset) in truncateFile() 120 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile() 130 int readFromFile(PlatformFileHandle handle, char* data, int length) in readFromFile()
|
/external/webkit/Source/WebCore/platform/haiku/ |
D | FileSystemHaiku.cpp | 59 String openTemporaryFile(const String&, PlatformFileHandle& handle) in openTemporaryFile() 66 void closeFile(PlatformFileHandle&) in closeFile() argument 71 int writeToFile(PlatformFileHandle, const char* data, int length) in writeToFile() argument
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | FileSystemGtk.cpp | 230 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle) in openTemporaryFile() 242 PlatformFileHandle openFile(const String& path, FileOpenMode mode) in openFile() 262 void closeFile(PlatformFileHandle& handle) in closeFile() 272 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin) in seekFile() 295 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile() 303 int readFromFile(PlatformFileHandle handle, char* data, int length) in readFromFile()
|
/external/webkit/Source/WebCore/platform/wx/ |
D | FileSystemWx.cpp | 113 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle) in openTemporaryFile() 122 void closeFile(PlatformFileHandle& handle) in closeFile() 128 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile()
|
/external/webkit/Source/WebKit2/Shared/ |
D | WebMemorySampler.h | 91 void appendCurrentMemoryUsageToFile(WebCore::PlatformFileHandle&); 98 WebCore::PlatformFileHandle m_sampleLogFile;
|
D | WebMemorySampler.cpp | 166 void WebMemorySampler::appendCurrentMemoryUsageToFile(PlatformFileHandle& file) in appendCurrentMemoryUsageToFile()
|
/external/webkit/Source/WebCore/platform/wince/ |
D | FileSystemWinCE.cpp | 190 String openTemporaryFile(const String&, PlatformFileHandle& handle) in openTemporaryFile() 237 PlatformFileHandle openFile(const String& path, FileOpenMode mode) in openFile() 256 void closeFile(PlatformFileHandle& handle) in closeFile() 264 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile()
|
/external/webkit/Source/WebCore/platform/win/ |
D | FileSystemWin.cpp | 194 String openTemporaryFile(const String&, PlatformFileHandle& handle) in openTemporaryFile() 241 PlatformFileHandle openFile(const String& path, FileOpenMode mode) in openFile() 262 void closeFile(PlatformFileHandle& handle) in closeFile() 270 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile()
|
/external/webkit/Source/WebCore/platform/brew/ |
D | FileSystemBrew.cpp | 189 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle) in openTemporaryFile() 222 void closeFile(PlatformFileHandle& handle) in closeFile() 230 int writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile()
|
/external/webkit/Source/WebCore/plugins/ |
D | PluginDatabase.cpp | 481 static void fillBufferWithContentsOfFile(PlatformFileHandle file, Vector<char>& buffer) in fillBufferWithContentsOfFile() 535 PlatformFileHandle file; in loadPersistentMetadataCache() 598 static bool writeUTF8String(PlatformFileHandle file, const String& string) in writeUTF8String() 605 static bool writeTime(PlatformFileHandle file, const time_t& time) in writeTime() 622 PlatformFileHandle file; in updatePersistentMetadataCache()
|
D | PluginStream.h | 110 PlatformFileHandle m_tempFileHandle;
|
/external/webkit/Source/WebKit/chromium/src/ |
D | PlatformBridge.cpp | 398 PlatformFileHandle PlatformBridge::openFile(const String& path, FileOpenMode mode) in openFile() 403 void PlatformBridge::closeFile(PlatformFileHandle& handle) in closeFile() 408 long long PlatformBridge::seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin orig… in seekFile() 413 bool PlatformBridge::truncateFile(PlatformFileHandle handle, long long offset) in truncateFile() 418 int PlatformBridge::readFromFile(PlatformFileHandle handle, char* data, int length) in readFromFile() 423 int PlatformBridge::writeToFile(PlatformFileHandle handle, const char* data, int length) in writeToFile() 485 PlatformFileHandle PlatformBridge::databaseOpenFile(const String& vfsFileName, int desiredFlags) in databaseOpenFile()
|
/external/webkit/Source/WebCore/platform/android/ |
D | FileSystemAndroid.cpp | 58 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle) in openTemporaryFile()
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
D | NetscapePluginStream.h | 92 WebCore::PlatformFileHandle m_fileHandle;
|
/external/webkit/Source/WebCore/platform/efl/ |
D | FileSystemEfl.cpp | 70 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle) in openTemporaryFile()
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
D | CacheResult.cpp | 190 PlatformFileHandle file; in writeChunkToFile()
|
/external/webkit/Source/WebCore/platform/mac/ |
D | FileSystemMac.mm | 44 String openTemporaryFile(const String& prefix, PlatformFileHandle& platformFileHandle)
|
/external/webkit/Source/WebCore/loader/appcache/ |
D | ApplicationCacheStorage.cpp | 1246 PlatformFileHandle handle = openFile(fullPath, OpenForWrite); in writeDataToUniqueFileInDirectory()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2011-02-16 | 34514 avoid GLib includes and changed the PlatformFileHandle to be a GIOStream.
|
D | ChangeLog-2010-01-29 | 89487 Extending the PlatformFileHandle definition from PLATFORM(WIN) to
|