Searched refs:Watchpoint (Results 1 - 16 of 16) sorted by relevance

/haiku/src/kits/debugger/model/
H A DWatchpoint.cpp6 #include "Watchpoint.h"
9 Watchpoint::Watchpoint(target_addr_t address, uint32 type, int32 length) function in class:Watchpoint
20 Watchpoint::~Watchpoint()
26 Watchpoint::SetInstalled(bool installed)
33 Watchpoint::SetEnabled(bool enabled)
40 Watchpoint::Contains(target_addr_t address) const
47 Watchpoint::CompareWatchpoints(const Watchpoint*
[all...]
H A DTeam.cpp26 #include "Watchpoint.h"
54 : UnaryPredicate<Watchpoint> {
61 virtual int operator()(const Watchpoint* watchpoint) const
63 return -Watchpoint::CompareAddressWatchpoint(&fAddress, watchpoint);
99 for (int32 i = 0; Watchpoint* watchpoint = fWatchpoints.ItemAt(i); i++)
511 Team::AddWatchpoint(Watchpoint* watchpoint)
513 if (fWatchpoints.BinaryInsert(watchpoint, &Watchpoint::CompareWatchpoints))
522 Team::RemoveWatchpoint(Watchpoint* watchpoint)
525 &Watchpoint::CompareWatchpoints);
541 Watchpoint*
[all...]
/haiku/headers/private/debugger/model/
H A DWatchpoint.h15 class Watchpoint : public BReferenceable { class in inherits:BReferenceable
17 Watchpoint(target_addr_t address, uint32 type,
19 ~Watchpoint();
37 static int CompareWatchpoints(const Watchpoint* a,
38 const Watchpoint* b);
41 const Watchpoint* watchpoint);
53 typedef BObjectList<Watchpoint> WatchpointList;
H A DTeam.h22 #include "Watchpoint.h"
196 bool AddWatchpoint(Watchpoint* watchpoint);
198 void RemoveWatchpoint(Watchpoint* watchpoint);
201 Watchpoint* WatchpointAt(int32 index) const;
202 Watchpoint* WatchpointAtAddress(
206 BObjectList<Watchpoint>& watchpoints)
264 Watchpoint* watchpoint);
476 Watchpoint* watchpoint);
478 Watchpoint* GetWatchpoint() const { return fWatchpoint; }
481 Watchpoint* fWatchpoin
[all...]
/haiku/src/kits/debugger/debug_managers/
H A DWatchpointManager.h11 #include "Watchpoint.h"
26 status_t InstallWatchpoint(Watchpoint* watchpoint,
28 void UninstallWatchpoint(Watchpoint* watchpoint);
H A DWatchpointManager.cpp45 WatchpointManager::InstallWatchpoint(Watchpoint* watchpoint,
88 WatchpointManager::UninstallWatchpoint(Watchpoint* watchpoint)
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DBreakpointListView.h17 class Watchpoint;
29 Watchpoint* watchpoint);
35 Watchpoint* GetWatchpoint() const { return fWatchpoint; }
39 Watchpoint* fWatchpoint;
63 Watchpoint* breakpoint);
H A DBreakpointsView.h35 Watchpoint* watchpoint);
79 Watchpoint* breakpoint,
82 Watchpoint* watchpoint) = 0;
H A DBreakpointListView.cpp28 #include "Watchpoint.h"
35 Watchpoint* watchpoint)
135 Watchpoint* newWatchpoint = fTeam->WatchpointAt(watchpointIndex);
158 Watchpoint* watchpoint = oldProxy->GetWatchpoint();
291 bool _GetWatchpointValueAt(Watchpoint* watchpoint, int32 rowIndex,
398 BreakpointListView::WatchpointChanged(Watchpoint* watchpoint)
H A DTeamWindow.h120 Watchpoint* breakpoint,
123 Watchpoint* watchpoint);
202 Watchpoint* watchpoint);
H A DBreakpointsView.cpp82 BreakpointsView::WatchpointChanged(Watchpoint* watchpoint)
205 Watchpoint* watchpoint = proxy->GetWatchpoint();
290 Watchpoint* watchpoint = proxy->GetWatchpoint();
H A DTeamWindow.cpp752 Watchpoint* watchpoint;
755 BReference<Watchpoint> watchpointReference(watchpoint, true);
986 TeamWindow::SetWatchpointEnabledRequested(Watchpoint* watchpoint,
994 TeamWindow::ClearWatchpointRequested(Watchpoint* watchpoint)
1098 BReference<Watchpoint> watchpointReference(event.GetWatchpoint());
1942 TeamWindow::_HandleWatchpointChanged(Watchpoint* watchpoint)
/haiku/headers/private/debugger/user_interface/
H A DUserInterface.h36 class Watchpoint;
160 Watchpoint* watchpoint,
165 Watchpoint* watchpoint) = 0;
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DWatchPromptWindow.h19 class Watchpoint;
/haiku/headers/private/debugger/controllers/
H A DTeamDebugger.h125 Watchpoint *watchpoint, bool enabled);
128 Watchpoint* breakpoint);
217 Watchpoint* watchpoint, bool enabled);
219 void _HandleClearWatchpoint(Watchpoint* watchpoint);
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp742 Watchpoint* watchpoint = NULL;
743 BReference<Watchpoint> watchpointReference;
1247 TeamDebugger::SetWatchpointEnabledRequested(Watchpoint* watchpoint,
1251 BReference<Watchpoint> watchpointReference(watchpoint);
1270 TeamDebugger::ClearWatchpointRequested(Watchpoint* watchpoint)
1273 BReference<Watchpoint> watchpointReference(watchpoint);
2220 Watchpoint* watchpoint = new(std::nothrow) Watchpoint(address, type,
2225 BReference<Watchpoint> watchpointRef(watchpoint, true);
2232 TeamDebugger::_HandleSetWatchpoint(Watchpoint* watchpoin
[all...]

Completed in 95 milliseconds