Lines Matching refs:UseHoldRefCount
118 bool UseHoldRefCount, map_var_info_t Name = nullptr,
121 TgtPtrBegin(TB), States(std::make_unique<StatesTy>(UseHoldRefCount ? 0 in HstPtrBase()
124 !UseHoldRefCount ? 0 in HstPtrBase()
164 void resetRefCount(bool UseHoldRefCount) const { in resetRefCount()
166 UseHoldRefCount ? States->HoldRefCount : States->DynRefCount; in resetRefCount()
172 void incRefCount(bool UseHoldRefCount) const { in incRefCount()
174 UseHoldRefCount ? States->HoldRefCount : States->DynRefCount; in incRefCount()
183 uint64_t decRefCount(bool UseHoldRefCount) const { in decRefCount()
185 UseHoldRefCount ? States->HoldRefCount : States->DynRefCount; in decRefCount()
187 UseHoldRefCount ? States->DynRefCount : States->HoldRefCount; in decRefCount()
213 bool decShouldRemove(bool UseHoldRefCount, bool AfterReset = false) const {
215 UseHoldRefCount ? States->HoldRefCount : States->DynRefCount;
217 UseHoldRefCount ? States->DynRefCount : States->HoldRefCount;
380 bool UseHoldRefCount, bool &IsHostPtr,