HomeSort by relevance Sort by last modified time
    Searched refs:PlatformFileHandle (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/WebCore/platform/
FileSystem.h 121 // PlatformFileHandle
123 typedef QFile* PlatformFileHandle;
124 const PlatformFileHandle invalidPlatformFileHandle = 0;
126 typedef GFileIOStream* PlatformFileHandle;
127 const PlatformFileHandle invalidPlatformFileHandle = 0;
129 typedef HANDLE PlatformFileHandle;
132 const PlatformFileHandle invalidPlatformFileHandle = reinterpret_cast<HANDLE>(-1);
134 typedef IFile* PlatformFileHandle;
135 const PlatformFileHandle invalidPlatformFileHandle = 0;
137 typedef wxFile* PlatformFileHandle;
    [all...]
FileStream.h 91 PlatformFileHandle m_handle;
  /external/webkit/Source/WebCore/platform/haiku/
FileSystemHaiku.cpp 59 String openTemporaryFile(const String&, PlatformFileHandle& handle)
66 void closeFile(PlatformFileHandle&)
71 int writeToFile(PlatformFileHandle, const char* data, int length)
  /external/webkit/Source/WebCore/platform/chromium/
FileSystemChromium.cpp 85 PlatformFileHandle openFile(const String& path, FileOpenMode mode)
90 void closeFile(PlatformFileHandle& handle)
95 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin)
100 bool truncateFile(PlatformFileHandle handle, long long offset)
105 int readFromFile(PlatformFileHandle handle, char* data, int length)
110 int writeToFile(PlatformFileHandle handle, const char* data, int length)
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/
FileSystemQt.cpp 117 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle)
132 PlatformFileHandle openFile(const String& path, FileOpenMode mode)
150 int readFromFile(PlatformFileHandle handle, char* data, int length)
157 void closeFile(PlatformFileHandle& handle)
165 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin)
193 int writeToFile(PlatformFileHandle handle, const char* data, int length)
  /external/webkit/Source/WebKit2/Shared/
WebMemorySampler.h 91 void appendCurrentMemoryUsageToFile(WebCore::PlatformFileHandle&);
98 WebCore::PlatformFileHandle m_sampleLogFile;
WebMemorySampler.cpp 166 void WebMemorySampler::appendCurrentMemoryUsageToFile(PlatformFileHandle& file)
  /external/webkit/Source/WebCore/platform/gtk/
FileSystemGtk.cpp 230 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle)
242 PlatformFileHandle openFile(const String& path, FileOpenMode mode)
262 void closeFile(PlatformFileHandle& handle)
272 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin)
295 int writeToFile(PlatformFileHandle handle, const char* data, int length)
303 int readFromFile(PlatformFileHandle handle, char* data, int length)
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 72 PlatformFileHandle openFile(const String& path, FileOpenMode mode)
87 void closeFile(PlatformFileHandle& handle)
95 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin)
114 bool truncateFile(PlatformFileHandle handle, long long offset)
120 int writeToFile(PlatformFileHandle handle, const char* data, int length)
130 int readFromFile(PlatformFileHandle handle, char* data, int length)
  /external/webkit/Source/WebCore/platform/wx/
FileSystemWx.cpp 113 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle)
122 void closeFile(PlatformFileHandle& handle)
128 int writeToFile(PlatformFileHandle handle, const char* data, int length)
  /external/webkit/Source/WebCore/platform/mac/
FileSystemMac.mm 44 String openTemporaryFile(const String& prefix, PlatformFileHandle& platformFileHandle)
46 platformFileHandle = invalidPlatformFileHandle;
62 platformFileHandle = mkstemp(temporaryFilePath.data());
63 if (platformFileHandle == invalidPlatformFileHandle)
  /external/webkit/Source/WebCore/platform/android/
FileSystemAndroid.cpp 58 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle)
  /external/webkit/Source/WebCore/platform/win/
FileSystemWin.cpp 194 String openTemporaryFile(const String&, PlatformFileHandle& handle)
241 PlatformFileHandle openFile(const String& path, FileOpenMode mode)
262 void closeFile(PlatformFileHandle& handle)
270 int writeToFile(PlatformFileHandle handle, const char* data, int length)
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 190 String openTemporaryFile(const String&, PlatformFileHandle& handle)
237 PlatformFileHandle openFile(const String& path, FileOpenMode mode)
256 void closeFile(PlatformFileHandle& handle)
264 int writeToFile(PlatformFileHandle handle, const char* data, int length)
  /external/webkit/Source/WebCore/plugins/
PluginStream.h 110 PlatformFileHandle m_tempFileHandle;
PluginDatabase.cpp 481 static void fillBufferWithContentsOfFile(PlatformFileHandle file, Vector<char>& buffer)
535 PlatformFileHandle file;
598 static bool writeUTF8String(PlatformFileHandle file, const String& string)
605 static bool writeTime(PlatformFileHandle file, const time_t& time)
622 PlatformFileHandle file;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePluginStream.h 92 WebCore::PlatformFileHandle m_fileHandle;
  /external/webkit/Source/WebCore/platform/brew/
FileSystemBrew.cpp 189 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle)
222 void closeFile(PlatformFileHandle& handle)
230 int writeToFile(PlatformFileHandle handle, const char* data, int length)
  /external/webkit/Source/WebCore/platform/efl/
FileSystemEfl.cpp 70 String openTemporaryFile(const String& prefix, PlatformFileHandle& handle)
  /external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp 398 PlatformFileHandle PlatformBridge::openFile(const String& path, FileOpenMode mode)
403 void PlatformBridge::closeFile(PlatformFileHandle& handle)
408 long long PlatformBridge::seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin)
413 bool PlatformBridge::truncateFile(PlatformFileHandle handle, long long offset)
418 int PlatformBridge::readFromFile(PlatformFileHandle handle, char* data, int length)
423 int PlatformBridge::writeToFile(PlatformFileHandle handle, const char* data, int length)
485 PlatformFileHandle PlatformBridge::databaseOpenFile(const String& vfsFileName, int desiredFlags)
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
CacheResult.cpp 190 PlatformFileHandle file;
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.cpp     [all...]

Completed in 1121 milliseconds