Home
last modified time | relevance | path

Searched refs:fWorkers (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPProtocol.cpp23 fWorkers(5, false) in IMAPProtocol()
43 for (int32 i = 0; i < fWorkers.CountItems(); i++) { in ~IMAPProtocol()
44 threads.push_back(fWorkers.ItemAt(i)->Thread()); in ~IMAPProtocol()
45 fWorkers.ItemAt(i)->Quit(); in ~IMAPProtocol()
86 if (newFolders.IsEmpty() && fWorkers.CountItems() == workersWanted) { in CheckSubscribedFolders()
92 for (int32 i = 0; i < fWorkers.CountItems(); i++) { in CheckSubscribedFolders()
93 fWorkers.ItemAt(i)->RemoveAllMailboxes(); in CheckSubscribedFolders()
98 while (fWorkers.CountItems() < workersWanted) { in CheckSubscribedFolders()
101 if (!fWorkers.AddItem(worker)) { in CheckSubscribedFolders()
108 fWorkers.RemoveItem(worker); in CheckSubscribedFolders()
[all …]
H A DIMAPProtocol.h72 BObjectList<IMAPConnectionWorker> fWorkers; variable