Home
last modified time | relevance | path

Searched refs:teamList (Results 1 – 7 of 7) sorted by relevance

/haiku/src/tests/servers/registrar/
H A DRosterShell.cpp81 BList teamList; in CmdActivate() local
87 ParseTeamList(args, &teamList); in CmdActivate()
88 int32 count = teamList.CountItems(); in CmdActivate()
95 team_id team = (team_id)(uintptr_t)teamList.ItemAt(0); in CmdActivate()
143 ParseTeamList(vector<string>& args, BList* teamList) in ParseTeamList() argument
149 teamList->AddItem((void*)(addr_t)team); in ParseTeamList()
159 BList teamList; in CmdList() local
161 ParseTeamList(args, &teamList); in CmdList()
163 roster.GetAppList(&teamList); in CmdList()
166 int32 count = teamList.CountItems(); in CmdList()
[all …]
/haiku/src/apps/switcher/
H A DApplicationsView.cpp34 BList teamList; in AttachedToWindow() local
35 be_roster->GetAppList(&teamList); in AttachedToWindow()
37 for (int32 i = 0; i < teamList.CountItems(); i++) { in AttachedToWindow()
39 team_id team = (uintptr_t)teamList.ItemAt(i); in AttachedToWindow()
/haiku/src/apps/deskbar/
H A DShowHideMenuItem.cpp112 TShowHideMenuItem::TeamShowHideCommon(int32 action, const BList* teamList, in TeamShowHideCommon() argument
115 if (teamList == NULL) in TeamShowHideCommon()
118 for (int32 i = teamList->CountItems() - 1; i >= 0; i--) { in TeamShowHideCommon()
119 team_id team = (addr_t)teamList->ItemAt(i); in TeamShowHideCommon()
H A DTeamMenu.cpp88 BList teamList; in AttachedToWindow() local
89 TBarApp::Subscribe(self, &teamList); in AttachedToWindow()
118 int32 teamCount = teamList.CountItems(); in AttachedToWindow()
122 BarTeamInfo* barInfo = (BarTeamInfo*)teamList.ItemAt(i); in AttachedToWindow()
139 teamList.SortItems(TTeamMenu::CompareByName); in AttachedToWindow()
144 BarTeamInfo* barInfo = (BarTeamInfo*)teamList.ItemAt(i); in AttachedToWindow()
H A DShowHideMenuItem.h52 const BList* teamList,
H A DBarApp.cpp117 BList teamList; in TBarApp() local
119 be_roster->GetAppList(&teamList); in TBarApp()
120 numTeams = teamList.CountItems(); in TBarApp()
123 team_id tID = (addr_t)teamList.ItemAt(i); in TBarApp()
/haiku/src/apps/activitymonitor/
H A DSystemInfoHandler.cpp60 BList teamList; in StartWatching() local
64 be_roster->GetAppList(&teamList); in StartWatching()
65 fRunningApps = teamList.CountItems(); in StartWatching()
66 teamList.MakeEmpty(); in StartWatching()