/haiku/src/kits/debugger/model/ |
H A D | Watchpoint.cpp | 9 Watchpoint::Watchpoint(target_addr_t address, uint32 type, int32 length) in Watchpoint() function in Watchpoint 20 Watchpoint::~Watchpoint() in ~Watchpoint() 26 Watchpoint::SetInstalled(bool installed) in SetInstalled() 33 Watchpoint::SetEnabled(bool enabled) in SetEnabled() 40 Watchpoint::Contains(target_addr_t address) const in Contains() 47 Watchpoint::CompareWatchpoints(const Watchpoint* a, const Watchpoint* b) in CompareWatchpoints() 56 Watchpoint::CompareAddressWatchpoint(const target_addr_t* address, in CompareAddressWatchpoint() 57 const Watchpoint* watchpoint) in CompareAddressWatchpoint()
|
H A D | Team.cpp | 54 : UnaryPredicate<Watchpoint> { 61 virtual int operator()(const Watchpoint* watchpoint) const in operator ()() 63 return -Watchpoint::CompareAddressWatchpoint(&fAddress, watchpoint); in operator ()() 99 for (int32 i = 0; Watchpoint* watchpoint = fWatchpoints.ItemAt(i); i++) in ~Team() 511 Team::AddWatchpoint(Watchpoint* watchpoint) in AddWatchpoint() 513 if (fWatchpoints.BinaryInsert(watchpoint, &Watchpoint::CompareWatchpoints)) in AddWatchpoint() 522 Team::RemoveWatchpoint(Watchpoint* watchpoint) in RemoveWatchpoint() 525 &Watchpoint::CompareWatchpoints); in RemoveWatchpoint() 541 Watchpoint* 548 Watchpoint* [all …]
|
/haiku/headers/private/debugger/model/ |
H A D | Watchpoint.h | 15 class Watchpoint : public 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 D | Team.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; } in GetWatchpoint() 481 Watchpoint* fWatchpoint;
|
/haiku/src/apps/debugger/user_interface/gui/team_window/ |
H A D | BreakpointListView.h | 17 class Watchpoint; variable 29 Watchpoint* watchpoint); 35 Watchpoint* GetWatchpoint() const { return fWatchpoint; } in GetWatchpoint() 39 Watchpoint* fWatchpoint; 63 Watchpoint* breakpoint);
|
H A D | BreakpointsView.h | 35 Watchpoint* watchpoint); 79 Watchpoint* breakpoint, 82 Watchpoint* watchpoint) = 0;
|
H A D | BreakpointListView.cpp | 35 Watchpoint* watchpoint) in BreakpointProxy() 135 Watchpoint* newWatchpoint = fTeam->WatchpointAt(watchpointIndex); in UpdateBreakpoint() 158 Watchpoint* watchpoint = oldProxy->GetWatchpoint(); in UpdateBreakpoint() 291 bool _GetWatchpointValueAt(Watchpoint* watchpoint, int32 rowIndex, in _GetWatchpointValueAt() 398 BreakpointListView::WatchpointChanged(Watchpoint* watchpoint) in WatchpointChanged()
|
H A D | BreakpointsView.cpp | 82 BreakpointsView::WatchpointChanged(Watchpoint* watchpoint) in WatchpointChanged() 205 Watchpoint* watchpoint = proxy->GetWatchpoint(); in _UpdateButtons() 290 Watchpoint* watchpoint = proxy->GetWatchpoint(); in _HandleBreakpointAction()
|
H A D | TeamWindow.h | 120 Watchpoint* breakpoint, 123 Watchpoint* watchpoint); 202 Watchpoint* watchpoint);
|
H A D | TeamWindow.cpp | 752 Watchpoint* watchpoint; in MessageReceived() 755 BReference<Watchpoint> watchpointReference(watchpoint, true); in MessageReceived() 986 TeamWindow::SetWatchpointEnabledRequested(Watchpoint* watchpoint, in SetWatchpointEnabledRequested() 994 TeamWindow::ClearWatchpointRequested(Watchpoint* watchpoint) in ClearWatchpointRequested() 1098 BReference<Watchpoint> watchpointReference(event.GetWatchpoint()); in WatchpointChanged() 1942 TeamWindow::_HandleWatchpointChanged(Watchpoint* watchpoint) in _HandleWatchpointChanged()
|
/haiku/src/kits/debugger/debug_managers/ |
H A D | WatchpointManager.h | 26 status_t InstallWatchpoint(Watchpoint* watchpoint, 28 void UninstallWatchpoint(Watchpoint* watchpoint);
|
H A D | WatchpointManager.cpp | 45 WatchpointManager::InstallWatchpoint(Watchpoint* watchpoint, in InstallWatchpoint() 88 WatchpointManager::UninstallWatchpoint(Watchpoint* watchpoint) in UninstallWatchpoint()
|
/haiku/headers/private/debugger/user_interface/ |
H A D | UserInterface.h | 36 class Watchpoint; variable 160 Watchpoint* watchpoint, 165 Watchpoint* watchpoint) = 0;
|
/haiku/headers/private/debugger/controllers/ |
H A D | TeamDebugger.h | 125 Watchpoint *watchpoint, bool enabled); 128 Watchpoint* breakpoint); 217 Watchpoint* watchpoint, bool enabled); 219 void _HandleClearWatchpoint(Watchpoint* watchpoint);
|
/haiku/src/apps/debugger/user_interface/gui/utility_windows/ |
H A D | WatchPromptWindow.h | 19 class Watchpoint; variable
|
/haiku/src/kits/debugger/controllers/ |
H A D | TeamDebugger.cpp | 742 Watchpoint* watchpoint = NULL; in MessageReceived() 743 BReference<Watchpoint> watchpointReference; in MessageReceived() 1247 TeamDebugger::SetWatchpointEnabledRequested(Watchpoint* watchpoint, in SetWatchpointEnabledRequested() 1251 BReference<Watchpoint> watchpointReference(watchpoint); in SetWatchpointEnabledRequested() 1270 TeamDebugger::ClearWatchpointRequested(Watchpoint* watchpoint) in ClearWatchpointRequested() 1273 BReference<Watchpoint> watchpointReference(watchpoint); in ClearWatchpointRequested() 2220 Watchpoint* watchpoint = new(std::nothrow) Watchpoint(address, type, in _HandleSetWatchpoint() 2225 BReference<Watchpoint> watchpointRef(watchpoint, true); in _HandleSetWatchpoint() 2232 TeamDebugger::_HandleSetWatchpoint(Watchpoint* watchpoint, bool enabled) in _HandleSetWatchpoint() 2251 Watchpoint* watchpoint = fTeam->WatchpointAtAddress(address); in _HandleClearWatchpoint() [all …]
|
/haiku/src/kits/debugger/ |
H A D | Jamfile | 225 Watchpoint.cpp
|