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

  /external/chromium/net/disk_cache/
file_posix.cc 172 platform_file_(file),
183 platform_file_ = base::CreatePlatformFile(name, flags, NULL, NULL);
184 if (platform_file_ < 0) {
185 platform_file_ = 0;
194 return platform_file_;
200 return (base::kInvalidPlatformFileValue != platform_file_);
208 int ret = pread(platform_file_, buffer, buffer_len, offset);
217 int ret = pwrite(platform_file_, buffer, buffer_len, offset);
259 return 0 == ftruncate(platform_file_, length);
264 size_t ret = lseek(platform_file_, 0, SEEK_END)
    [all...]
file_win.cc 70 : init_(true), mixed_(true), platform_file_(INVALID_HANDLE_VALUE),
81 platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
84 if (INVALID_HANDLE_VALUE == platform_file_)
88 platform_file_, g_completion_handler.Pointer());
104 if (INVALID_HANDLE_VALUE != platform_file_)
105 CloseHandle(platform_file_);
112 return (INVALID_HANDLE_VALUE == platform_file_) ? sync_platform_file_ :
113 platform_file_;
119 return (INVALID_HANDLE_VALUE != platform_file_ ||
176 if (!ReadFile(platform_file_, buffer, size, &actual, data->overlapped()))
    [all...]
file.h 81 base::PlatformFile platform_file_; // Regular, asynchronous IO handle. member in class:disk_cache::File

Completed in 2975 milliseconds