Searched refs:tableBuf_ (Results 1 - 2 of 2) sorted by relevance
/developtools/hiperf/src/ |
H A D | unique_stack_table.cpp | 36 tableBuf_ = std::make_unique<uint8_t[]>(tableSize_); in Init() 45 CHECK_TRUE(tableBuf_ == nullptr, 0, 1, "Hashtable not exist, fatal error!"); 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() 121 if (tableBuf_ == nullptr) { in PutIpsInTable() 144 CHECK_TRUE(tableBuf_ == nullptr, 0, 1, "Hashtable not exist, fatal error!"); in GetWriteSize() 157 Node *tableHead = reinterpret_cast<Node *>(tableBuf_.get()); in GetFrame() 166 CHECK_TRUE(tableBuf_ == nullptr, false, 1, "Hashtable not exist, failed to find frame!"); in GetIpsByStackId() 185 Node *tableHead = reinterpret_cast<Node *>(tableBuf_ in ImportNode() [all...] |
/developtools/hiperf/include/ |
H A D | unique_stack_table.h | 91 tableBuf_ = nullptr; in ~UniqueStackTable() 118 return reinterpret_cast<Node *>(tableBuf_.get()); in GetHeadNode() 126 std::unique_ptr<uint8_t[]> tableBuf_ = nullptr; member in OHOS::Developtools::HiPerf::UniqueStackTable
|
Completed in 1 milliseconds