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

  /external/chromium/base/
platform_file.h 20 typedef HANDLE PlatformFile;
21 const PlatformFile kInvalidPlatformFileValue = INVALID_HANDLE_VALUE;
23 typedef int PlatformFile;
24 const PlatformFile kInvalidPlatformFileValue = -1;
45 PlatformFile CreatePlatformFile(const FilePath& name,
49 PlatformFile CreatePlatformFile(const std::wstring& name,
54 bool ClosePlatformFile(PlatformFile file);
platform_file_posix.cc 18 PlatformFile CreatePlatformFile(const FilePath& name, int flags,
71 PlatformFile CreatePlatformFile(const std::wstring& name, int flags,
76 bool ClosePlatformFile(PlatformFile file) {
platform_file_win.cc 12 PlatformFile CreatePlatformFile(const FilePath& name,
69 PlatformFile CreatePlatformFile(const std::wstring& name, int flags,
74 bool ClosePlatformFile(PlatformFile file) {
file_util.h 520 bool Initialize(base::PlatformFile file);
539 base::PlatformFile file_;
file_util.cc 270 bool MemoryMappedFile::Initialize(base::PlatformFile file) {
  /external/chromium/net/disk_cache/
file.h 40 explicit File(base::PlatformFile file);
47 base::PlatformFile platform_file() const;
86 base::PlatformFile platform_file_; // Regular, asynchronous IO handle.
87 base::PlatformFile sync_platform_file_; // Synchronous IO handle.
file_win.cc 76 File::File(base::PlatformFile file)
119 base::PlatformFile File::platform_file() const {
file_posix.cc 252 File::File(base::PlatformFile file)
278 base::PlatformFile File::platform_file() const {
  /external/chromium/net/base/
file_stream.h 37 FileStream(base::PlatformFile file, int flags);
129 base::PlatformFile file_;
file_stream_posix.cc 52 int ReadFile(base::PlatformFile file, char* buf, int buf_len) {
65 int WriteFile(base::PlatformFile file, const char* buf, int buf_len) {
76 BackgroundReadTask(base::PlatformFile file, char* buf, int buf_len,
83 const base::PlatformFile file_;
92 base::PlatformFile file, char* buf, int buf_len,
107 BackgroundWriteTask(base::PlatformFile file, const char* buf, int buf_len,
114 const base::PlatformFile file_;
123 base::PlatformFile file, const char* buf, int buf_len,
166 base::PlatformFile file, char* buf, int buf_len,
169 base::PlatformFile file, const char* buf, int buf_len
    [all...]
file_stream_win.cc 123 FileStream::FileStream(base::PlatformFile file, int flags)
file_stream_unittest.cc 52 base::PlatformFile file = base::CreatePlatformFile(

Completed in 210 milliseconds