Searched refs:mapped_file (Results 1 - 10 of 10) sorted by relevance
/external/google-breakpad/src/common/linux/ |
H A D | memory_mapped_file_unittest.cc | 53 void ExpectNoMappedData(const MemoryMappedFile& mapped_file) { argument 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...] |
H A D | 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);
|
/external/libchrome/base/trace_event/ |
H A D | process_memory_maps_dump_provider.cc | 32 char mapped_file[kMaxLineSize]; local 36 mapped_file) != 4) 61 region->mapped_file = mapped_file; 62 TrimWhitespaceASCII(region->mapped_file, TRIM_ALL, ®ion->mapped_file);
|
H A D | process_memory_maps.h | 34 std::string mapped_file; member in struct:base::trace_event::ProcessMemoryMaps::VMRegion
|
H A D | process_memory_maps_dump_provider_unittest.cc | 149 EXPECT_EQ("/file/1", regions_1[0].mapped_file); 160 EXPECT_EQ("/file/name with space", regions_1[1].mapped_file); 180 EXPECT_EQ("", regions_2[0].mapped_file);
|
H A D | process_memory_maps.cc | 48 value->SetString("mf", region.mapped_file);
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
H A D | 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/chromium-trace/catapult/telemetry/telemetry/timeline/ |
H A D | 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)
|
H A D | 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/tools/linux/md2core/ |
H A D | minidump-2-core.cc | 1009 MemoryMappedFile mapped_file(argv[argi], 0); 1010 if (!mapped_file.data()) { 1015 MinidumpMemoryRange dump(mapped_file.data(), mapped_file.size());
|
Completed in 243 milliseconds