Home
last modified time | relevance | path

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

/base/hiviewdfx/faultloggerd/interfaces/innerkits/async_stack/
H A Dunique_stack_table.cpp33 if (tableBufMMap_ != nullptr) { in Init()
54 tableBufMMap_ = retBufMMap; in Init()
55 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, tableBufMMap_, tableSize_, "async_stack_table"); in Init()
66 if (tableBufMMap_ == nullptr) { in Resize()
89 if (memcpy_s(newTableBuf, newtableSize, tableBufMMap_, tableSize_) != 0) { in Resize()
92 munmap(tableBufMMap_, tableSize_); in Resize()
93 tableBufMMap_ = newTableBuf; in Resize()
112 Node *tableHead = reinterpret_cast<Node *>(tableBufMMap_); in PutPcInSlot()
183 if (tableBufMMap_ == nullptr) { in GetWriteSize()
199 Node *tableHead = reinterpret_cast<Node *>(tableBufMMap_); in GetFrame()
[all...]
/base/hiviewdfx/faultloggerd/interfaces/innerkits/async_stack/include/
H A Dunique_stack_table.h95 :tableBufMMap_(buf), tableSize_(size), releaseBuffer_(releaseBuffer) in UniqueStackTable()
102 if (tableBufMMap_ != nullptr && releaseBuffer_) { in ~UniqueStackTable()
103 munmap(tableBufMMap_, tableSize_); in ~UniqueStackTable()
104 tableBufMMap_ = nullptr; in ~UniqueStackTable()
132 return reinterpret_cast<Node *>(tableBufMMap_); in GetHeadNode()
139 void* tableBufMMap_ = nullptr; member in OHOS::HiviewDFX::UniqueStackTable

Completed in 2 milliseconds