Home
last modified time | relevance | path

Searched refs:uids (Results 1 – 5 of 5) sorted by relevance

/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.cpp286 MessageEntryList& entries, uint32 from, uint32 to, bool uids) in FetchMessageEntriesCommand() argument
291 fUIDs(uids) in FetchMessageEntriesCommand()
359 FetchCommand::FetchCommand(MessageUIDList& uids, size_t max, uint32 flags) in FetchCommand() argument
364 max = std::min(max, uids.size()); in FetchCommand()
369 uint32 first = uids[index++]; in FetchCommand()
376 uint32 uid = uids[index]; in FetchCommand()
387 uids.erase(uids.begin(), uids.begin() + index); in FetchCommand()
H A DCommands.h130 uint32 to, bool uids);
165 FetchCommand(MessageUIDList& uids,
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPConnectionWorker.cpp239 MessageUIDList& uids, int32 bodyFetchLimit) in FetchHeadersCommand() argument
243 fUIDs(uids), in FetchHeadersCommand()
657 std::vector<uint32> uids; in EnqueueFetchBody() local
658 uids.push_back(uid); in EnqueueFetchBody()
660 return _EnqueueCommand(new FetchBodiesCommand(folder, *mailbox, uids, in EnqueueFetchBody()
673 std::vector<uint32> uids; in EnqueueUpdateFlags() local
674 uids.push_back(uid); in EnqueueUpdateFlags()
676 return _EnqueueCommand(new UpdateFlagsCommand(folder, *mailbox, uids, in EnqueueUpdateFlags()
H A DIMAPFolder.cpp400 IMAPFolder::RegisterPendingBodies(IMAP::MessageUIDList& uids, in RegisterPendingBodies() argument
409 IMAP::MessageUIDList::const_iterator iterator = uids.begin(); in RegisterPendingBodies()
410 for (; iterator != uids.end(); iterator++) { in RegisterPendingBodies()
H A DIMAPFolder.h86 IMAP::MessageUIDList& uids,