Searched defs:PlatformFile (Results 1 - 1 of 1) sorted by relevance

/external/chromium/base/
H A Dplatform_file.h24 typedef HANDLE PlatformFile; typedef in namespace:base
25 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
27 typedef int PlatformFile;
28 const PlatformFile kInvalidPlatformFileValue = -1;
102 BASE_API PlatformFile CreatePlatformFile(const FilePath& name,
108 BASE_API bool ClosePlatformFile(PlatformFile file);
112 BASE_API int ReadPlatformFile(PlatformFile file, int64 offset,
118 BASE_API int WritePlatformFile(PlatformFile file, int64 offset,
124 BASE_API bool TruncatePlatformFile(PlatformFile file, int64 length);
127 BASE_API bool FlushPlatformFile(PlatformFile fil
[all...]

Completed in 40 milliseconds