Searched refs:toupdate (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DChatWnd.cpp180 void CChatWnd::UpdateFriend(CFriend* toupdate) argument
182 if (toupdate->GetLinkedClient().IsLinked()) {
183 chatselector->RefreshFriend(GUI_ID(toupdate->GetIP(), toupdate->GetPort()), toupdate->GetName());
186 chatselector->EndSession(GUI_ID(toupdate->GetIP(), toupdate->GetPort()));
188 friendlistctrl->UpdateFriend(toupdate);
H A DFriendListCtrl.h41 void UpdateFriend(CFriend* toupdate);
H A DFriendListCtrl.cpp83 void CFriendListCtrl::UpdateFriend(CFriend* toupdate) argument
85 if (!toupdate) {
89 sint32 itemnr = FindItem(-1, reinterpret_cast<wxUIntPtr>(toupdate));
92 SetItemPtrData(itemnr, reinterpret_cast<wxUIntPtr>(toupdate));
95 SetItem(itemnr, 0, toupdate->GetName());
96 SetItemTextColour(itemnr, toupdate->GetLinkedClient().IsLinked() ? *wxBLUE : *wxBLACK);
H A DSearchDlg.h82 void UpdateResult(CSearchFile* toupdate);
H A DSharedFilesCtrl.h78 * @param toupdate The file to be updated.
80 void UpdateItem(CKnownFile* toupdate);
H A DChatWnd.h46 void UpdateFriend(CFriend* toupdate);
H A DSearchListCtrl.cpp270 void CSearchListCtrl::UpdateResult(CSearchFile* toupdate) argument
272 long index = FindItem(-1, reinterpret_cast<wxUIntPtr>(toupdate));
275 SetItem(index, ID_SEARCH_COL_NAME, toupdate->GetFileName().GetPrintable());
277 wxString temp = CFormat(wxT("%d")) % toupdate->GetSourceCount();
278 if (toupdate->GetCompleteSourceCount()) {
279 temp += CFormat(wxT(" (%d)")) % toupdate->GetCompleteSourceCount();
281 if (toupdate->GetClientsCount()) {
282 temp += CFormat(wxT(" [%d]")) % toupdate->GetClientsCount();
285 if (toupdate->GetKadPublishInfo() == 0) {
289 % ((toupdate
[all...]
H A DSearchListCtrl.h96 void UpdateResult(CSearchFile* toupdate);
H A DSharedFileList.h65 void UpdateItem(CKnownFile* toupdate);
H A DDownloadListCtrl.h107 * @param toupdate The source or file to be updated.
113 void UpdateItem(const void* toupdate);
H A DGenericClientListCtrl.h144 * @param toupdate ID of the client to be updated.
148 void UpdateItem(uint32 toupdate, SourceItemType type);
H A DSearchDlg.cpp186 void CSearchDlg::UpdateResult(CSearchFile* toupdate) argument
188 CSearchListCtrl* outputwnd = GetSearchList( toupdate->GetSearchID() );
191 outputwnd->UpdateResult( toupdate );
H A DGuiEvents.cpp231 void ChatUpdateFriend(CFriend * NOT_ON_DAEMON(toupdate))
235 theApp->amuledlg->m_chatwnd->UpdateFriend(toupdate);
H A DSharedFileList.cpp612 void CSharedFileList::UpdateItem(CKnownFile* toupdate) argument
614 Notify_SharedFilesUpdateItem(toupdate);
H A DSharedFilesCtrl.cpp443 void CSharedFilesCtrl::UpdateItem(CKnownFile* toupdate) argument
445 long result = FindItem( -1, reinterpret_cast<wxUIntPtr>(toupdate) );
H A DDownloadListCtrl.cpp235 void CDownloadListCtrl::UpdateItem(const void* toupdate) argument
238 ListIteratorPair rangeIt = m_ListItems.equal_range( toupdate );
H A DGenericClientListCtrl.cpp312 void CGenericClientListCtrl::UpdateItem(uint32 toupdate, SourceItemType type) argument
315 ListIteratorPair rangeIt = m_ListItems.equal_range( toupdate );

Completed in 76 milliseconds