/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);
|
/system/update_engine/payload_generator/ |
mapfile_filesystem.cc | 94 File mapped_file; local 96 mapped_file.extents = {}; 104 mapped_file.extents.push_back(ExtentForRange(block_start, 1)); 122 mapped_file.extents.push_back( 133 std::reverse(mapped_file.extents.begin(), mapped_file.extents.end()); 137 mapped_file.name = line.substr(0, last_delim).as_string(); 139 files->push_back(mapped_file);
|
/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/libchrome/base/trace_event/ |
process_memory_maps.h | 36 std::string mapped_file; member in struct:base::trace_event::ProcessMemoryMaps::VMRegion
|
process_memory_maps.cc | 51 value->SetString("mf", region.mapped_file);
|
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
memory_dump_event.py | 35 def Match(self, mapped_file): 38 or bool(self._file_pattern.search(mapped_file))) 40 def GetMatchingChild(self, mapped_file): 49 if child.Match(mapped_file): 223 mapped_file = vm_region['mf'] 224 category = category.GetMatchingChild(mapped_file)
|
memory_dump_event_unittest.py | 14 def vm_region(mapped_file, byte_stats): 16 'mf': mapped_file, 31 'vm_regions': [vm_region(mapped_file, byte_stats) 32 for mapped_file, byte_stats in mmaps.iteritems()]}
|
/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...] |