Home | History | Annotate | Download | only in heap

Lines Matching defs:m_state

290         explicit NoSweepScope(ThreadState* state) : m_state(state)
292 ASSERT(!m_state->m_sweepInProgress);
293 m_state->m_sweepInProgress = true;
297 ASSERT(m_state->m_sweepInProgress);
298 m_state->m_sweepInProgress = false;
301 ThreadState* m_state;
465 : m_state(ThreadState::current())
467 if (m_state->isAtSafePoint()) {
471 m_state = 0;
473 m_state->enterSafePoint(stackState, this);
479 if (m_state)
480 m_state->leaveSafePoint();
484 ThreadState* m_state;