Home
last modified time | relevance | path

Searched refs:iterator (Results 1 – 25 of 101) sorted by relevance

12345

/openbmc/u-boot/scripts/coccinelle/iterators/
H A Duse_after_iter.cocci1 /// If list_for_each_entry, etc complete a traversal of the list, the iterator
4 /// the end of the iterator.
5 //#False positives arise when there is a goto in the iterator and the
23 iterator name list_for_each_entry;
24 iterator name list_for_each_entry_reverse;
25 iterator name list_for_each_entry_continue;
26 iterator name list_for_each_entry_continue_reverse;
27 iterator name list_for_each_entry_from;
28 iterator name list_for_each_entry_safe;
29 iterator name list_for_each_entry_safe_continue;
[all …]
H A Ditnull.cocci22 iterator I;
65 iterator I;
85 cocci.print_main("iterator-bound variable",p1)
93 msg = "ERROR: iterator variable bound on line %s cannot be NULL" % (p1[0].line)
H A Dlist_entry_update.cocci19 iterator name list_for_each_entry;
53 cocci.print_main("iterator",p1)
61 msg = "iterator with update on line %s" % (p2[0].line)
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__intrusive_slist.hpp
H A D__intrusive_queue.hpp
/openbmc/pldm/common/
H A Dbios_utils.hpp35 class iterator class in pldm::bios::utils::BIOSTableIter
54 explicit iterator(const void* data, size_t length) : in iterator() function in pldm::bios::utils::BIOSTableIter::iterator
79 iterator& operator++() in operator ++()
122 iterator begin() in begin()
124 return iterator(tableData, tableSize); in begin()
/openbmc/phosphor-host-ipmid/
H A Dsys_info_param.cpp6 const auto iterator = params.find(paramSelector); in lookup() local
7 if (iterator == params.end()) in lookup()
12 auto s = iterator->second(); in lookup()
H A Dtransporthandler.hpp179 class iterator : public ObjectTree::const_iterator class in ipmi::transport::ObjectLookupCache
184 iterator(ObjectTree::const_iterator it, ObjectLookupCache& container) : in iterator() function in ipmi::transport::ObjectLookupCache::iterator
200 PropertiesCache::iterator ret;
203 iterator begin() noexcept in begin()
205 return iterator(objs.begin(), *this); in begin()
208 iterator end() noexcept in end()
210 return iterator(objs.end(), *this); in end()
226 PropertiesCache::iterator get(const std::string& path) in get()
/openbmc/bmcweb/features/webui_login/
H A Dlogin_routes.hpp57 nlohmann::json::iterator userIt = loginCredentials.find("username"); in handleLogin()
58 nlohmann::json::iterator passIt = loginCredentials.find("password"); in handleLogin()
83 nlohmann::json::iterator userIt2 = dataIt->begin(); in handleLogin()
84 nlohmann::json::iterator passIt2 = dataIt->begin() + 1; in handleLogin()
106 nlohmann::json::object_t::iterator userIt2 = in handleLogin()
108 nlohmann::json::object_t::iterator passIt2 = in handleLogin()
/openbmc/openbmc/poky/bitbake/lib/progressbar/
H A Dcompat.py43 def any(iterator): argument
44 for item in iterator:
/openbmc/entity-manager/src/entity_manager/
H A Dexpression.hpp23 int evaluate(int substitute, std::vector<std::string>::iterator curr,
24 std::vector<std::string>::iterator& end);
H A Dexpression.cpp78 int evaluate(int substitute, std::vector<std::string>::iterator curr, in evaluate()
79 std::vector<std::string>::iterator& end) in evaluate()
/openbmc/telemetry/src/
H A Dsensor_cache.cpp3 SensorCache::SensorsContainer::iterator SensorCache::findExpiredSensor( in findExpiredSensor()
4 SensorCache::SensorsContainer::iterator begin) in findExpiredSensor()
H A Dsensor_cache.hpp43 SensorsContainer::iterator findExpiredSensor(SensorsContainer::iterator);
/openbmc/openbmc/poky/meta/recipes-support/aspell/aspell/
H A D0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch15 186 | for (iterator i = begin(); i != this->e; ++i, ++this->_size);
18 186 | for (iterator i = begin(); i != this->e; ++i, ++this->_size);
38 - for (iterator i = begin(); i != this->e; ++i, ++this->_size);
39 + for (iterator i = begin(), e = end(); i != e; ++i, ++size_);
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0014-Handle-missing-gshadow.patch144 @@ -1038,13 +1038,15 @@ int groupdb_iterator_get(UserDBIterator *iterator, GroupRecord **ret) {
153 iterator->synthesize_root = false;
155 iterator->synthesize_nobody = false;
158 if (!FLAGS_SET(iterator->flags, USERDB_SUPPRESS_SHADOW)) {
161 @@ -1057,6 +1059,9 @@ int groupdb_iterator_get(UserDBIterator *iterator, GroupRecord **ret) {
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/
H A D0014-Handle-missing-gshadow.patch143 @@ -1041,13 +1041,15 @@ int groupdb_iterator_get(UserDBIterator *iterator, GroupRecord **ret) {
152 iterator->synthesize_root = false;
154 iterator->synthesize_nobody = false;
157 if (!FLAGS_SET(iterator->flags, USERDB_SUPPRESS_SHADOW)) {
160 @@ -1060,6 +1062,9 @@ int groupdb_iterator_get(UserDBIterator *iterator, GroupRecord **ret) {
/openbmc/openpower-vpd-parser/vpd-manager/src/
H A Dipz_parser.cpp55 static uint16_t readUInt16LE(types::BinaryVector::const_iterator iterator) in readUInt16LE() argument
57 uint16_t lowByte = *iterator; in readUInt16LE()
58 uint16_t highByte = *(iterator + 1); in readUInt16LE()
136 bool IpzVpdParser::recordEccCheck(types::BinaryVector::const_iterator iterator) in recordEccCheck() argument
138 auto recordOffset = readUInt16LE(iterator); in recordEccCheck()
140 std::advance(iterator, sizeof(types::RecordOffset)); in recordEccCheck()
141 auto recordLength = readUInt16LE(iterator); in recordEccCheck()
148 std::advance(iterator, sizeof(types::RecordLength)); in recordEccCheck()
149 auto eccOffset = readUInt16LE(iterator); in recordEccCheck()
151 std::advance(iterator, sizeof(types::ECCOffset)); in recordEccCheck()
[all …]
/openbmc/phosphor-net-ipmid/
H A Dcommand_table.cpp38 auto iterator = commandTable.find(inCommand); in executeCommand() local
40 if (iterator == commandTable.end()) in executeCommand()
123 iterator->second->executeCommand(commandData, handler); in executeCommand()
/openbmc/phosphor-objmgr/src/
H A Dprocessing.cpp60 InterfaceMapType::iterator pathIt = interfaceMap.begin(); in processNameChangeDelete()
150 using iface_map_iterator = InterfaceMapType::iterator; in processInterfaceAdded()
151 using name_map_iterator = ConnectionNames::iterator; in processInterfaceAdded()
/openbmc/dbus-sensors/src/nvidia-gpu/
H A DInventory.hpp51 std::unordered_map<gpu::InventoryPropertyId, PropertyInfo>::iterator
54 std::unordered_map<gpu::InventoryPropertyId, PropertyInfo>::iterator
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/
H A Dbsp.py179 iterator = iter(signatures.items())
180 a = next(iterator)
181 b = next(iterator)
/openbmc/bmcweb/redfish-core/src/
H A Derror_message_utils.cpp71 nlohmann::json::object_t::iterator errorIt = sourceObj->find("error"); in moveErrorsToErrorJson()
86 nlohmann::json::object_t::iterator extendedInfoIt = in moveErrorsToErrorJson()
H A Dfilter_expr_printer.cpp140 std::string_view::iterator iter = expr.begin(); in parseFilter()
141 const std::string_view::iterator end = expr.end(); in parseFilter()
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtest/
H A Dlibtest-harness-perl_3.50.bb60 libtap-parser-iterator-perl \
61 libtap-parser-iterator-array-perl \
62 libtap-parser-iterator-process-perl \
63 libtap-parser-iterator-stream-perl \

12345