HomeSort by relevance Sort by last modified time
    Searched full:mapped_file (Results 1 - 13 of 13) 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/libchrome/base/trace_event/
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, &region->mapped_file);
process_memory_maps.h 34 std::string mapped_file; member in struct:base::trace_event::ProcessMemoryMaps::VMRegion
process_memory_maps.cc 48 value->SetString("mf", region.mapped_file);
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);
  /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/chromium-trace/catapult/telemetry/telemetry/timeline/
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()]}
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)
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc     [all...]
  /external/chromium-trace/catapult/telemetry/docs/pydoc/
telemetry.timeline.memory_dump_event.html 124 <dl><dt><a name="MmapCategory-GetMatchingChild"><strong>GetMatchingChild</strong></a>(self, mapped_file)</dt><dd><tt>Get&nbsp;the&nbsp;first&nbsp;matching&nbsp;sub-category&nbsp;for&nbsp;a&nbsp;given&nbsp;mapped&nbsp;file.<br>
129 <dl><dt><a name="MmapCategory-Match"><strong>Match</strong></a>(self, mapped_file)</dt><dd><tt>Test&nbsp;whether&nbsp;a&nbsp;mapped&nbsp;file&nbsp;matches&nbsp;this&nbsp;category.</tt></dd></dl>
  /external/llvm/include/llvm/Support/
FileSystem.h 641 /// boost::iostreams::mapped_file.

Completed in 305 milliseconds