Searched refs:IdAllocatorGeneric (Results 1 – 2 of 2) sorted by relevance
32 class IdAllocatorGeneric {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) { in IdAllocator()
23 IdAllocatorGeneric::IdAllocatorGeneric(uint32_t max_id) : max_id_(max_id) { in IdAllocatorGeneric() function in perfetto::IdAllocatorGeneric27 IdAllocatorGeneric::~IdAllocatorGeneric() = default;29 uint32_t IdAllocatorGeneric::AllocateGeneric() { in AllocateGeneric()51 void IdAllocatorGeneric::FreeGeneric(uint32_t id) { in FreeGeneric()