OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AllocationContext
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/trace_event/
heap_profiler_allocation_context.cc
16
AllocationContext
::
AllocationContext
() {}
19
AllocationContext
AllocationContext
::Empty() {
20
AllocationContext
ctx;
36
bool operator==(const
AllocationContext
& lhs, const
AllocationContext
& rhs) {
44
using base::trace_event::
AllocationContext
;
53
size_t hash<
AllocationContext
>::operator()(const
AllocationContext
& ctx) const
[
all
...]
heap_profiler_allocation_context.h
50
// The |
AllocationContext
| is context metadata that is kept for every allocation
54
struct BASE_EXPORT
AllocationContext
{
57
static
AllocationContext
Empty();
71
// tracker. Except in tests, an |
AllocationContext
| should only be obtained
74
AllocationContext
();
77
bool BASE_EXPORT operator==(const
AllocationContext
& lhs,
78
const
AllocationContext
& rhs);
91
struct BASE_EXPORT hash<base::trace_event::
AllocationContext
> {
92
size_t operator()(const base::trace_event::
AllocationContext
& context) const;
Completed in 209 milliseconds