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

  /external/google-breakpad/src/common/linux/
memory_mapped_file_unittest.cc 53 void ExpectNoMappedData(const MemoryMappedFile& mapped_file) {
54 EXPECT_TRUE(mapped_file.content().IsEmpty());
55 EXPECT_TRUE(mapped_file.data() == NULL);
56 EXPECT_EQ(0U, mapped_file.size());
63 MemoryMappedFile mapped_file; local
64 ExpectNoMappedData(mapped_file);
68 MemoryMappedFile mapped_file; local
69 mapped_file.Unmap();
74 MemoryMappedFile mapped_file("nonexistent-file", 0);
75 ExpectNoMappedData(mapped_file);
78 MemoryMappedFile mapped_file; local
94 MemoryMappedFile mapped_file; local
119 MemoryMappedFile mapped_file; local
161 MemoryMappedFile mapped_file; local
199 MemoryMappedFile mapped_file; local
    [all...]
file_id.cc 152 MemoryMappedFile mapped_file(path_.c_str(), 0);
153 if (!mapped_file.data()) // Should probably check if size >= ElfW(Ehdr)?
156 return ElfFileIdentifierFromMappedFile(mapped_file.data(), identifier);
  /frameworks/compile/mclinker/lib/Support/
FileOutputBuffer.cpp 36 std::unique_ptr<llvm::sys::fs::mapped_file_region> mapped_file(
42 pResult.reset(new FileOutputBuffer(mapped_file.get(), pFileHandle));
44 mapped_file.release();
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper.cc 129 MemoryMappedFile mapped_file(filename, mapping.offset);
130 if (!mapped_file.data() || mapped_file.size() < SELFMAG)
134 FileID::ElfFileIdentifierFromMappedFile(mapped_file.data(), identifier);
210 MemoryMappedFile mapped_file(filename, mapping.offset);
211 if (!mapped_file.data() || mapped_file.size() < SELFMAG) {
216 return ElfFileSoNameFromMappedFile(mapped_file.data(), soname, soname_size);
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc     [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 626 /// boost::iostreams::mapped_file.

Completed in 670 milliseconds