Home
last modified time | relevance | path

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

/external/libcxx/test/support/
Dcount_new.hpp226 explicit DisableAllocationGuard(bool disable = true) : m_disabled(disable) in DisableAllocationGuard()
229 if (globalMemCounter.disable_allocations == true) m_disabled = false; in DisableAllocationGuard()
230 if (m_disabled) globalMemCounter.disableAllocations(); in DisableAllocationGuard()
234 if (m_disabled) globalMemCounter.enableAllocations(); in release()
235 m_disabled = false; in release()
243 bool m_disabled; member