| /openbmc/u-boot/scripts/coccinelle/iterators/ |
| H A D | use_after_iter.cocci | 1 /// 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 D | itnull.cocci | 22 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 D | list_entry_update.cocci | 19 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 D | bios_utils.hpp | 35 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 D | sys_info_param.cpp | 6 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 D | transporthandler.hpp | 179 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 D | login_routes.hpp | 57 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 D | compat.py | 43 def any(iterator): argument 44 for item in iterator:
|
| /openbmc/entity-manager/src/entity_manager/ |
| H A D | expression.hpp | 23 int evaluate(int substitute, std::vector<std::string>::iterator curr, 24 std::vector<std::string>::iterator& end);
|
| H A D | expression.cpp | 78 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 D | sensor_cache.cpp | 3 SensorCache::SensorsContainer::iterator SensorCache::findExpiredSensor( in findExpiredSensor() 4 SensorCache::SensorsContainer::iterator begin) in findExpiredSensor()
|
| H A D | sensor_cache.hpp | 43 SensorsContainer::iterator findExpiredSensor(SensorsContainer::iterator);
|
| /openbmc/openbmc/poky/meta/recipes-support/aspell/aspell/ |
| H A D | 0001-modules-speller-default-vector_hash-t.hpp-fix-gcc-15.patch | 15 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 D | 0014-Handle-missing-gshadow.patch | 144 @@ -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 D | 0014-Handle-missing-gshadow.patch | 143 @@ -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 D | ipz_parser.cpp | 55 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 D | command_table.cpp | 38 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 D | processing.cpp | 60 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 D | Inventory.hpp | 51 std::unordered_map<gpu::InventoryPropertyId, PropertyInfo>::iterator 54 std::unordered_map<gpu::InventoryPropertyId, PropertyInfo>::iterator
|
| /openbmc/openbmc/poky/scripts/lib/checklayer/cases/ |
| H A D | bsp.py | 179 iterator = iter(signatures.items()) 180 a = next(iterator) 181 b = next(iterator)
|
| /openbmc/bmcweb/redfish-core/src/ |
| H A D | error_message_utils.cpp | 71 nlohmann::json::object_t::iterator errorIt = sourceObj->find("error"); in moveErrorsToErrorJson() 86 nlohmann::json::object_t::iterator extendedInfoIt = in moveErrorsToErrorJson()
|
| H A D | filter_expr_printer.cpp | 140 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 D | libtest-harness-perl_3.50.bb | 60 libtap-parser-iterator-perl \ 61 libtap-parser-iterator-array-perl \ 62 libtap-parser-iterator-process-perl \ 63 libtap-parser-iterator-stream-perl \
|