| /openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman/ |
| H A D | CVE-2025-32743.patch | 4 Subject: [PATCH] dnsproxy: Fix NULL/empty lookup causing potential crash 6 In ConnMan through 1.44, the lookup string in ns_resolv in dnsproxy.c 10 lookup values lead to incorrect length calculations and incorrect 37 const char *lookup = (const char *)name; 38 - int err = ns_try_resolv_from_cache(req, request, lookup); 40 + if (!lookup || strlen(lookup) == 0) 43 + err = ns_try_resolv_from_cache(req, request, lookup);
|
| /openbmc/qemu/include/hw/virtio/ |
| H A D | virtio-dmabuf.h | 31 * virtio_add_dmabuf() - Add a new dma-buf resource to the lookup table 42 * the lookup table. 56 * the lookup table. 61 * virtio_remove_resource() - Removes a resource from the lookup table 64 * Return: true if the UUID has been found and removed from the lookup table. 69 * virtio_lookup_dmabuf() - Looks for a dma-buf resource in the lookup table 78 * lookup table 86 * virtio_object_type() - Looks for the type of resource in the lookup table 96 * resources lookup table, and frees them
|
| /openbmc/sdbusplus/tools/sdbusplus/ |
| H A D | main.py | 4 import mako.lookup 78 lookup = mako.lookup.TemplateLookup(directories=[args.templatedir]) 84 print(function(lookup))
|
| /openbmc/qemu/qapi/ |
| H A D | qapi-util.c | 61 const char *qapi_enum_lookup(const QEnumLookup *lookup, int val) in qapi_enum_lookup() argument 63 assert(val >= 0 && val < lookup->size); in qapi_enum_lookup() 65 return lookup->array[val]; in qapi_enum_lookup() 68 int qapi_enum_parse(const QEnumLookup *lookup, const char *buf, in qapi_enum_parse() argument 77 for (i = 0; i < lookup->size; i++) { in qapi_enum_parse() 78 if (!strcmp(buf, lookup->array[i])) { in qapi_enum_parse()
|
| H A D | qapi-visit-core.c | 386 const QEnumLookup *lookup, Error **errp) in output_type_enum() argument 391 enum_str = (char *)qapi_enum_lookup(lookup, value); in output_type_enum() 396 const QEnumLookup *lookup, Error **errp) in input_type_enum() argument 405 value = qapi_enum_parse(lookup, enum_str, -1, NULL); in input_type_enum() 412 if (lookup->features in input_type_enum() 413 && !compat_policy_input_ok(lookup->features[value], in input_type_enum() 425 const QEnumLookup *lookup, Error **errp) in visit_type_enum() argument 427 assert(obj && lookup); in visit_type_enum() 431 return input_type_enum(v, name, obj, lookup, errp); in visit_type_enum() 433 return output_type_enum(v, name, obj, lookup, errp); in visit_type_enum()
|
| /openbmc/phosphor-fan-presence/ |
| H A D | sdbusplus.hpp | 64 * Thrown when a service lookup fails. Usually this points to 72 std::format("DBus service lookup failed: {} {}", path, interface)), in DBusServiceError() 295 lg2::error("Empty mapper response on service lookup"); in getService() 332 /** @brief Get a property with mapper lookup. */ 354 /** @brief Get a property with mapper lookup. */ 363 /** @brief Get a property variant with mapper lookup. */ 385 /** @brief Get a property variant with mapper lookup. */ 409 /** @brief Get a property without mapper lookup. */ 431 /** @brief Get a property without mapper lookup. */ 441 /** @brief Get a property variant without mapper lookup. */ [all …]
|
| /openbmc/dbus-sensors/src/mctp/ |
| H A D | MCTPDeviceRepository.hpp | 19 auto lookup(const std::shared_ptr<MCTPDevice>& device) in lookup() function in MCTPDeviceRepository 49 auto entry = lookup(device); in remove() 62 return lookup(device) != devices.end(); in contains() 68 auto entry = lookup(device); in inventoryFor()
|
| /openbmc/pldm/configurations/ |
| H A D | entityMap.json | 5 …"Upon parsing the file, a lookup table is created. This lookup table efficiently maps entity types… 6 …nformation gleaned from these PDRs alongside the data extracted from the lookup table and the PLDM…
|
| /openbmc/pldm/oem/ibm/configurations/ |
| H A D | entityMap.json | 5 …"Upon parsing the file, a lookup table is created. This lookup table efficiently maps entity types… 6 …nformation gleaned from these PDRs alongside the data extracted from the lookup table and the PLDM…
|
| /openbmc/phosphor-logging/extensions/openpower-pels/ |
| H A D | pel_values.hpp | 35 * @brief Helper function to get values from lookup tables. 38 * @param[in] PELValues - lookup table 45 * @brief Helper function to get value vector from lookup tables. 47 * @param[in] value - the value to lookup 48 * @param[in] table - lookup table
|
| /openbmc/phosphor-ipmi-flash/bmc/firmware-handler/ |
| H A D | firmware_handler.cpp | 201 auto item = lookup.find(session); in stat() 202 if (item == lookup.end()) in stat() 352 lookup[session] = &verifyImage; in open() 368 lookup[session] = &updateImage; in open() 486 lookup[session] = curr; in open() 507 auto item = lookup.find(session); in write() 508 if (item == lookup.end()) in write() 561 auto item = lookup.find(session); in writeMeta() 562 if (item == lookup.end()) in writeMeta() 592 auto item = lookup.find(session); in commit() [all …]
|
| /openbmc/u-boot/include/linux/ |
| H A D | bch.h | 26 * @a_pow_tab: Galois field GF(2^m) exponentiation lookup table 27 * @a_log_tab: Galois field GF(2^m) log lookup table 28 * @mod8_tab: remainder generator polynomial lookup tables
|
| /openbmc/phosphor-host-ipmid/ |
| H A D | sys_info_param.hpp | 21 * @param[in] paramSelector - the key to lookup. 25 virtual std::tuple<bool, std::string> lookup( 57 std::tuple<bool, std::string> lookup(uint8_t paramSelector) const override;
|
| /openbmc/openbmc/poky/meta/recipes-connectivity/bind/bind/ |
| H A D | named.service | 3 Wants=nss-lookup.target 4 Before=nss-lookup.target
|
| /openbmc/openbmc/meta-security/recipes-ids/suricata/files/ |
| H A D | CVE-2024-37151.patch | 9 the lookup code skip the tracker during lookup. 18 4. during the lookup, the frag for X2 hashes to a hash row that holds
|
| /openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/ |
| H A D | 00_man_quoting.diff | 18 When the client host provides IDENT service, a negative IDENT lookup 23 -A positive IDENT lookup result (the client matches `KNOWN@host') is 24 +A positive IDENT lookup result (the client matches `KNOWN@host\') is 26 client connection and the IDENT lookup, although doing so is much
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | pkgdata.py | 26 result = runCmd('oe-pkgdata-util lookup-pkg "zlib busybox"') 28 result = runCmd('oe-pkgdata-util lookup-pkg zlib-dev') 30 result = runCmd('oe-pkgdata-util lookup-pkg nonexistentpkg', ignore_status=True) 34 result = runCmd('oe-pkgdata-util lookup-pkg -r "libz1 busybox"') 36 result = runCmd('oe-pkgdata-util lookup-pkg -r libz-dev') 38 result = runCmd('oe-pkgdata-util lookup-pkg -r nonexistentpkg', ignore_status=True) 61 result = runCmd('oe-pkgdata-util lookup-recipe "libz-staticdev busybox"') 63 result = runCmd('oe-pkgdata-util lookup-recipe libz-dbg') 65 result = runCmd('oe-pkgdata-util lookup-recipe nonexistentpkg', ignore_status=True) 220 result = runCmd('oe-pkgdata-util -p %s lookup-pkg zlib' % get_bb_var('PKGDATA_DIR'))
|
| /openbmc/u-boot/include/ |
| H A D | fb_mmc.h | 10 * fastboot_mmc_get_part_info() - Lookup eMMC partion by name 12 * @part_name: Named partition to lookup
|
| H A D | fb_nand.h | 13 * fastboot_nand_get_part_info() - Lookup NAND partion by name 15 * @part_name: Named device to lookup
|
| /openbmc/qemu/docs/devel/ |
| H A D | multi-thread-tcg.rst | 59 tb_ctx.htable (global hash table, phys address->tb lookup) 65 DESIGN REQUIREMENT: Make access to lookup structures safe with 136 - jump lookup cache 137 - the physical-to-tb lookup hash table 149 - remove central PageDesc lookup entries 150 - ensure lookup caches/hashes are safely updated 164 The lookup caches are updated atomically and the lookup hash uses QHT 165 which is designed for concurrent safe lookup.
|
| /openbmc/phosphor-logging/ |
| H A D | meson.build | 98 # Generate elog-lookup.cpp 100 'elog-lookup.cpp'.underscorify(), 103 'tools/phosphor-logging/templates/elog-lookup-template.cpp.mako', 105 output: 'elog-lookup.cpp',
|
| /openbmc/skeleton/pytools/ |
| H A D | gpioutil | 16 print 'gpioutil -l PIN_NAME (lookup pin name only)' 128 lookup = False 138 lookup = True 153 if (lookup == True):
|
| /openbmc/phosphor-certificate-manager/ |
| H A D | x509_utils.cpp | 69 // ADD Certificate Lookup method. in getX509Store() 70 // lookup will be cleaned up automatically when the holding Store goes away. in getX509Store() 71 auto lookup = X509_STORE_add_lookup(x509Store.get(), X509_LOOKUP_file()); in getX509Store() local 73 if (!lookup) in getX509Store() 79 if (int errCode = X509_LOOKUP_load_file(lookup, certSrcPath.c_str(), in getX509Store()
|
| /openbmc/phosphor-dbus-monitor/mslverify/ |
| H A D | util.hpp | 112 /** @brief Get a property without mapper lookup. */ 128 /** @brief Get a property without mapper lookup. */ 137 /** @brief Get a property with mapper lookup. */ 147 /** @brief Get a property with mapper lookup. */
|
| /openbmc/qemu/include/accel/tcg/ |
| H A D | probe.h | 19 * @mmu_idx: MMU index to use for lookup 51 * @mmu_idx: MMU index to use for lookup 111 * @mmu_idx: MMU index to use for lookup
|