Symbol: Watchpoint
headers/private/debugger/controllers/TeamDebugger.h
125
Watchpoint *watchpoint, bool enabled);
headers/private/debugger/controllers/TeamDebugger.h
128
Watchpoint* breakpoint);
headers/private/debugger/controllers/TeamDebugger.h
217
Watchpoint* watchpoint, bool enabled);
headers/private/debugger/controllers/TeamDebugger.h
219
void _HandleClearWatchpoint(Watchpoint* watchpoint);
headers/private/debugger/model/Team.h
196
bool AddWatchpoint(Watchpoint* watchpoint);
headers/private/debugger/model/Team.h
198
void RemoveWatchpoint(Watchpoint* watchpoint);
headers/private/debugger/model/Team.h
201
Watchpoint* WatchpointAt(int32 index) const;
headers/private/debugger/model/Team.h
202
Watchpoint* WatchpointAtAddress(
headers/private/debugger/model/Team.h
206
BObjectList<Watchpoint>& watchpoints)
headers/private/debugger/model/Team.h
264
Watchpoint* watchpoint);
headers/private/debugger/model/Team.h
476
Watchpoint* watchpoint);
headers/private/debugger/model/Team.h
478
Watchpoint* GetWatchpoint() const { return fWatchpoint; }
headers/private/debugger/model/Team.h
481
Watchpoint* fWatchpoint;
headers/private/debugger/model/Watchpoint.h
15
class Watchpoint : public BReferenceable {
headers/private/debugger/model/Watchpoint.h
17
Watchpoint(target_addr_t address, uint32 type,
headers/private/debugger/model/Watchpoint.h
19
~Watchpoint();
headers/private/debugger/model/Watchpoint.h
37
static int CompareWatchpoints(const Watchpoint* a,
headers/private/debugger/model/Watchpoint.h
38
const Watchpoint* b);
headers/private/debugger/model/Watchpoint.h
41
const Watchpoint* watchpoint);
headers/private/debugger/model/Watchpoint.h
53
typedef BObjectList<Watchpoint> WatchpointList;
headers/private/debugger/user_interface/UserInterface.h
160
Watchpoint* watchpoint,
headers/private/debugger/user_interface/UserInterface.h
165
Watchpoint* watchpoint) = 0;
headers/private/debugger/user_interface/UserInterface.h
36
class Watchpoint;
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp
135
Watchpoint* newWatchpoint = fTeam->WatchpointAt(watchpointIndex);
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp
158
Watchpoint* watchpoint = oldProxy->GetWatchpoint();
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp
291
bool _GetWatchpointValueAt(Watchpoint* watchpoint, int32 rowIndex,
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp
35
Watchpoint* watchpoint)
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp
398
BreakpointListView::WatchpointChanged(Watchpoint* watchpoint)
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.h
17
class Watchpoint;
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.h
29
Watchpoint* watchpoint);
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.h
35
Watchpoint* GetWatchpoint() const { return fWatchpoint; }
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.h
39
Watchpoint* fWatchpoint;
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.h
63
Watchpoint* breakpoint);
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp
205
Watchpoint* watchpoint = proxy->GetWatchpoint();
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp
290
Watchpoint* watchpoint = proxy->GetWatchpoint();
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp
82
BreakpointsView::WatchpointChanged(Watchpoint* watchpoint)
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.h
35
Watchpoint* watchpoint);
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.h
79
Watchpoint* breakpoint,
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.h
82
Watchpoint* watchpoint) = 0;
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1098
BReference<Watchpoint> watchpointReference(event.GetWatchpoint());
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1942
TeamWindow::_HandleWatchpointChanged(Watchpoint* watchpoint)
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
752
Watchpoint* watchpoint;
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
755
BReference<Watchpoint> watchpointReference(watchpoint, true);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
986
TeamWindow::SetWatchpointEnabledRequested(Watchpoint* watchpoint,
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
994
TeamWindow::ClearWatchpointRequested(Watchpoint* watchpoint)
src/apps/debugger/user_interface/gui/team_window/TeamWindow.h
120
Watchpoint* breakpoint,
src/apps/debugger/user_interface/gui/team_window/TeamWindow.h
123
Watchpoint* watchpoint);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.h
202
Watchpoint* watchpoint);
src/apps/debugger/user_interface/gui/utility_windows/WatchPromptWindow.h
19
class Watchpoint;
src/kits/debugger/controllers/TeamDebugger.cpp
1247
TeamDebugger::SetWatchpointEnabledRequested(Watchpoint* watchpoint,
src/kits/debugger/controllers/TeamDebugger.cpp
1251
BReference<Watchpoint> watchpointReference(watchpoint);
src/kits/debugger/controllers/TeamDebugger.cpp
1270
TeamDebugger::ClearWatchpointRequested(Watchpoint* watchpoint)
src/kits/debugger/controllers/TeamDebugger.cpp
1273
BReference<Watchpoint> watchpointReference(watchpoint);
src/kits/debugger/controllers/TeamDebugger.cpp
2220
Watchpoint* watchpoint = new(std::nothrow) Watchpoint(address, type,
src/kits/debugger/controllers/TeamDebugger.cpp
2225
BReference<Watchpoint> watchpointRef(watchpoint, true);
src/kits/debugger/controllers/TeamDebugger.cpp
2232
TeamDebugger::_HandleSetWatchpoint(Watchpoint* watchpoint, bool enabled)
src/kits/debugger/controllers/TeamDebugger.cpp
2251
Watchpoint* watchpoint = fTeam->WatchpointAtAddress(address);
src/kits/debugger/controllers/TeamDebugger.cpp
2254
BReference<Watchpoint> watchpointReference(watchpoint);
src/kits/debugger/controllers/TeamDebugger.cpp
2263
TeamDebugger::_HandleClearWatchpoint(Watchpoint* watchpoint)
src/kits/debugger/controllers/TeamDebugger.cpp
742
Watchpoint* watchpoint = NULL;
src/kits/debugger/controllers/TeamDebugger.cpp
743
BReference<Watchpoint> watchpointReference;
src/kits/debugger/debug_managers/WatchpointManager.cpp
45
WatchpointManager::InstallWatchpoint(Watchpoint* watchpoint,
src/kits/debugger/debug_managers/WatchpointManager.cpp
88
WatchpointManager::UninstallWatchpoint(Watchpoint* watchpoint)
src/kits/debugger/debug_managers/WatchpointManager.h
26
status_t InstallWatchpoint(Watchpoint* watchpoint,
src/kits/debugger/debug_managers/WatchpointManager.h
28
void UninstallWatchpoint(Watchpoint* watchpoint);
src/kits/debugger/model/Team.cpp
1077
Watchpoint* watchpoint)
src/kits/debugger/model/Team.cpp
511
Team::AddWatchpoint(Watchpoint* watchpoint)
src/kits/debugger/model/Team.cpp
513
if (fWatchpoints.BinaryInsert(watchpoint, &Watchpoint::CompareWatchpoints))
src/kits/debugger/model/Team.cpp
522
Team::RemoveWatchpoint(Watchpoint* watchpoint)
src/kits/debugger/model/Team.cpp
525
&Watchpoint::CompareWatchpoints);
src/kits/debugger/model/Team.cpp
54
: UnaryPredicate<Watchpoint> {
src/kits/debugger/model/Team.cpp
541
Watchpoint*
src/kits/debugger/model/Team.cpp
548
Watchpoint*
src/kits/debugger/model/Team.cpp
552
&Watchpoint::CompareAddressWatchpoint);
src/kits/debugger/model/Team.cpp
558
BObjectList<Watchpoint>& watchpoints) const
src/kits/debugger/model/Team.cpp
562
for (; Watchpoint* watchpoint = fWatchpoints.ItemAt(index); index++) {
src/kits/debugger/model/Team.cpp
61
virtual int operator()(const Watchpoint* watchpoint) const
src/kits/debugger/model/Team.cpp
63
return -Watchpoint::CompareAddressWatchpoint(&fAddress, watchpoint);
src/kits/debugger/model/Team.cpp
834
Team::NotifyWatchpointChanged(Watchpoint* watchpoint)
src/kits/debugger/model/Team.cpp
99
for (int32 i = 0; Watchpoint* watchpoint = fWatchpoints.ItemAt(i); i++)
src/kits/debugger/model/Watchpoint.cpp
20
Watchpoint::~Watchpoint()
src/kits/debugger/model/Watchpoint.cpp
26
Watchpoint::SetInstalled(bool installed)
src/kits/debugger/model/Watchpoint.cpp
33
Watchpoint::SetEnabled(bool enabled)
src/kits/debugger/model/Watchpoint.cpp
40
Watchpoint::Contains(target_addr_t address) const
src/kits/debugger/model/Watchpoint.cpp
47
Watchpoint::CompareWatchpoints(const Watchpoint* a, const Watchpoint* b)
src/kits/debugger/model/Watchpoint.cpp
56
Watchpoint::CompareAddressWatchpoint(const target_addr_t* address,
src/kits/debugger/model/Watchpoint.cpp
57
const Watchpoint* watchpoint)
src/kits/debugger/model/Watchpoint.cpp
9
Watchpoint::Watchpoint(target_addr_t address, uint32 type, int32 length)