Home
last modified time | relevance | path

Searched refs:tableBuf_ (Results 1 – 2 of 2) sorted by relevance

/developtools/hiperf/src/
Dunique_stack_table.cpp33 tableBuf_ = std::make_unique<uint8_t[]>(tableSize_); in Init()
42 if (tableBuf_ == nullptr) { in Resize()
63 if (memcpy_s(newTable.get(), tableSize_, tableBuf_.get(), tableSize_) != 0) { in Resize()
68 tableBuf_ = std::move(newTable); in Resize()
83 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in PutIpInSlot()
119 if (tableBuf_ == nullptr) { in PutIpsInTable()
144 if (tableBuf_ == nullptr) { in GetWriteSize()
160 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in GetFrame()
172 if (tableBuf_ == nullptr) { in GetIpsByStackId()
194 Node *tableHead_ = reinterpret_cast<Node *>(tableBuf_.get()); in ImportNode()
/developtools/hiperf/include/
Dunique_stack_table.h91 tableBuf_ = nullptr; in ~UniqueStackTable()
118 return reinterpret_cast<Node *>(tableBuf_.get()); in GetHeadNode()
126 std::unique_ptr<uint8_t[]> tableBuf_ = nullptr; variable