Home
last modified time | relevance | path

Searched refs:fTeamList (Results 1 – 6 of 6) sorted by relevance

/haiku/src/apps/processcontroller/
H A DTeamBarMenu.cpp29 fTeamList = (team_id*)malloc(sizeof(team_id) * fTeamCount); in TeamBarMenu()
32 fTeamList[k] = infos[k].team_info.team; in TeamBarMenu()
35 fTeamList[k++] = -1; in TeamBarMenu()
49 free(fTeamList); in ~TeamBarMenu()
102 while (j < fTeamCount && infos.team_info.team != fTeamList[j]) in Pulse()
104 if (infos.team_info.team != fTeamList[j]) { in Pulse()
108 while (j < fTeamCount && fTeamList[j] != -1) in Pulse()
109 if (get_team_info(fTeamList[j], &info) != B_OK) in Pulse()
110 fTeamList[j] = -1; in Pulse()
115 fTeamList = (team_id*)realloc(fTeamList, sizeof(team_id) * fTeamCount); in Pulse()
[all …]
H A DMemoryBarMenu.cpp32 fTeamList = (team_id*)malloc(sizeof (team_id) * fTeamCount); in MemoryBarMenu()
36 fTeamList[k] = infos[k].team_info.team; in MemoryBarMenu()
40 fTeamList[k++] = -1; in MemoryBarMenu()
56 free(fTeamList); in ~MemoryBarMenu()
114 while (j < fTeamCount && infos.team_info.team != fTeamList[j]) { in Pulse()
122 while (j < fTeamCount && fTeamList[j] != -1) { in Pulse()
123 if (get_team_info(fTeamList[j], &info) != B_OK) in Pulse()
124 fTeamList[j] = -1; in Pulse()
131 fTeamList = (team_id*)realloc(fTeamList, sizeof(team_id) * fTeamCount); in Pulse()
134 fTeamList[j] = infos.team_info.team; in Pulse()
[all …]
H A DTeamBarMenu.h30 team_id* fTeamList; variable
H A DMemoryBarMenu.h32 team_id* fTeamList;
/haiku/src/apps/deskbar/
H A DExpandoMenuBar.h134 BList fTeamList; variable
H A DExpandoMenuBar.cpp115 fTeamList.MakeEmpty(); in AttachedToWindow()
459 TBarApp::Subscribe(self, &fTeamList); in BuildItems()
481 fTeamList.SortItems(TTeamMenu::CompareByName); in BuildItems()
483 int32 teamCount = fTeamList.CountItems(); in BuildItems()
485 BarTeamInfo* barInfo = (BarTeamInfo*)fTeamList.ItemAt(i); in BuildItems()