Searched refs:it2 (Results 1 - 18 of 18) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/net/
H A DPacketTracking.cpp177 TrackedPacketInMap::iterator it2 = m_mapTrackPacketsIn.find(ip); local
179 if (it2 == m_mapTrackPacketsIn.end()) {
184 trackEntry = it2->second;
249 TrackedPacketInMap::iterator it2 = it++; local
250 if (it2->second->m_lastExpire < currentTick) {
251 delete it2->second;
252 m_mapTrackPacketsIn.erase(it2);
278 TrackChallengeList::iterator it2 = it++; local
279 if (it2->ip == ip && it2
[all...]
H A DKademliaUDPListener.cpp1625 FetchNodeIDList::iterator it2 = it++; local
1626 if (it2->requester == expireImmediately) {
1627 m_fetchNodeIDRequests.erase(it2);
1629 else if (it2->expire < now) {
1630 it2->requester->KadSearchNodeIDByIPResult(KCSR_TIMEOUT, NULL);
1631 m_fetchNodeIDRequests.erase(it2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DGapList.cpp77 iterator it2 = it++; local
78 uint64 curGapStart = it2->second;
79 uint64 curGapEnd = it2->first;
83 m_gaplist.erase(it2);
88 m_gaplist.erase(it2);
93 m_gaplist.erase(it2);
100 it = it2;
143 iterator it2 = it++; local
144 uint64 curGapStart = it2->second;
145 uint64 curGapEnd = it2
[all...]
H A DCorruptionBlackBox.cpp202 CCBBClientMap::iterator it2 = m_goodClients.find(ip); local
203 if (it2 != m_goodClients.end()) {
204 good = it2->second.m_downloaded;
252 for (CRecordList::iterator it2 = list.begin(); it2 != list.end(); ++it2) {
254 % block % Uint32toStringIP(it2->m_dwIP) % it2->m_nStartPos % it2->m_nEndPos);
H A DUploadQueue.cpp82 CClientRefList::iterator it2 = it++; local
83 CUpDownClient* cur_client = it2->GetClient();
89 RemoveFromWaitingQueue(it2);
108 CClientRefList::iterator it1 = it2;
113 std::swap(*it2, *it1);
114 it2--;
129 CClientRefList::iterator it2 = it++; local
130 CUpDownClient* cur_client = it2->GetClient();
145 RemoveFromWaitingQueue(it2);
H A DClientList.cpp468 CDeletedClient::PaHList::iterator it2 = pResult->m_ItemsList.begin(); local
469 for ( ; it2 != pResult->m_ItemsList.end(); ++it2 ) {
470 if ( it2->nPort == nPort ) {
471 if ( it2->pHash != pNewHash) {
492 CDeletedClient::PaHList::iterator it2 = pResult->m_ItemsList.begin(); local
493 for ( ; it2 != pResult->m_ItemsList.end(); ++it2 ) {
494 if ( it2->nPort == toadd->GetUserPort() ) {
496 it2
1087 DirectCallbackList::iterator it2 = it++; local
[all...]
H A DDownloadListCtrl.cpp1348 CPartFile::CReqBlockPtrList::const_iterator it2 = requestedblocks_list.begin(); local
1359 for (; it2 != requestedblocks_list.end(); ++it2) {
1361 if ((*it2)->StartOffset > lastEndOffset + 1) {
1364 lastStartOffset = (*it2)->StartOffset;
1365 lastEndOffset = (*it2)->EndOffset;
1368 lastEndOffset = (*it2)->EndOffset;
H A Damule-remote-gui.h363 iterator it2 = it++; local
364 if ( core_files.count(GetItemID(*it2)) == 0 ) {
365 RemoveItem(it2);
H A DExternalConn.cpp190 iterator it2 = find(*it); local
191 delete it2->second;
192 erase(it2);
1217 SourcenameItemMap::iterator it2 = it1++; local
1218 strIntMap::iterator itm = nameMap.find(it2->second.name);
1221 CECTag tag(EC_TAG_PARTFILE_SOURCE_NAMES, it2->first);
1225 m_sourcenameItemMap.erase(it2);
1228 if (it2->second.count != itm->second) {
1229 CECTag tag(EC_TAG_PARTFILE_SOURCE_NAMES, it2->first);
1232 it2
[all...]
H A DPartFile.cpp1003 CClientRefList::iterator it2 = source_seeds.begin(); local
1004 for (; it2 != source_seeds.end(); ++it2) {
1005 CUpDownClient* cur_src = it2->GetClient();
2071 std::list<Requested_Block_Struct*>::iterator it2 = it++; local
2073 if ((*it2)->StartOffset <= start && (*it2)->EndOffset >= end) {
2074 m_requestedblocks_list.erase(it2);
2937 std::list<Requested_Block_Struct*>::iterator it2 = m_requestedblocks_list.begin(); local
2938 for (; it2 !
[all...]
H A Damule-remote-gui.cpp1107 std::map<uint32, CKnownFile*>::iterator it2 = m_items_hash.find(id); local
1108 if (it2 != m_items_hash.end() ) {
1111 ProcessItemUpdate(tag, it2->second);
1143 iterator it2 = it++; local
1144 if (!core_files.count(GetItemID(*it2))) {
1145 RemoveItem(it2); // This calls DeleteItem, where it is removed from lists and views.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/kademlia/
H A DKademlia.cpp412 for (std::list<uint32_t>::iterator it2 = medianList.begin(); it2 != medianList.end(); ++it2) {
413 if (*it2 > probe) {
414 medianList.insert(it2, probe);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/strings/
H A Dstdstrings.cpp184 wxString::iterator it2 = s4.erase(s4.begin() + 4, s4.begin() + 6); local
193 CPPUNIT_ASSERT( *it2 == _T('g') );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Decp.cpp345 int operator-(ZIterator it2) {return int(it-it2.it);} argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dhashset.tex129 means that you can't use {\tt --it}, {\tt it + 3}, {\tt it1 - it2}.
H A Dhashmap.tex149 means that you can't use {\tt --it}, {\tt it + 3}, {\tt it1 - it2}.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/
H A Dbuffer.c1420 struct evbuffer_ptr it, it2; local
1440 memcpy(&it2, &it, sizeof(it));
1441 extra_drain = evbuffer_strspn(&it2, "\r\n");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/lib/
H A Djcommon-1.0.16.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/keypoint/ org/ org/jfree/ org/jfree/base/ org/ ...

Completed in 267 milliseconds