Symbol: CpuState
headers/private/debugger/arch/Architecture.h
115
CpuState* state) = 0;
headers/private/debugger/arch/Architecture.h
118
CpuState* state,
headers/private/debugger/arch/Architecture.h
123
CpuState* cpuState,
headers/private/debugger/arch/Architecture.h
21
class CpuState;
headers/private/debugger/arch/Architecture.h
80
virtual status_t CreateCpuState(CpuState*& _state) = 0;
headers/private/debugger/arch/Architecture.h
82
size_t size, CpuState*& _state) = 0;
headers/private/debugger/arch/Architecture.h
85
CpuState* cpuState, bool isTopFrame,
headers/private/debugger/arch/Architecture.h
87
CpuState*& _previousCpuState) = 0;
headers/private/debugger/arch/Architecture.h
95
CpuState* previousCpuState) = 0;
headers/private/debugger/arch/CpuState.h
20
class CpuState : public BReferenceable {
headers/private/debugger/arch/CpuState.h
22
virtual ~CpuState();
headers/private/debugger/arch/CpuState.h
24
virtual status_t Clone(CpuState*& _clone) const = 0;
headers/private/debugger/controllers/TeamDebugger.h
85
virtual void ValueNodeValueRequested(CpuState* cpuState,
headers/private/debugger/controllers/TeamDebugger.h
89
CpuState* state,
headers/private/debugger/controllers/ThreadHandler.h
102
bool _DoStepOver(CpuState* cpuState);
headers/private/debugger/controllers/ThreadHandler.h
113
CpuState* cpuState);
headers/private/debugger/controllers/ThreadHandler.h
118
bool _HandleBreakpointHitStep(CpuState* cpuState);
headers/private/debugger/controllers/ThreadHandler.h
119
bool _HandleSingleStepStep(CpuState* cpuState);
headers/private/debugger/controllers/ThreadHandler.h
86
bool _HandleThreadStopped(CpuState* cpuState,
headers/private/debugger/controllers/ThreadHandler.h
91
bool _HandleSetAddress(CpuState* cpuState,
headers/private/debugger/controllers/ThreadHandler.h
95
CpuState* cpuState, uint32 stoppedReason,
headers/private/debugger/debug_info/SpecificImageDebugInfo.h
20
class CpuState;
headers/private/debugger/debug_info/SpecificImageDebugInfo.h
64
CpuState* cpuState,
headers/private/debugger/debug_info/SpecificImageDebugInfo.h
68
CpuState*& _previousCpuState) = 0;
headers/private/debugger/model/ReturnValueInfo.h
14
class CpuState;
headers/private/debugger/model/ReturnValueInfo.h
21
CpuState* state);
headers/private/debugger/model/ReturnValueInfo.h
24
void SetTo(target_addr_t address, CpuState* state);
headers/private/debugger/model/ReturnValueInfo.h
28
CpuState* State() const { return fState; }
headers/private/debugger/model/ReturnValueInfo.h
32
CpuState* fState;
headers/private/debugger/model/StackFrame.h
26
class CpuState;
headers/private/debugger/model/StackFrame.h
42
CpuState* cpuState,
headers/private/debugger/model/StackFrame.h
51
CpuState* GetCpuState() const { return fCpuState; }
headers/private/debugger/model/StackFrame.h
58
CpuState* PreviousCpuState() const
headers/private/debugger/model/StackFrame.h
60
void SetPreviousCpuState(CpuState* state);
headers/private/debugger/model/StackFrame.h
95
CpuState* fCpuState;
headers/private/debugger/model/StackFrame.h
96
CpuState* fPreviousCpuState;
headers/private/debugger/model/Thread.h
19
class CpuState;
headers/private/debugger/model/Thread.h
69
CpuState* GetCpuState() const { return fCpuState; }
headers/private/debugger/model/Thread.h
70
void SetCpuState(CpuState* state);
headers/private/debugger/model/Thread.h
95
CpuState* fCpuState;
headers/private/debugger/model/Variable.h
14
class CpuState;
headers/private/debugger/model/Variable.h
24
CpuState* state = NULL);
headers/private/debugger/model/Variable.h
31
CpuState* GetCpuState() const { return fCpuState; }
headers/private/debugger/model/Variable.h
38
CpuState* fCpuState;
headers/private/debugger/user_interface/UserInterface.h
117
virtual void ValueNodeValueRequested(CpuState* cpuState,
headers/private/debugger/user_interface/UserInterface.h
121
CpuState* state, Value* newValue) = 0;
headers/private/debugger/user_interface/UserInterface.h
20
class CpuState;
src/apps/debugger/user_interface/gui/expression_eval_window/ExpressionEvaluationWindow.cpp
231
ExpressionEvaluationWindow::ValueNodeValueRequested(CpuState* cpuState,
src/apps/debugger/user_interface/gui/expression_eval_window/ExpressionEvaluationWindow.cpp
251
CpuState* state, Value* newValue)
src/apps/debugger/user_interface/gui/expression_eval_window/ExpressionEvaluationWindow.h
54
virtual void ValueNodeValueRequested(CpuState* cpuState,
src/apps/debugger/user_interface/gui/expression_eval_window/ExpressionEvaluationWindow.h
65
CpuState* state,
src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp
131
void SetCpuState(CpuState* cpuState)
src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp
191
CpuState* fCpuState;
src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp
257
RegistersView::SetCpuState(CpuState* cpuState)
src/apps/debugger/user_interface/gui/team_window/RegistersView.h
29
void SetCpuState(CpuState* cpuState);
src/apps/debugger/user_interface/gui/team_window/RegistersView.h
51
CpuState* fCpuState;
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1001
TeamWindow::ValueNodeValueRequested(CpuState* cpuState,
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1022
TeamWindow::ValueNodeWriteRequested(ValueNode* node, CpuState* state,
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1660
CpuState* cpuState = NULL;
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1661
BReference<CpuState> cpuStateReference;
src/apps/debugger/user_interface/gui/team_window/TeamWindow.h
139
virtual void ValueNodeValueRequested(CpuState* cpuState,
src/apps/debugger/user_interface/gui/team_window/TeamWindow.h
147
CpuState* state, Value* value);
src/apps/debugger/user_interface/gui/team_window/VariablesView.h
167
virtual void ValueNodeValueRequested(CpuState* cpuState,
src/apps/debugger/user_interface/gui/team_window/VariablesView.h
178
CpuState* state,
src/apps/debugger/user_interface/gui/team_window/VariablesView.h
19
class CpuState;
src/kits/debugger/arch/Architecture.cpp
102
BReference<CpuState> cpuStateReference(cpuState);
src/kits/debugger/arch/Architecture.cpp
164
CpuState* previousCpuState = NULL;
src/kits/debugger/arch/Architecture.cpp
98
ImageDebugInfoProvider* imageInfoProvider, CpuState* cpuState,
src/kits/debugger/arch/CpuState.cpp
9
CpuState::~CpuState()
src/kits/debugger/arch/x86/ArchitectureX86.cpp
327
ArchitectureX86::CreateCpuState(CpuState*& _state)
src/kits/debugger/arch/x86/ArchitectureX86.cpp
340
CpuState*& _state)
src/kits/debugger/arch/x86/ArchitectureX86.cpp
357
CpuState* _cpuState, bool isTopFrame, StackFrame*& _frame,
src/kits/debugger/arch/x86/ArchitectureX86.cpp
358
CpuState*& _previousCpuState)
src/kits/debugger/arch/x86/ArchitectureX86.cpp
500
CpuState* previousCpuState)
src/kits/debugger/arch/x86/ArchitectureX86.cpp
667
InstructionInfo& _info, CpuState* state)
src/kits/debugger/arch/x86/ArchitectureX86.cpp
688
CpuState* state, target_addr_t& _targetAddress)
src/kits/debugger/arch/x86/ArchitectureX86.h
44
virtual status_t CreateCpuState(CpuState*& _state);
src/kits/debugger/arch/x86/ArchitectureX86.h
46
size_t size, CpuState*& _state);
src/kits/debugger/arch/x86/ArchitectureX86.h
49
CpuState* cpuState, bool isTopFrame,
src/kits/debugger/arch/x86/ArchitectureX86.h
51
CpuState*& _previousCpuState);
src/kits/debugger/arch/x86/ArchitectureX86.h
56
CpuState* previousCpuState);
src/kits/debugger/arch/x86/ArchitectureX86.h
71
InstructionInfo& _info, CpuState* state);
src/kits/debugger/arch/x86/ArchitectureX86.h
74
CpuState* state,
src/kits/debugger/arch/x86/CpuStateX86.cpp
91
CpuStateX86::Clone(CpuState*& _clone) const
src/kits/debugger/arch/x86/CpuStateX86.h
81
class CpuStateX86 : public CpuState {
src/kits/debugger/arch/x86/CpuStateX86.h
87
virtual status_t Clone(CpuState*& _clone) const;
src/kits/debugger/arch/x86/disasm/DisassemblerX86.cpp
169
CpuState* state)
src/kits/debugger/arch/x86/disasm/DisassemblerX86.h
13
class CpuState;
src/kits/debugger/arch/x86/disasm/DisassemblerX86.h
36
CpuState* state);
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
404
ArchitectureX8664::CreateCpuState(CpuState*& _state)
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
417
CpuState*& _state)
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
434
CpuState* _cpuState, bool isTopFrame, StackFrame*& _frame,
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
435
CpuState*& _previousCpuState)
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
577
CpuState* previousCpuState)
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
744
InstructionInfo& _info, CpuState* state)
src/kits/debugger/arch/x86_64/ArchitectureX8664.cpp
765
CpuState* state, target_addr_t& _targetAddress)
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
45
virtual status_t CreateCpuState(CpuState*& _state);
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
47
size_t size, CpuState*& _state);
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
50
CpuState* cpuState, bool isTopFrame,
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
52
CpuState*& _previousCpuState);
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
57
CpuState* previousCpuState);
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
72
InstructionInfo& _info, CpuState* state);
src/kits/debugger/arch/x86_64/ArchitectureX8664.h
75
CpuState* state,
src/kits/debugger/arch/x86_64/CpuStateX8664.cpp
128
CpuStateX8664::Clone(CpuState*& _clone) const
src/kits/debugger/arch/x86_64/CpuStateX8664.h
107
class CpuStateX8664 : public CpuState {
src/kits/debugger/arch/x86_64/CpuStateX8664.h
113
virtual status_t Clone(CpuState*& _clone) const;
src/kits/debugger/arch/x86_64/disasm/DisassemblerX8664.cpp
177
CpuState* state)
src/kits/debugger/arch/x86_64/disasm/DisassemblerX8664.h
14
class CpuState;
src/kits/debugger/arch/x86_64/disasm/DisassemblerX8664.h
36
CpuState* state);
src/kits/debugger/controllers/DebugReportGenerator.cpp
634
CpuState* state = thread->GetCpuState();
src/kits/debugger/controllers/DebugReportGenerator.cpp
739
CpuState* state, target_addr_t framePointer, uint8 stackDirection)
src/kits/debugger/controllers/DebugReportGenerator.h
78
CpuState* state,
src/kits/debugger/controllers/TeamDebugger.cpp
1048
TeamDebugger::ValueNodeValueRequested(CpuState* cpuState,
src/kits/debugger/controllers/TeamDebugger.cpp
1074
TeamDebugger::ValueNodeWriteRequested(ValueNode* node, CpuState* state,
src/kits/debugger/controllers/ThreadHandler.cpp
160
CpuState* cpuState = event->GetCpuState();
src/kits/debugger/controllers/ThreadHandler.cpp
318
CpuState* cpuState = fThread->GetCpuState();
src/kits/debugger/controllers/ThreadHandler.cpp
320
BReference<CpuState> cpuStateReference(cpuState);
src/kits/debugger/controllers/ThreadHandler.cpp
509
ThreadHandler::_HandleThreadStopped(CpuState* cpuState, uint32 stoppedReason,
src/kits/debugger/controllers/ThreadHandler.cpp
524
ThreadHandler::_HandleSetAddress(CpuState* state, target_addr_t address)
src/kits/debugger/controllers/ThreadHandler.cpp
526
CpuState* newState = NULL;
src/kits/debugger/controllers/ThreadHandler.cpp
529
BReference<CpuState> stateReference(newState, true);
src/kits/debugger/controllers/ThreadHandler.cpp
544
ThreadHandler::_SetThreadState(uint32 state, CpuState* cpuState,
src/kits/debugger/controllers/ThreadHandler.cpp
595
ThreadHandler::_DoStepOver(CpuState* cpuState)
src/kits/debugger/controllers/ThreadHandler.cpp
690
ThreadHandler::_HandleBreakpointHitStep(CpuState* cpuState)
src/kits/debugger/controllers/ThreadHandler.cpp
801
ThreadHandler::_HandleSingleStepStep(CpuState* cpuState)
src/kits/debugger/controllers/ThreadHandler.cpp
893
ThreadHandler::_HandleBreakpointConditionIfNeeded(CpuState* cpuState)
src/kits/debugger/debug_info/DebuggerImageDebugInfo.cpp
80
FunctionInstance* functionInstance, CpuState* cpuState,
src/kits/debugger/debug_info/DebuggerImageDebugInfo.cpp
82
StackFrame*& _previousFrame, CpuState*& _previousCpuState)
src/kits/debugger/debug_info/DebuggerImageDebugInfo.h
43
CpuState* cpuState,
src/kits/debugger/debug_info/DebuggerImageDebugInfo.h
47
CpuState*& _previousCpuState);
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
1178
CpuState* subroutineState = valueInfo->State();
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
178
RegisterMap* fromDwarfMap, RegisterMap* toDwarfMap, CpuState* cpuState,
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
214
CpuState* fCpuState;
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
586
FunctionInstance* functionInstance, CpuState* cpuState,
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
588
StackFrame*& _frame, CpuState*& _previousCpuState)
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
619
CpuState* previousCpuState;
src/kits/debugger/debug_info/DwarfImageDebugInfo.cpp
623
BReference<CpuState> previousCpuStateReference(previousCpuState, true);
src/kits/debugger/debug_info/DwarfImageDebugInfo.h
73
CpuState* cpuState,
src/kits/debugger/debug_info/DwarfImageDebugInfo.h
77
CpuState*& _previousCpuState);
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.cpp
282
DIEType* returnType, ValueLocation* location, CpuState* state,
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.h
17
class CpuState;
src/kits/debugger/debug_info/DwarfStackFrameDebugInfo.h
64
CpuState* state,
src/kits/debugger/debugger_interface/DebugEvent.cpp
107
CpuState* state)
src/kits/debugger/debugger_interface/DebugEvent.cpp
41
thread_id thread, CpuState* state)
src/kits/debugger/debugger_interface/DebugEvent.cpp
84
CpuState* state)
src/kits/debugger/debugger_interface/DebugEvent.cpp
95
CpuState* state)
src/kits/debugger/debugger_interface/DebugEvent.h
17
class CpuState;
src/kits/debugger/debugger_interface/DebugEvent.h
53
CpuState* state);
src/kits/debugger/debugger_interface/DebugEvent.h
56
CpuState* GetCpuState() const { return fCpuState; }
src/kits/debugger/debugger_interface/DebugEvent.h
59
CpuState* fCpuState;
src/kits/debugger/debugger_interface/DebugEvent.h
85
thread_id thread, CpuState* state);
src/kits/debugger/debugger_interface/DebugEvent.h
92
thread_id thread, CpuState* state);
src/kits/debugger/debugger_interface/DebugEvent.h
99
thread_id thread, CpuState* state);
src/kits/debugger/debugger_interface/DebuggerInterface.h
19
class CpuState;
src/kits/debugger/debugger_interface/DebuggerInterface.h
86
CpuState*& _state) = 0;
src/kits/debugger/debugger_interface/DebuggerInterface.h
89
const CpuState* state) = 0;
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.h
66
CpuState*& _state);
src/kits/debugger/debugger_interface/core/CoreFileDebuggerInterface.h
69
const CpuState* state);
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.cpp
697
LocalDebuggerInterface::GetCpuState(thread_id thread, CpuState*& _state)
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.cpp
709
LocalDebuggerInterface::SetCpuState(thread_id thread, const CpuState* state)
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.cpp
810
CpuState* state = NULL;
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.cpp
824
CpuState* state = NULL;
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.cpp
838
CpuState* state = NULL;
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.h
57
CpuState*& _state);
src/kits/debugger/debugger_interface/local/LocalDebuggerInterface.h
60
const CpuState* state);
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.cpp
549
RemoteDebugSetCpuStateRequest::SetTo(thread_id thread, CpuState* state)
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.cpp
869
RemoteDebugGetCpuStateResponse::SetTo(CpuState* state)
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.h
281
void SetTo(thread_id thread, CpuState* state);
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.h
295
CpuState* fCpuState;
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.h
406
void SetTo(CpuState* state);
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.h
408
CpuState* GetCpuState() const { return fCpuState; }
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.h
415
CpuState* fCpuState;
src/kits/debugger/debugger_interface/remote/RemoteDebugRequest.h
48
class CpuState;
src/kits/debugger/jobs/GetCPUStateJob.cpp
44
CpuState* state;
src/kits/debugger/jobs/GetCPUStateJob.cpp
48
BReference<CpuState> reference(state, true);
src/kits/debugger/jobs/GetThreadStateJob.cpp
44
CpuState* state = NULL;
src/kits/debugger/jobs/GetThreadStateJob.cpp
46
BReference<CpuState> reference(state, true);
src/kits/debugger/jobs/Jobs.h
120
CpuState* fCpuState;
src/kits/debugger/jobs/Jobs.h
183
CpuState* cpuState,
src/kits/debugger/jobs/Jobs.h
20
class CpuState;
src/kits/debugger/jobs/Jobs.h
203
CpuState* fCpuState;
src/kits/debugger/jobs/Jobs.h
216
CpuState* cpuState,
src/kits/debugger/jobs/Jobs.h
229
CpuState* fCpuState;
src/kits/debugger/jobs/ResolveValueNodeJob.cpp
149
CpuState* variableCpuState = NULL;
src/kits/debugger/jobs/ResolveValueNodeJob.cpp
27
CpuState* cpuState, TeamTypeInformation* typeInformation,
src/kits/debugger/jobs/WriteValueNodeJob.cpp
25
CpuState* cpuState, TeamTypeInformation* typeInformation,
src/kits/debugger/model/ReturnValueInfo.cpp
21
ReturnValueInfo::ReturnValueInfo(target_addr_t address, CpuState* state)
src/kits/debugger/model/ReturnValueInfo.cpp
39
ReturnValueInfo::SetTo(target_addr_t address, CpuState* state)
src/kits/debugger/model/StackFrame.cpp
22
StackFrame::StackFrame(stack_frame_type type, CpuState* cpuState,
src/kits/debugger/model/StackFrame.cpp
92
StackFrame::SetPreviousCpuState(CpuState* state)
src/kits/debugger/model/Thread.cpp
90
Thread::SetCpuState(CpuState* state)
src/kits/debugger/model/Variable.cpp
16
ValueLocation* location, CpuState* state)
src/kits/debugger/value/ValueLoader.cpp
20
CpuState* cpuState)
src/kits/debugger/value/ValueLoader.h
16
class CpuState;
src/kits/debugger/value/ValueLoader.h
25
CpuState* cpuState);
src/kits/debugger/value/ValueLoader.h
45
CpuState* fCpuState;
src/kits/debugger/value/ValueWriter.cpp
21
DebuggerInterface* interface, CpuState* cpuState, thread_id targetThread)
src/kits/debugger/value/ValueWriter.h
17
class CpuState;
src/kits/debugger/value/ValueWriter.h
26
CpuState* cpuState,
src/kits/debugger/value/ValueWriter.h
40
CpuState* fCpuState;
src/system/kernel/debug/core_dump.cpp
1512
writer.Write(state->CpuState(), sizeof(debug_cpu_state));