Searched refs:scs_region_ (Results 1 – 2 of 2) sorted by relevance
181 if (thread->scs_region_ != nullptr) { in Destroy()182 MunmapOrDie(thread->scs_region_, SCS_GUARD_REGION_SIZE); in Destroy()252 scs_region_ = Mmap(SCS_GUARD_REGION_SIZE); in AllocShadowCallStack()253 if (scs_region_ == MAP_FAILED) { in AllocShadowCallStack()255 scs_region_ = nullptr; // do not unmap in Destroy! in AllocShadowCallStack()259 GuestAddr scs_region_base = ToGuestAddr(scs_region_); in AllocShadowCallStack()264 if (mprotect(scs_region_, scs_base_ - scs_region_base, PROT_NONE) != 0 || in AllocShadowCallStack()
135 void* scs_region_ = nullptr; variable