Home
last modified time | relevance | path

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

/haiku/src/servers/registrar/
H A DRecentApps.cpp94 for (i = fAppList.begin(); i != fAppList.end(); i++) { in Add()
96 fAppList.erase(i); in Add()
103 fAppList.push_front(appSig); in Add()
108 int32 remove = fAppList.size() - kMaxRecentApps; in Add()
110 fAppList.pop_back(); in Add()
171 for (item = fAppList.begin(); in Get()
172 status == B_OK && counter < maxCount && item != fAppList.end(); in Get()
192 fAppList.clear(); in Clear()
204 for (item = fAppList.begin(); item != fAppList.end(); item++) { in Print()
222 for (item = fAppList.begin(); item != fAppList.end(); item++) { in Save()
H A DRecentApps.h66 std::list<std::string> fAppList; variable
H A DTRoster.cpp2019 fRecentApps.fAppList.push_back(app); in _LoadRosterSettings()
/haiku/src/tests/apps/fake_app_server/
H A DAppServer.cpp87 fAppList = new BList(); in AppServer()
127 ServerApp *app = (ServerApp *)sAppServer->fAppList->ItemAt(i++); in PicassoThread()
276 fAppList->AddItem(app); in DispatchMessage()
297 int32 i = 0, appnum = fAppList->CountItems(); in DispatchMessage()
308 srvapp = (ServerApp *)fAppList->ItemAt(i); in DispatchMessage()
311 srvapp = (ServerApp *)fAppList->RemoveItem(i); in DispatchMessage()
344 for (int32 i = 0; i < fAppList->CountItems(); i++) { in Broadcast()
345 ServerApp *app = (ServerApp *)fAppList->ItemAt(i); in Broadcast()
373 for(int32 i=0; i<fAppList->CountItems();i++) in FindApp()
375 foundapp=(ServerApp*)fAppList->ItemAt(i); in FindApp()
H A DAppServer.h66 BList *fAppList; variable
/haiku/src/apps/packageinstaller/
H A DUninstallView.cpp104 fAppList->SetTarget(this); in AttachedToWindow()
180 int32 i, count = fAppList->CountItems(); in MessageReceived()
183 iter = static_cast<InfoItem *>(fAppList->ItemAt(i)); in MessageReceived()
185 if (i == fAppList->CurrentSelection()) in MessageReceived()
187 fAppList->RemoveItem(i); in MessageReceived()
216 int32 index = fAppList->CurrentSelection(); in MessageReceived()
222 InfoItem* item = dynamic_cast<InfoItem*>(fAppList->ItemAt(index)); in MessageReceived()
247 int32 index = fAppList->CurrentSelection(); in MessageReceived()
253 BListItem* item = fAppList->RemoveItem(index); in MessageReceived()
293 fAppList = new BListView("pkg_list", B_SINGLE_SELECTION_LIST); in _InitView()
[all …]
H A DUninstallView.h45 BListView* fAppList; variable