Symbol: TargetHost
headers/private/debugger/model/TargetHost.h
20
class TargetHost : public BReferenceable {
headers/private/debugger/model/TargetHost.h
24
TargetHost(const BString& name);
headers/private/debugger/model/TargetHost.h
25
virtual ~TargetHost();
headers/private/debugger/model/TargetHost.h
64
class TargetHost::Listener
headers/private/debugger/model/TargetHost.h
65
: public DoublyLinkedListLinkImpl<TargetHost::Listener> {
headers/private/debugger/target_host_interface/TargetHostInterface.h
21
class TargetHost;
headers/private/debugger/target_host_interface/TargetHostInterface.h
46
virtual TargetHost* GetTargetHost() = 0;
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
280
TargetHost::Listener(),
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
337
TargetHost* host = fInterface->GetTargetHost();
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
338
AutoLocker<TargetHost> hostLocker(host);
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
369
TargetHost* host = fInterface->GetTargetHost();
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
370
AutoLocker<TargetHost> hostLocker(host);
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.cpp
443
AutoLocker<TargetHost> hostLocker(fHost);
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.h
123
TargetHost* fHost;
src/apps/debugger/user_interface/gui/teams_window/TeamsListView.h
93
class TeamsListView : public BColumnListView, public TargetHost::Listener,
src/kits/debugger/model/TargetHost.cpp
105
TargetHost::TeamInfoByID(team_id team) const
src/kits/debugger/model/TargetHost.cpp
112
TargetHost::_CompareTeams(const TeamInfo* a, const TeamInfo* b)
src/kits/debugger/model/TargetHost.cpp
119
TargetHost::_FindTeamByKey(const team_id* id, const TeamInfo* info)
src/kits/debugger/model/TargetHost.cpp
13
TargetHost::TargetHost(const BString& name)
src/kits/debugger/model/TargetHost.cpp
130
TargetHost::_NotifyTeamAdded(TeamInfo* info)
src/kits/debugger/model/TargetHost.cpp
140
TargetHost::_NotifyTeamRemoved(team_id team)
src/kits/debugger/model/TargetHost.cpp
150
TargetHost::_NotifyTeamRenamed(TeamInfo* info)
src/kits/debugger/model/TargetHost.cpp
162
TargetHost::Listener::~Listener()
src/kits/debugger/model/TargetHost.cpp
168
TargetHost::Listener::TeamAdded(TeamInfo* info)
src/kits/debugger/model/TargetHost.cpp
174
TargetHost::Listener::TeamRemoved(team_id team)
src/kits/debugger/model/TargetHost.cpp
180
TargetHost::Listener::TeamRenamed(TeamInfo* info)
src/kits/debugger/model/TargetHost.cpp
24
TargetHost::~TargetHost()
src/kits/debugger/model/TargetHost.cpp
32
TargetHost::AddListener(Listener* listener)
src/kits/debugger/model/TargetHost.cpp
34
AutoLocker<TargetHost> hostLocker(this);
src/kits/debugger/model/TargetHost.cpp
40
TargetHost::RemoveListener(Listener* listener)
src/kits/debugger/model/TargetHost.cpp
42
AutoLocker<TargetHost> hostLocker(this);
src/kits/debugger/model/TargetHost.cpp
48
TargetHost::CountTeams() const
src/kits/debugger/model/TargetHost.cpp
55
TargetHost::AddTeam(const team_info& info)
src/kits/debugger/model/TargetHost.cpp
70
TargetHost::RemoveTeam(team_id team)
src/kits/debugger/model/TargetHost.cpp
84
TargetHost::UpdateTeam(const team_info& info)
src/kits/debugger/model/TargetHost.cpp
98
TargetHost::TeamInfoAt(int32 index) const
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
138
TargetHost*
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
316
AutoLocker<TargetHost> locker(fTargetHost);
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
59
fTargetHost = new(std::nothrow) TargetHost(hostname);
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.cpp
83
AutoLocker<TargetHost> hostLocker(fTargetHost);
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.h
22
virtual TargetHost* GetTargetHost();
src/kits/debugger/target_host_interface/local/LocalTargetHostInterface.h
43
TargetHost* fTargetHost;
src/kits/debugger/target_host_interface/network/NetworkTargetHostInterface.cpp
64
TargetHost*
src/kits/debugger/target_host_interface/network/NetworkTargetHostInterface.h
22
virtual TargetHost* GetTargetHost();
src/kits/debugger/target_host_interface/network/NetworkTargetHostInterface.h
37
TargetHost* fTargetHost;