Lines Matching refs:m_session_data

69   if (m_session_data)  in GetDebuggedProcessId()
70 return m_session_data->m_debugger->GetProcess().GetProcessId(); in GetDebuggedProcessId()
84 if (!m_session_data) { in DetachProcess()
89 debugger_thread = m_session_data->m_debugger; in DetachProcess()
100 m_session_data.reset(); in DetachProcess()
138 m_session_data.reset(new ProcessWindowsData(stop_at_entry)); in LaunchProcess()
139 m_session_data->m_debugger.reset(new DebuggerThread(delegate)); in LaunchProcess()
140 DebuggerThreadSP debugger = m_session_data->m_debugger; in LaunchProcess()
175 m_session_data.reset( in AttachProcess()
179 m_session_data->m_debugger = debugger; in AttachProcess()
221 if (!m_session_data) { in DestroyProcess()
227 debugger_thread = m_session_data->m_debugger; in DestroyProcess()
242 m_session_data.reset(); in DestroyProcess()
251 caused_stop = ::DebugBreakProcess(m_session_data->m_debugger->GetProcess() in HaltProcess()
269 if (!m_session_data) { in ReadMemory()
279 HostProcess process = m_session_data->m_debugger->GetProcess(); in ReadMemory()
301 if (!m_session_data) { in WriteMemory()
308 HostProcess process = m_session_data->m_debugger->GetProcess(); in WriteMemory()
331 if (!m_session_data) { in AllocateMemory()
338 HostProcess process = m_session_data->m_debugger->GetProcess(); in AllocateMemory()
358 if (!m_session_data) { in DeallocateMemory()
365 HostProcess process = m_session_data->m_debugger->GetProcess(); in DeallocateMemory()
383 if (!m_session_data) { in GetMemoryRegionInfo()
389 HostProcess process = m_session_data->m_debugger->GetProcess(); in GetMemoryRegionInfo()
472 if (m_session_data && !m_session_data->m_initial_stop_received) { in OnExitProcess()
491 if (!m_session_data) { in OnDebugException()
503 !m_session_data->m_initial_stop_received) { in OnDebugException()
510 m_session_data->m_initial_stop_received = true; in OnDebugException()
511 ::SetEvent(m_session_data->m_initial_stop_event); in OnDebugException()
539 if (m_session_data->m_initial_stop_received) { in OnDebuggerError()
550 m_session_data->m_launch_error = error; in OnDebuggerError()
551 ::SetEvent(m_session_data->m_initial_stop_event); in OnDebuggerError()
567 if (::WaitForSingleObject(m_session_data->m_initial_stop_event, INFINITE) == in WaitForDebuggerConnection()
572 return m_session_data->m_launch_error; in WaitForDebuggerConnection()