Searched refs:GetInt (Results 1 - 25 of 99) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dchoiccmn.cpp51 SetSelection(event.GetInt());
H A Dlboxcmn.cpp118 SetSelection(event.GetInt(), event.GetExtraLong() != 0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DServer.cpp172 preferences = tag.GetInt();
176 ping = tag.GetInt();
186 failedcount = tag.GetInt();
190 lastpinged = tag.GetInt();
194 maxusers = tag.GetInt();
198 softfiles = tag.GetInt();
202 hardfiles = tag.GetInt();
212 m_strVersion = CFormat(wxT("%u.%u")) % (tag.GetInt() >> 16) % (tag.GetInt() & 0xFFFF);
219 m_uUDPFlags = tag.GetInt();
[all...]
H A DECSpecialMuleTags.cpp63 bool ret = theApp->glob_prefs->UpdateCategory(GetInt(), Name(), CPath(Path()), Comment(), Color(), Prio());
65 GetTagByName(EC_TAG_CATEGORY_PATH)->SetStringData(theApp->glob_prefs->GetCatPath(GetInt()).GetRaw());
364 applyFunc(boolTag->GetInt() != 0);
392 thePrefs::SetCheckNewVersion(oneTag->GetInt() != 0);
403 thePrefs::SetMaxGraphUploadRate(oneTag->GetInt());
406 thePrefs::SetMaxGraphDownloadRate(oneTag->GetInt());
409 thePrefs::SetMaxUpload(oneTag->GetInt());
412 thePrefs::SetMaxDownload(oneTag->GetInt());
415 thePrefs::SetSlotAllocation(oneTag->GetInt());
418 thePrefs::SetPort(oneTag->GetInt());
[all...]
H A DInternalEvents.h66 long GetInt() const { function in class:CMuleInternalEvent
H A DStatistics.cpp1037 s_statData[sdUpload] = stats->GetTagByNameSafe(EC_TAG_STATS_UL_SPEED)->GetInt();
1038 s_statData[sdUpOverhead] = stats->GetTagByNameSafe(EC_TAG_STATS_UP_OVERHEAD)->GetInt();
1039 s_statData[sdDownload] = stats->GetTagByNameSafe(EC_TAG_STATS_DL_SPEED)->GetInt();
1040 s_statData[sdDownOverhead] = stats->GetTagByNameSafe(EC_TAG_STATS_DOWN_OVERHEAD)->GetInt();
1041 s_statData[sdWaitingClients] = stats->GetTagByNameSafe(EC_TAG_STATS_UL_QUEUE_LEN)->GetInt();
1042 s_statData[sdBannedClients] = stats->GetTagByNameSafe(EC_TAG_STATS_BANNED_COUNT)->GetInt();
1043 s_statData[sdED2KUsers] = stats->GetTagByNameSafe(EC_TAG_STATS_ED2K_USERS)->GetInt();
1044 s_statData[sdKadUsers] = stats->GetTagByNameSafe(EC_TAG_STATS_KAD_USERS)->GetInt();
1045 s_statData[sdED2KFiles] = stats->GetTagByNameSafe(EC_TAG_STATS_ED2K_FILES)->GetInt();
1046 s_statData[sdKadFiles] = stats->GetTagByNameSafe(EC_TAG_STATS_KAD_FILES)->GetInt();
[all...]
H A DSearchFile.cpp71 SetFileSize(tag.GetInt());
74 SetFileSize((((uint64)tag.GetInt()) << 32) + GetFileSize());
77 m_iUserRating = (tag.GetInt() & 0xF) / 3;
80 m_sourceCount = tag.GetInt();
83 m_completeSourceCount = tag.GetInt();
H A DSafeFile.cpp522 WriteUInt64(tag.GetInt());
525 WriteUInt32(tag.GetInt());
534 WriteUInt16(tag.GetInt());
537 WriteUInt8(tag.GetInt());
H A DBaseClient.cpp489 m_nClientVersion = temptag.GetInt();
496 m_strModVersion = CFormat(wxT("ModID=%u")) % temptag.GetInt();
504 nUserPort = temptag.GetInt();
510 SetKadPort((temptag.GetInt() >> 16) & 0xFFFF);
511 m_nUDPPort = temptag.GetInt() & 0xFFFF;
520 m_nBuddyIP = temptag.GetInt();
529 m_nBuddyPort = (uint16)temptag.GetInt();
548 uint32 flags = temptag.GetInt();
590 m_fDirectUDPCallback = (temptag.GetInt() >> 12) & 0x01;
591 m_fSupportsCaptcha = (temptag.GetInt() >> 1
[all...]
H A DExternalConn.cpp450 uint16 proto_version = protocol->GetInt();
826 uint8 prio = hashtag.GetFirstTagSafe()->GetInt();
843 pfile->SetCategory(hashtag.GetFirstTagSafe()->GetInt());
943 CUpDownClient * client = theApp->clientlist->FindClientByECID(subtag->GetInt());
954 theApp->friendlist->AddFriend(hashtag->GetMD4Data(), iptag->GetInt(), porttag->GetInt(), nametag->GetStringData());
961 CFriend * Friend = theApp->friendlist->FindFriend(subtag->GetInt());
970 CFriend * Friend = theApp->friendlist->FindFriend(subtag->GetInt());
972 theApp->friendlist->SetFriendSlot(Friend, tag->GetInt() != 0);
984 CFriend * Friend = theApp->friendlist->FindFriend(subtag->GetInt());
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/ec/cpp/
H A DECSpecialTags.cpp93 EC_STATTREE_NODE_VALUE_TYPE tmp_valueType = tmp_vt != NULL ? (EC_STATTREE_NODE_VALUE_TYPE)tmp_vt->GetInt() : EC_VALUE_INTEGER;
110 EC_STATTREE_NODE_VALUE_TYPE valueType = vt != NULL ? (EC_STATTREE_NODE_VALUE_TYPE)vt->GetInt() : EC_VALUE_INTEGER;
113 format = format % tag->GetInt();
116 format = format % (CFormat(wxT("%u")) % tag->GetInt() + extra);
119 format = format % (CastItoXBytes(tag->GetInt()) + extra);
122 format = format % (CastItoIShort(tag->GetInt()) + extra);
125 format = format % (CastSecondsToHM(tag->GetInt()) + extra);
128 format = format % (CastItoSpeed(tag->GetInt()) + extra);
H A DECSpecialTags.h156 uint8 Prio() const { return GetTagByNameSafe(EC_TAG_CATEGORY_PRIO)->GetInt(); }
157 uint32 Color() const { return GetTagByNameSafe(EC_TAG_CATEGORY_COLOR)->GetInt(); }
187 uint32 ID() const { return GetInt(); }
195 uint32 GetEd2kId() const { return GetTagByNameSafe(EC_TAG_ED2K_ID)->GetInt(); }
196 uint32 GetClientId() const { return GetTagByNameSafe(EC_TAG_CLIENT_ID)->GetInt(); }
199 bool IsConnectedED2K() const { return (GetInt() & 0x01) != 0; }
200 bool IsConnectingED2K() const { return (GetInt() & 0x02) != 0; }
201 bool IsConnectedKademlia() const { return (GetInt() & 0x04) != 0; }
202 bool IsKadFirewalled() const { return (GetInt() & 0x08) != 0; }
203 bool IsKadRunning() const { return (GetInt()
[all...]
H A DECPacket.h56 return (tag) ? (EC_DETAIL_LEVEL)tag->GetInt() : EC_DETAIL_FULL;
H A DECTag.cpp184 * @see GetInt()
562 uint64_t CECTag::GetInt() const function in class:CECTag
702 ret = tag->GetInt() > 0;
714 target = tag->GetInt() > 0;
726 ret = tag->GetInt();
739 target = tag->GetInt();
755 ret = tag->GetInt();
772 target = tag->GetInt();
789 ret = tag->GetInt();
807 target = tag->GetInt();
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/fileview/
H A DPrint.cpp346 out << CKadIP(tag.GetInt());
348 out << CeD2kIP(tag.GetInt());
350 uint8_t enc = tag.GetInt();
365 out << CTimeT(tag.GetInt());
371 out << tag.GetInt() << " (" << CastItoXBytes(tag.GetInt()) << ')';
377 out << tag.GetInt() << ' ';
378 switch (tag.GetInt()) {
388 out << tag.GetInt();
418 out << CeD2kIP(tag.GetInt());
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dchecklst.cpp39 listbox->Check( new_event.GetInt(), !listbox->IsChecked(new_event.GetInt()));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dtglbtn.cpp95 SetValue((event.GetInt() != 0));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DWindowAccessor.h44 return props.GetInt(key, defaultValue);
H A DPropSet.h55 int GetInt(const char *key, int defaultValue=0);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DDocumentAccessor.h53 return props.GetInt(key, defaultValue);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dtglbtn.cpp112 SetValue((event.GetInt() != 0));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dtglbtn.cpp150 SetValue((event.GetInt() != 0));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/widgets/
H A Dspinbtn.cpp413 int value = event.GetInt();
424 event.GetInt(), m_spinbtn->GetValue() );
430 event.GetInt(), m_spinbtn->GetValue() );
437 int value = event.GetInt();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/kademlia/
H A DSearch.cpp882 type = tag->GetInt();
884 ip = tag->GetInt();
886 tcp = tag->GetInt();
888 udp = tag->GetInt();
890 buddyip = tag->GetInt();
892 buddyport = tag->GetInt();
903 byCryptOptions = (uint8)tag->GetInt();
939 entry->m_uIP = tag->GetInt();
941 entry->m_uTCPport = tag->GetInt();
1013 size = tag->GetInt();
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dslider.cpp196 SetValue (event.GetInt());
221 int commandInt = event.GetInt();
230 event2.SetInt( event.GetInt() );

Completed in 265 milliseconds

1234