Home | History | Annotate | Download | only in MacOSX

Lines Matching full:new_state

261 MachProcess::SetState(nub_state_t new_state)
273 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::SetState(%s) ignoring new state since current state is exited", DNBStateAsString(new_state));
275 else if (old_state == new_state)
277 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::SetState(%s) ignoring redundant state change...", DNBStateAsString(new_state));
281 if (NUB_STATE_IS_STOPPED(new_state))
286 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::SetState(%s) upating state (previous state was %s), event_mask = 0x%8.8x", DNBStateAsString(new_state), DNBStateAsString(old_state), event_mask);
288 m_state = new_state;
289 if (new_state == eStateStopped)