HomeSort by relevance Sort by last modified time
    Searched full:mapped_file (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium/base/test/
test_file_util_mac.cc 20 file_util::MemoryMappedFile mapped_file; local
21 if (!mapped_file.Initialize(file)) {
26 if (msync(const_cast<uint8*>(mapped_file.data()), mapped_file.length(),
  /external/chromium_org/base/test/
test_file_util_mac.cc 35 base::MemoryMappedFile mapped_file; local
36 if (!mapped_file.Initialize(file)) {
41 if (msync(const_cast<uint8*>(mapped_file.data()), mapped_file.length(),
  /external/chromium/base/i18n/
icu_util.cc 110 static file_util::MemoryMappedFile mapped_file;
111 if (!mapped_file.IsValid()) {
119 if (!mapped_file.Initialize(data_path)) {
125 udata_setCommonData(const_cast<uint8*>(mapped_file.data()), &err);
  /external/chromium_org/base/i18n/
icu_util.cc 87 CR_DEFINE_STATIC_LOCAL(base::MemoryMappedFile, mapped_file, ());
88 if (!mapped_file.IsValid()) {
106 if (!mapped_file.Initialize(data_path)) {
112 udata_setCommonData(const_cast<uint8*>(mapped_file.data()), &err);
  /external/chromium_org/components/policy/core/common/
preg_parser_win.cc 218 base::MemoryMappedFile mapped_file; local
219 if (!mapped_file.Initialize(file_path) || !mapped_file.IsValid()) {
225 if (mapped_file.length() > kMaxPRegFileSize) {
227 << mapped_file.length();
234 if (mapped_file.length() < kHeaderSize ||
235 memcmp(kPRegFileHeader, mapped_file.data(), kHeaderSize) != 0) {
244 const uint8* cursor = mapped_file.data() + kHeaderSize;
245 const uint8* end = mapped_file.data() + mapped_file.length()
    [all...]
  /external/chromium/base/
shared_memory_win.cc 163 HANDLE mapped_file = mapped_file_; local
168 // DUPLICATE_CLOSE_SOURCE causes DuplicateHandle to close mapped_file.
175 *new_handle = mapped_file;
179 if (!DuplicateHandle(GetCurrentProcess(), mapped_file, process,
  /external/chromium/net/disk_cache/
mapped_file_posix.cc 5 #include "net/disk_cache/mapped_file.h"
mapped_file_win.cc 5 #include "net/disk_cache/mapped_file.h"
mapped_file_unittest.cc 10 #include "net/disk_cache/mapped_file.h"
storage_block.h 12 #include "net/disk_cache/mapped_file.h"
block_files.h 17 #include "net/disk_cache/mapped_file.h"
rankings.h 15 #include "net/disk_cache/mapped_file.h"
  /external/chromium_org/base/memory/
shared_memory_win.cc 197 HANDLE mapped_file = mapped_file_; local
202 // DUPLICATE_CLOSE_SOURCE causes DuplicateHandle to close mapped_file.
209 *new_handle = mapped_file;
213 if (!DuplicateHandle(GetCurrentProcess(), mapped_file, process,
  /external/chromium_org/net/disk_cache/
mapped_file.cc 5 #include "net/disk_cache/mapped_file.h"
mapped_file_avoid_mmap_posix.cc 5 #include "net/disk_cache/mapped_file.h"
mapped_file_posix.cc 5 #include "net/disk_cache/mapped_file.h"
mapped_file_win.cc 5 #include "net/disk_cache/mapped_file.h"
storage_block.h 11 #include "net/disk_cache/mapped_file.h"
mapped_file_unittest.cc 11 #include "net/disk_cache/mapped_file.h"
block_files.h 18 #include "net/disk_cache/mapped_file.h"
rankings.h 14 #include "net/disk_cache/mapped_file.h"
  /art/runtime/base/unix_file/
mapped_file.cc 18 #include "base/unix_file/mapped_file.h"
mapped_file_test.cc 17 #include "base/unix_file/mapped_file.h"
  /external/chromium_org/chrome/installer/util/
move_tree_work_item_unittest.cc 415 base::MemoryMappedFile mapped_file; local
416 EXPECT_TRUE(mapped_file.Initialize(orig_to_file));
  /external/chromium_org/base/
file_util_win.cc 393 FilePath mapped_file; local
394 if (!NormalizeToNativeFilePath(path, &mapped_file))
400 return DevicePathToDriveLetterPath(mapped_file, real_path);

Completed in 1303 milliseconds

1 2