Searched refs:fTeam (Results 1 - 25 of 116) sorted by relevance

12345

/haiku/src/kits/debugger/model/
H A DTeamInfo.cpp12 fTeam(-1),
20 fTeam = other.fTeam;
34 fTeam = team;
42 fTeam = team;
H A DThreadInfo.cpp11 fTeam(-1),
20 fTeam(other.fTeam),
29 fTeam(team),
39 fTeam = team;
H A DSemaphoreInfo.cpp12 fTeam(-1),
23 fTeam(other.fTeam),
35 fTeam(team),
48 fTeam = team;
H A DSystemInfo.cpp12 fTeam(-1)
21 SetTo(other.fTeam, other.fSystemInfo, other.fSystemName);
35 fTeam = team;
H A DImage.cpp16 fTeam(team),
30 if (fTeam != NULL)
31 fTeam->DebugInfo()->RemoveImageDebugInfo(fDebugInfo);
64 fTeam->DebugInfo()->RemoveImageDebugInfo(fDebugInfo);
73 error = fTeam->DebugInfo()->AddImageDebugInfo(fDebugInfo);
83 fTeam->NotifyImageDebugInfoChanged(this);
H A DAreaInfo.cpp12 fTeam(-1),
26 fTeam(other.fTeam),
42 fTeam(team),
59 fTeam = team;
H A DImageInfo.cpp11 fTeam(-1),
23 fTeam(other.fTeam),
39 fTeam(team),
56 fTeam = team;
H A DThread.cpp18 fTeam(team),
56 return fID == fTeam->ID();
85 fTeam->NotifyThreadStateChanged(this);
103 fTeam->NotifyThreadCpuStateChanged(this);
121 fTeam->NotifyThreadStackTraceChanged(this);
/haiku/src/kits/debugger/debug_managers/
H A DWatchpointManager.cpp24 fTeam(team),
53 AutoLocker<Team> teamLocker(fTeam);
78 if (fTeam->WatchpointAtAddress(watchpoint->Address()) == NULL)
79 fTeam->AddWatchpoint(watchpoint);
80 fTeam->NotifyWatchpointChanged(watchpoint);
91 AutoLocker<Team> teamLocker(fTeam);
93 fTeam->RemoveWatchpoint(watchpoint);
103 fTeam->NotifyWatchpointChanged(watchpoint);
H A DBreakpointManager.cpp26 fTeam(team),
54 AutoLocker<Team> teamLocker(fTeam);
78 Breakpoint* breakpoint = fTeam->BreakpointAtAddress(address);
82 Image* image = fTeam->ImageByAddress(address);
90 if (breakpoint == NULL || !fTeam->AddBreakpoint(breakpoint)) {
110 fTeam->NotifyUserBreakpointChanged(userBreakpoint);
137 fTeam->AddUserBreakpoint(userBreakpoint);
138 fTeam->NotifyUserBreakpointChanged(userBreakpoint);
168 fTeam->RemoveBreakpoint(breakpoint);
173 fTeam
[all...]
H A DWatchpointManager.h32 Team* fTeam; member in class:WatchpointManager
/haiku/headers/private/debugger/model/
H A DTeamInfo.h24 team_id TeamID() const { return fTeam; }
29 team_id fTeam; member in class:TeamInfo
H A DSystemInfo.h27 team_id TeamID() const { return fTeam; }
34 team_id fTeam; member in class:SystemInfo
H A DThreadInfo.h22 team_id TeamID() const { return fTeam; }
27 team_id fTeam; member in class:ThreadInfo
H A DSemaphoreInfo.h26 team_id TeamID() const { return fTeam; }
34 team_id fTeam; member in class:SemaphoreInfo
/haiku/src/build/libbe/app/
H A DMessenger.cpp42 fTeam(-1)
56 fTeam(from.fTeam)
82 fTeam = from.fTeam;
98 // Note: The fTeam fields are not compared.
125 return fTeam;
143 fTeam = team;
169 // fTeam is insignificant
/haiku/src/kits/debugger/jobs/
H A DWriteCoreFileJob.cpp21 fTeam(team),
54 AutoLocker< ::Team> teamLocker(fTeam);
55 fTeam->NotifyCoreFileChanged(path.Path());
H A DWriteMemoryJob.cpp17 fTeam(team),
47 fTeam->NotifyMemoryChanged(fTargetAddress, fSize);
H A DLoadSourceCodeJob.cpp28 fTeam(team),
59 status_t error = fTeam->DebugInfo()->LoadSourceCode(
62 AutoLocker<Team> locker(fTeam);
74 AutoLocker<Team> locker(fTeam);
81 status_t error = fTeam->DebugInfo()->DisassembleFunction(fFunctionInstance,
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DTeamSettingsWindow.cpp22 fTeam(team),
75 SignalsConfigView* signalsView = SignalsConfigView::Create(fTeam,
78 ImageStopConfigView* imageView = ImageStopConfigView::Create(fTeam,
82 fTeam, fListener);
H A DExceptionStopConfigView.cpp31 fTeam(team),
69 AutoLocker< ::Team> teamLocker(fTeam);
120 AutoLocker< ::Team> teamLocker(fTeam);
121 for (ImageList::ConstIterator it = fTeam->Images().GetIterator();
162 for (ImageList::ConstIterator it = fTeam->Images().GetIterator();
171 if (fTeam->BreakpointAtAddress(address) != NULL) {
/haiku/src/system/kernel/
H A DUserTimer.cpp496 fTeam(NULL)
503 ASSERT(fTeam == NULL);
512 SpinLocker timeLocker(fTeam != NULL ? &fTeam->time_lock : NULL);
515 bool nowValid = fTeam != NULL;
516 bigtime_t now = nowValid ? fTeam->CPUTime(false) : 0;
519 if (fTeam != NULL) {
528 fTeam->UserTimerDeactivated(this);
529 fTeam->ReleaseReference();
530 fTeam
[all...]
/haiku/src/apps/debugger/user_interface/report/
H A DReportUserInterface.cpp24 fTeam(NULL),
41 if (fTeam != NULL)
42 fTeam->RemoveListener(this);
64 fTeam = team;
67 fTeam->AddListener(this);
161 AutoLocker< ::Team> teamLocker(fTeam);
162 ::Thread* thread = fTeam->ThreadByID(fTargetThread);
188 UiUtils::ReportNameForTeam(fTeam, filename, sizeof(filename));
/haiku/src/apps/deskbar/
H A DWindowMenu.h61 const BList *fTeam; member in class:TWindowMenu
/haiku/src/apps/processcontroller/
H A DThreadBarMenu.h31 team_id fTeam; member in class:ThreadBarMenu

Completed in 141 milliseconds

12345