Home
last modified time | relevance | path

Searched refs:RetrieveStackInfo (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/coroutines/
Dcoroutine.cpp127 bool Coroutine::RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize) in RetrieveStackInfo() function in ark::Coroutine
131 return context_->RetrieveStackInfo(stackAddr, stackSize, guardSize); in RetrieveStackInfo()
134 return ManagedThread::RetrieveStackInfo(stackAddr, stackSize, guardSize); in RetrieveStackInfo()
Dstackful_coroutine.cpp43 bool StackfulCoroutineContext::RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guard… in RetrieveStackInfo() function in ark::StackfulCoroutineContext
90 RetrieveStackInfo(contextStackP, contextStackSize, contextGuardSize); in CleanUp()
Dcoroutine_context.h60 virtual bool RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize) = 0;
Dthreaded_coroutine.h51 bool RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize) override;
Dstackful_coroutine.h59 bool RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize) override;
Dthreaded_coroutine.cpp83 bool ThreadedCoroutineContext::RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guard… in RetrieveStackInfo() function in ark::ThreadedCoroutineContext
Dcoroutine.h137 bool RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize) override;
/arkcompiler/runtime_core/static_core/runtime/
Dthread.cpp317 bool ManagedThread::RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize) in RetrieveStackInfo() function in ark::ManagedThread
337 if (!RetrieveStackInfo(stackBase, stackSize, guardSize)) { in InitForStackOverflowCheck()
/arkcompiler/runtime_core/static_core/runtime/include/
Dmanaged_thread.h609 virtual bool RetrieveStackInfo(void *&stackAddr, size_t &stackSize, size_t &guardSize);