Symbol: CoreFileDebuggerInterface
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
102
CoreFileDebuggerInterface::GetNextDebugEvent(DebugEvent*& _event)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
109
CoreFileDebuggerInterface::SetTeamDebuggingFlags(uint32 flags)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
116
CoreFileDebuggerInterface::ContinueThread(thread_id thread)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
123
CoreFileDebuggerInterface::StopThread(thread_id thread)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
130
CoreFileDebuggerInterface::SingleStepThread(thread_id thread)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
137
CoreFileDebuggerInterface::InstallBreakpoint(target_addr_t address)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
144
CoreFileDebuggerInterface::UninstallBreakpoint(target_addr_t address)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
151
CoreFileDebuggerInterface::InstallWatchpoint(target_addr_t address, uint32 type,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
159
CoreFileDebuggerInterface::UninstallWatchpoint(target_addr_t address)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
166
CoreFileDebuggerInterface::GetSystemInfo(SystemInfo& info)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
173
CoreFileDebuggerInterface::GetTeamInfo(TeamInfo& info)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
182
CoreFileDebuggerInterface::GetThreadInfos(BObjectList<ThreadInfo, true>& infos)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
201
CoreFileDebuggerInterface::GetImageInfos(BObjectList<ImageInfo, true>& infos)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
222
CoreFileDebuggerInterface::GetAreaInfos(BObjectList<AreaInfo, true>& infos)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
229
CoreFileDebuggerInterface::GetSemaphoreInfos(BObjectList<SemaphoreInfo, true>& infos)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
236
CoreFileDebuggerInterface::GetSymbolInfos(team_id team, image_id image,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
26
CoreFileDebuggerInterface::CoreFileDebuggerInterface(CoreFile* coreFile)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
275
CoreFileDebuggerInterface::GetSymbolInfo(team_id team, image_id image,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
284
CoreFileDebuggerInterface::GetThreadInfo(thread_id thread, ThreadInfo& info)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
296
CoreFileDebuggerInterface::GetCpuState(thread_id thread, CpuState*& _state)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
308
CoreFileDebuggerInterface::SetCpuState(thread_id thread, const CpuState* state)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
315
CoreFileDebuggerInterface::GetCpuFeatures(uint32& flags)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
322
CoreFileDebuggerInterface::WriteCoreFile(const char* path)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
329
CoreFileDebuggerInterface::GetMemoryProperties(target_addr_t address,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
34
CoreFileDebuggerInterface::~CoreFileDebuggerInterface()
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
344
CoreFileDebuggerInterface::ReadMemory(target_addr_t address, void* _buffer,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
382
CoreFileDebuggerInterface::WriteMemory(target_addr_t address, void* buffer,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
390
CoreFileDebuggerInterface::_GetThreadInfo(const CoreFileThreadInfo& coreInfo,
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
44
CoreFileDebuggerInterface::Init()
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
68
CoreFileDebuggerInterface::Close(bool killTeam)
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
74
CoreFileDebuggerInterface::Connected() const
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
81
CoreFileDebuggerInterface::IsPostMortem() const
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
88
CoreFileDebuggerInterface::TeamID() const
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.cpp
95
CoreFileDebuggerInterface::GetArchitecture() const
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.h
19
class CoreFileDebuggerInterface : public DebuggerInterface {
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.h
21
CoreFileDebuggerInterface(CoreFile* coreFile);
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.h
22
virtual ~CoreFileDebuggerInterface();
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
207
CoreFileDebuggerInterface* interface
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
208
= new(std::nothrow) CoreFileDebuggerInterface(coreFile);