Searched refs:IdAllocatorGeneric (Results 1 - 2 of 2) sorted by relevance

/external/perfetto/src/tracing/core/
H A Did_allocator.h32 class IdAllocatorGeneric { class in namespace:perfetto
35 explicit IdAllocatorGeneric(uint32_t max_id);
36 ~IdAllocatorGeneric();
43 IdAllocatorGeneric(const IdAllocatorGeneric&) = delete;
44 IdAllocatorGeneric& operator=(const IdAllocatorGeneric&) = delete;
52 class IdAllocator : public IdAllocatorGeneric {
54 explicit IdAllocator(T end) : IdAllocatorGeneric(end) {
H A Did_allocator.cc23 IdAllocatorGeneric::IdAllocatorGeneric(uint32_t max_id) : max_id_(max_id) { function in class:perfetto::IdAllocatorGeneric
27 IdAllocatorGeneric::~IdAllocatorGeneric() = default;
29 uint32_t IdAllocatorGeneric::AllocateGeneric() {
51 void IdAllocatorGeneric::FreeGeneric(uint32_t id) {

Completed in 150 milliseconds