Home
last modified time | relevance | path

Searched refs:tmpEntry (Results 1 – 25 of 35) sorted by relevance

12

/dports/sysutils/logwatch/logwatch-7.5.1/scripts/services/
H A Dmod_security246 my %tmpEntry = ();
61 $tmpEntry{$count}{"action"} = "";
62 $tmpEntry{$count}{"hostname"} = "";
63 $tmpEntry{$count}{"message"} = "";
64 $tmpEntry{$count}{"ruleid"} = "";
160 …if ( $tmpEntry{$count}{"action"} ne "" && $tmpEntry{$count}{"hostname"} ne "" && $tmpEntry{$count…
162 …$messages{$tmpEntry{$count}{"hostname"}}{"attack"}{$tmpEntry{$count}{"sourceIp"}}{$tmpEntry{$count…
163 …$messages{$tmpEntry{$count}{"hostname"}}{$tmpEntry{$count}{"sourceIp"}}{$tmpEntry{$count}{"ruleid"…
174 $tmpEntry = ();
175 $tmpEntry{$count}{"action"} = "";
[all …]
/dports/misc/tellico/tellico-3.4.2/src/tests/
H A Dfilelistingtest.cpp57 foreach(Tellico::Data::EntryPtr tmpEntry, coll->entries()) { in testCpp()
58 if(tmpEntry->field(QStringLiteral("title")) == QStringLiteral("filelistingtest.cpp")) { in testCpp()
59 entry = tmpEntry; in testCpp()
101 foreach(Tellico::Data::EntryPtr tmpEntry, coll->entries()) { in testXMPData()
102 if(tmpEntry->field(QStringLiteral("title")) == QStringLiteral("BlueSquare.jpg")) { in testXMPData()
103 entry = tmpEntry; in testXMPData()
/dports/games/astromenace/astromenace-1.4.1/src/core/vfs/
H A Dvfs.cpp124 for (const auto &tmpEntry : WritableVFSEntriesMap) { in WriteIntoVFSfromMemory() local
125 auto sharedParent = tmpEntry.second.Parent.lock(); in WriteIntoVFSfromMemory()
127 uint16_t tmpNameSize{(uint16_t)(tmpEntry.first.size())}; in WriteIntoVFSfromMemory()
129 WritableVFS->File.write(tmpEntry.first.c_str(), tmpEntry.first.size()); in WriteIntoVFSfromMemory()
130 WritableVFS->File.write(reinterpret_cast<const char*>(&tmpEntry.second.Offset), in WriteIntoVFSfromMemory()
131 sizeof(tmpEntry.second.Offset)); in WriteIntoVFSfromMemory()
132 WritableVFS->File.write(reinterpret_cast<const char*>(&tmpEntry.second.Size), in WriteIntoVFSfromMemory()
133 sizeof(tmpEntry.second.Size)); in WriteIntoVFSfromMemory()
/dports/net/py-impacket/impacket-0.9.17/impacket/dcerpc/v5/
H A Depm.py1218 tmpEntry = {}
1220 tmpEntry['object'] = entry['object']
1221 tmpEntry['annotation'] = ''.join(entry['annotation'])
1222 tmpEntry['tower'] = EPMTower(''.join(entry['tower']['tower_octet_string']))
1223 entries.append(tmpEntry)
/dports/games/astromenace/astromenace-1.4.1/src/core/xml/
H A Dxml.h162 for (auto &tmpEntry : ParentXMLEntry.ChildrenList) { in FindEntryByName()
163 if (tmpEntry.Name == Name) in FindEntryByName()
164 return &tmpEntry; in FindEntryByName()
H A Dxml.cpp340 for (auto &tmpEntry : XMLEntry.ChildrenList) { in SaveRecursive() local
341 SaveRecursive(tmpEntry, File, Level + 1); in SaveRecursive()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices/src/System/DirectoryServices/ActiveDirectory/
H A DActiveDirectorySite.cs808 … DirectoryEntry tmpEntry = cachedEntry.Children.Add("CN=NTDS Site Settings", "nTDSSiteSettings"); in Save()
814 tmpEntry.Properties["interSiteTopologyGenerator"].Value = ntdsaName; in Save()
816 tmpEntry.Properties["options"].Value = _siteOptions; in Save()
819 tmpEntry.Properties["schedule"].Value = _replicationSchedule; in Save()
822 tmpEntry.CommitChanges(); in Save()
824 _ntdsEntry = tmpEntry; in Save()
827 tmpEntry = cachedEntry.Children.Add("CN=Servers", "serversContainer"); in Save()
828 tmpEntry.CommitChanges(); in Save()
833tmpEntry = cachedEntry.Children.Add("CN=Licensing Site Settings", "licensingSiteSettings"); in Save()
834 tmpEntry.CommitChanges(); in Save()
/dports/audio/csound/csound-6.15.0/Engine/
H A Dsymbtab.c522 OENTRY tmpEntry, *opc, *newopc; in add_udo_definition() local
581 memcpy(&tmpEntry, opc, sizeof(OENTRY)); in add_udo_definition()
582 tmpEntry.opname = cs_strdup(csound, opname); in add_udo_definition()
584 csound->AppendOpcodes(csound, &tmpEntry, 1); in add_udo_definition()
585 newopc = csound_find_internal_oentry(csound, &tmpEntry); in add_udo_definition()
/dports/lang/spidermonkey60/firefox-60.9.0/netwerk/cache2/
H A DCacheIndex.cpp2191 CacheIndexEntry tmpEntry(&rec->mHash); in ParseRecords() local
2192 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseRecords()
2194 if (tmpEntry.IsDirty() || !tmpEntry.IsInitialized() || in ParseRecords()
2195 tmpEntry.IsFileEmpty() || tmpEntry.IsFresh() || tmpEntry.IsRemoved()) { in ParseRecords()
2200 tmpEntry.IsDirty(), tmpEntry.IsInitialized(), tmpEntry.IsFileEmpty(), in ParseRecords()
2201 tmpEntry.IsFresh(), tmpEntry.IsRemoved())); in ParseRecords()
2206 CacheIndexEntryAutoManage emng(tmpEntry.Hash(), this); in ParseRecords()
2208 CacheIndexEntry *entry = mIndex.PutEntry(*tmpEntry.Hash()); in ParseRecords()
2209 *entry = tmpEntry; in ParseRecords()
2327 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseJournal()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/netwerk/cache2/
H A DCacheIndex.cpp2181 CacheIndexEntry tmpEntry(&rec->mHash); in ParseRecords() local
2182 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseRecords()
2184 if (tmpEntry.IsDirty() || !tmpEntry.IsInitialized() || in ParseRecords()
2185 tmpEntry.IsFileEmpty() || tmpEntry.IsFresh() || tmpEntry.IsRemoved()) { in ParseRecords()
2188 "removed=%d]", tmpEntry.IsDirty(), tmpEntry.IsInitialized(), in ParseRecords()
2189 tmpEntry.IsFileEmpty(), tmpEntry.IsFresh(), tmpEntry.IsRemoved())); in ParseRecords()
2194 CacheIndexEntryAutoManage emng(tmpEntry.Hash(), this); in ParseRecords()
2196 CacheIndexEntry *entry = mIndex.PutEntry(*tmpEntry.Hash()); in ParseRecords()
2197 *entry = tmpEntry; in ParseRecords()
2314 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseJournal()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/netwerk/cache2/
H A DCacheIndex.cpp2186 CacheIndexEntry tmpEntry(&rec->mHash); in ParseRecords() local
2187 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseRecords()
2189 if (tmpEntry.IsDirty() || !tmpEntry.IsInitialized() || in ParseRecords()
2190 tmpEntry.IsFileEmpty() || tmpEntry.IsFresh() || tmpEntry.IsRemoved()) { in ParseRecords()
2195 tmpEntry.IsDirty(), tmpEntry.IsInitialized(), tmpEntry.IsFileEmpty(), in ParseRecords()
2196 tmpEntry.IsFresh(), tmpEntry.IsRemoved())); in ParseRecords()
2203 CacheIndexEntry* entry = mIndex.PutEntry(*tmpEntry.Hash()); in ParseRecords()
2204 *entry = tmpEntry; in ParseRecords()
2317 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseJournal()
2319 CacheIndexEntry* entry = mTmpJournal.PutEntry(*tmpEntry.Hash()); in ParseJournal()
[all …]
/dports/www/firefox/firefox-99.0/netwerk/cache2/
H A DCacheIndex.cpp2195 CacheIndexEntry tmpEntry(&rec->mHash); in ParseRecords() local
2196 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseRecords()
2198 if (tmpEntry.IsDirty() || !tmpEntry.IsInitialized() || in ParseRecords()
2199 tmpEntry.IsFileEmpty() || tmpEntry.IsFresh() || tmpEntry.IsRemoved()) { in ParseRecords()
2204 tmpEntry.IsDirty(), tmpEntry.IsInitialized(), tmpEntry.IsFileEmpty(), in ParseRecords()
2205 tmpEntry.IsFresh(), tmpEntry.IsRemoved())); in ParseRecords()
2212 CacheIndexEntry* entry = mIndex.PutEntry(*tmpEntry.Hash()); in ParseRecords()
2213 *entry = tmpEntry; in ParseRecords()
2326 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseJournal()
2328 CacheIndexEntry* entry = mTmpJournal.PutEntry(*tmpEntry.Hash()); in ParseJournal()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/netwerk/cache2/
H A DCacheIndex.cpp2186 CacheIndexEntry tmpEntry(&rec->mHash); in ParseRecords() local
2187 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseRecords()
2189 if (tmpEntry.IsDirty() || !tmpEntry.IsInitialized() || in ParseRecords()
2190 tmpEntry.IsFileEmpty() || tmpEntry.IsFresh() || tmpEntry.IsRemoved()) { in ParseRecords()
2195 tmpEntry.IsDirty(), tmpEntry.IsInitialized(), tmpEntry.IsFileEmpty(), in ParseRecords()
2196 tmpEntry.IsFresh(), tmpEntry.IsRemoved())); in ParseRecords()
2203 CacheIndexEntry* entry = mIndex.PutEntry(*tmpEntry.Hash()); in ParseRecords()
2204 *entry = tmpEntry; in ParseRecords()
2317 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseJournal()
2319 CacheIndexEntry* entry = mTmpJournal.PutEntry(*tmpEntry.Hash()); in ParseJournal()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/cache2/
H A DCacheIndex.cpp2209 CacheIndexEntry tmpEntry(&rec->mHash); in ParseRecords() local
2210 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseRecords()
2212 if (tmpEntry.IsDirty() || !tmpEntry.IsInitialized() || in ParseRecords()
2213 tmpEntry.IsFileEmpty() || tmpEntry.IsFresh() || tmpEntry.IsRemoved()) { in ParseRecords()
2218 tmpEntry.IsDirty(), tmpEntry.IsInitialized(), tmpEntry.IsFileEmpty(), in ParseRecords()
2219 tmpEntry.IsFresh(), tmpEntry.IsRemoved())); in ParseRecords()
2224 CacheIndexEntryAutoManage emng(tmpEntry.Hash(), this); in ParseRecords()
2226 CacheIndexEntry* entry = mIndex.PutEntry(*tmpEntry.Hash()); in ParseRecords()
2227 *entry = tmpEntry; in ParseRecords()
2344 tmpEntry.ReadFromBuf(mRWBuf + pos); in ParseJournal()
[all …]
/dports/audio/fasttracker2/ft2-clone-1.49/src/
H A Dft2_diskop.c1153 int32_t tmpEntry; in testDiskOpMouseDown() local
1168 tmpEntry = (mouse.y - 4) / (FONT1_CHAR_H + 1); in testDiskOpMouseDown()
1169 if (tmpEntry >= 0 && tmpEntry < max) in testDiskOpMouseDown()
1171 FReq_EntrySelected = tmpEntry; in testDiskOpMouseDown()
1199 tmpEntry = (mouse.y - 4) / (FONT1_CHAR_H + 1); in testDiskOpMouseDown()
1200 if (mouse.x < 169 || mouse.x > 331 || mouse.y < 4 || tmpEntry < 0 || tmpEntry >= max) in testDiskOpMouseDown()
1208 if (tmpEntry != FReq_EntrySelected) in testDiskOpMouseDown()
1210 FReq_EntrySelected = tmpEntry; in testDiskOpMouseDown()
/dports/devel/radare2/radare2-5.1.1/libr/core/
H A Dwindows_heap.c1102 HEAP_ENTRY tmpEntry = entry; in GetSingleBlock() local
1103 if (DecodeHeapEntry (dbg, &h, &tmpEntry)) { in GetSingleBlock()
1104 entry = tmpEntry; in GetSingleBlock()
1123 tmpEntry = entry; in GetSingleBlock()
1126 … *(((WPARAM *)&tmpEntry) + 1) ^= PtrToInt (h.BaseAddress) ^ (entryOffset >> 0x4) ^ (DWORD)NtLFHKey; in GetSingleBlock()
1127 userBlocksOffset = entryOffset - (USHORT)((*(((WPARAM *)&tmpEntry) + 1)) >> 0xC); in GetSingleBlock()
1129 …*((WPARAM *)&tmpEntry) ^= PtrToInt (h.BaseAddress) ^ ((DWORD)(entryOffset) >> 0x4) ^ (DWORD)NtLFHK… in GetSingleBlock()
1130 userBlocksOffset = entryOffset - (USHORT)(*((WPARAM *)&tmpEntry) >> 0xC); in GetSingleBlock()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java2335 tmpEntry.sourceFile (scanner.fileEntry ()); in caseLabel()
2336 tmpEntry.type (entry); in caseLabel()
2344 label = constExp (tmpEntry); in caseLabel()
2498 tmpEntry.sourceFile (scanner.fileEntry ()); in sequenceType()
2499 tmpEntry.type (qualifiedEntry ("long")); in sequenceType()
2500 newEntry.maxSize (positiveIntConst (tmpEntry)); in sequenceType()
2541 tmpEntry.sourceFile (scanner.fileEntry ()); in stringType2()
2542 tmpEntry.type (qualifiedEntry ("long")); in stringType2()
2561 tmpEntry.sourceFile (scanner.fileEntry ()); in fixedArraySize()
2565 tmpEntry.type (qualifiedEntry ("long")); in fixedArraySize()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java2335 tmpEntry.sourceFile (scanner.fileEntry ()); in caseLabel()
2336 tmpEntry.type (entry); in caseLabel()
2344 label = constExp (tmpEntry); in caseLabel()
2498 tmpEntry.sourceFile (scanner.fileEntry ()); in sequenceType()
2499 tmpEntry.type (qualifiedEntry ("long")); in sequenceType()
2500 newEntry.maxSize (positiveIntConst (tmpEntry)); in sequenceType()
2541 tmpEntry.sourceFile (scanner.fileEntry ()); in stringType2()
2542 tmpEntry.type (qualifiedEntry ("long")); in stringType2()
2561 tmpEntry.sourceFile (scanner.fileEntry ()); in fixedArraySize()
2565 tmpEntry.type (qualifiedEntry ("long")); in fixedArraySize()
[all …]
/dports/security/keepassx-devel/keepassx-55869e8/src/format/
H A DKeePass2XmlReader.cpp768 Entry* tmpEntry = entry; in parseEntry() local
770 entry = getEntry(tmpEntry->uuid()); in parseEntry()
771 entry->copyDataFrom(tmpEntry); in parseEntry()
774 delete tmpEntry; in parseEntry()
/dports/devel/spatialindex/spatialindex-src-1.8.5/src/tprtree/
H A DTPRTree.cc547 ValidateEntry tmpEntry(*(e.m_pNode->m_ptrMBR[cChild]), ptrN); in isIndexValid() local
549 std::map<uint32_t, uint32_t>::iterator itNodes = nodesInLevel.find(tmpEntry.m_pNode->m_level); in isIndexValid()
553 nodesInLevel.insert(std::pair<uint32_t, uint32_t>(tmpEntry.m_pNode->m_level, 1l)); in isIndexValid()
557 nodesInLevel[tmpEntry.m_pNode->m_level] = nodesInLevel[tmpEntry.m_pNode->m_level] + 1; in isIndexValid()
560 st.push(tmpEntry); in isIndexValid()
/dports/archivers/lib1541img/lib1541img-1.1/src/lib/1541img/
H A Dcbmdosfs.c421 DirEntry tmpEntry; in vfsChanged() local
508 memcpy(&tmpEntry, self->dir.entries + ea->filepos, in vfsChanged()
509 sizeof tmpEntry); in vfsChanged()
524 memcpy(self->dir.entries + ea->targetpos, &tmpEntry, in vfsChanged()
/dports/security/keepassxc/keepassxc-2.6.6/src/format/
H A DKdbxXmlReader.cpp770 Entry* tmpEntry = entry; in parseEntry() local
772 entry = getEntry(tmpEntry->uuid()); in parseEntry()
773 entry->copyDataFrom(tmpEntry); in parseEntry()
776 delete tmpEntry; in parseEntry()
/dports/devel/spatialindex/spatialindex-src-1.8.5/src/rtree/
H A DRTree.cc763 ValidateEntry tmpEntry(*(e.m_pNode->m_ptrMBR[cChild]), ptrN); in isIndexValid() local
765 std::map<uint32_t, uint32_t>::iterator itNodes = nodesInLevel.find(tmpEntry.m_pNode->m_level); in isIndexValid()
769 nodesInLevel.insert(std::pair<uint32_t, uint32_t>(tmpEntry.m_pNode->m_level, 1l)); in isIndexValid()
773 nodesInLevel[tmpEntry.m_pNode->m_level] = nodesInLevel[tmpEntry.m_pNode->m_level] + 1; in isIndexValid()
776 st.push(tmpEntry); in isIndexValid()
/dports/java/apache-commons-beanutils/commons-beanutils-1.9.4-src/src/main/java/org/apache/commons/beanutils/
H A DBeanMap.java611 Map.Entry<Object, Object> tmpEntry = new Entry( BeanMap.this, key, value );
612 return tmpEntry;
/dports/games/astromenace/astromenace-1.4.1/src/script/
H A Dscript.cpp501 sXMLEntry &tmpEntry = *iter; in Update() local
502 if (tmpEntry.Name == "Label") { in Update()
504 if (xmlDoc->GetEntryAttribute(tmpEntry, "name", tmpName) && in Update()

12