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

  /external/libchrome/base/trace_event/
memory_allocator_dump.cc 25 MemoryAllocatorDump::MemoryAllocatorDump(const std::string& absolute_name,
28 : absolute_name_(absolute_name),
32 // The |absolute_name| cannot be empty.
33 DCHECK(!absolute_name.empty());
35 // The |absolute_name| can contain slash separator, but not leading or
37 DCHECK(absolute_name[0] != '/' && *absolute_name.rbegin() != '/');
41 // absolute_name with the current PID.
42 // Rationale: |absolute_name| is already supposed to be unique within a
44 MemoryAllocatorDump::MemoryAllocatorDump(const std::string& absolute_name,
    [all...]
process_memory_dump.cc 102 const std::string& absolute_name) {
103 MemoryAllocatorDump* mad = new MemoryAllocatorDump(absolute_name, this);
109 const std::string& absolute_name,
111 MemoryAllocatorDump* mad = new MemoryAllocatorDump(absolute_name, this, guid);
117 DCHECK_EQ(0ul, allocator_dumps_.count(mad->absolute_name()));
119 allocator_dumps_[mad->absolute_name()] = mad;
123 const std::string& absolute_name) const {
124 auto it = allocator_dumps_.find(absolute_name);
129 const std::string& absolute_name) {
130 MemoryAllocatorDump* mad = GetAllocatorDump(absolute_name);
    [all...]
process_memory_dump.h 74 // absolute_name: a name that uniquely identifies allocator dumps produced
83 MemoryAllocatorDump* CreateAllocatorDump(const std::string& absolute_name);
84 MemoryAllocatorDump* CreateAllocatorDump(const std::string& absolute_name,
89 MemoryAllocatorDump* GetAllocatorDump(const std::string& absolute_name) const;
92 const std::string& absolute_name);
108 // Adds a heap dump for the allocator with |absolute_name|. The |TracedValue|
111 void AddHeapDump(const std::string& absolute_name,
memory_allocator_dump.h 30 MemoryAllocatorDump(const std::string& absolute_name,
33 MemoryAllocatorDump(const std::string& absolute_name,
61 const std::string& absolute_name() const { return absolute_name_; } function in class:base::trace_event::MemoryAllocatorDump
75 // Subsequent MemoryAllocatorDump(s) with the same |absolute_name| are
memory_allocator_dump_unittest.cc 113 // snapshots if the |absolute_name| of the dump doesn't change
141 EXPECT_EQ("foobar_allocator", root_heap->absolute_name());
154 EXPECT_EQ("foobar_allocator/sub_heap", sub_heap->absolute_name());
162 EXPECT_EQ("foobar_allocator/sub_heap/empty", empty_sub_heap->absolute_name());
  /external/icu/icu4c/source/test/intltest/
idnaconf.cpp 75 char* absolute_name = new char[t]; local
76 strcpy(absolute_name, path);
77 strcat(absolute_name, name);
78 f = fopen(absolute_name, "rb");
79 delete [] absolute_name;
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
message.py 624 absolute_name = name
657 secret = self.message.keyring.get(absolute_name)
662 absolute_name,
    [all...]

Completed in 246 milliseconds