Home
last modified time | relevance | path

Searched full:matching (Results 1 – 25 of 640) sorted by relevance

12345678910>>...26

/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dselenium_helpers_base.py200 """ Find all elements matching CSS selector """
205 Return True if one element matching selector exists,
215 """ Wait until element matching CSS selector is on the page """
217 msg = 'An element matching "%s" should be on the page' % selector
222 """ Wait until element matching CSS selector is visible on the page """
224 msg = 'An element matching "%s" should be visible' % selector
229 """ Wait until element matching CSS selector is not visible on the page """
231 msg = 'An element matching "%s" should be visible' % selector
236 """ Wait until element matching CSS selector is visible on the page """
239 msg = 'An element matching "%s" should be clickable' % selector
[all …]
/openbmc/phosphor-hwmon/
H A Dsysfs.hpp22 /** @brief Return the path to the phandle file matching value in io-channels.
29 * When a match is found, the path to the matching phandle file is returned.
34 * @return Path to phandle file with value matching that in io-channels
41 * Look for a matching hwmon instance given an
53 * Look for a matching hwmon instance given a device path that
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-diffsigs67 …logger.error('No sigdata files found matching %s %s matching either %s or %s' % (pn, taskname, sig…
70 … logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig1))
73 … logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig2))
81 logger.error('No sigdata files found matching %s %s' % (pn, taskname))
97 … recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2))
99 recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash1))
101 recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash2))
177 … logger.error('Only one matching sigdata file found for the specified task (%s %s)' % (
H A Dbitbake-dumpsig67 …logger.error('No sigdata files found matching %s %s matching either %s or %s' % (pn, taskname, sig…
70 … logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig1))
73 … logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig2))
81 logger.error('No sigdata files found matching %s %s' % (pn, taskname))
97 … recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2))
99 recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash1))
101 recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash2))
177 … logger.error('Only one matching sigdata file found for the specified task (%s %s)' % (
/openbmc/ipmitool/src/plugins/lanplus/
H A Dlanplus_strings.c12 { IPMI_RAKP_STATUS_NO_MATCHING_AUTHENTICATION_PAYLOAD, "no matching authentication algorithm"},
13 { IPMI_RAKP_STATUS_NO_MATCHING_INTEGRITY_PAYLOAD, "no matching integrity payload" },
23 { IPMI_RAKP_STATUS_NO_CIPHER_SUITE_MATCH, "no matching cipher suite" },
/openbmc/u-boot/include/
H A Dboot_fit.h8 * locate_dtb_in_fit - Find a DTB matching the board in a FIT image
11 * @return a pointer to a matching DTB blob if found, NULL otherwise
H A Dsearch.h73 * Search for entry matching __item.key in internal hash table. If
82 * Search for an entry matching "__match". Otherwise, Same semantics
88 /* Search and delete entry matching "__key" in internal hash table. */
/openbmc/entity-manager/src/
H A Dutils.cpp89 // Regex for matching the path in getI2cDevicePaths()
91 // Regex for matching the bus numbers in getI2cDevicePaths()
111 /// \brief JSON/DBus matching Callable for std::variant (visitor)
127 /// \brief JSON/DBus matching Callable for std::variant (visitor)
129 /// std::string specialization of MatchProbe enabling regex matching
160 /// \brief Forwarding JSON/DBus matching Callable for std::variant (visitor)
/openbmc/qemu/docs/tools/
H A Dqemu-trace-stap.rst44 matching multiple probes without listing each one explicitly. Multiple
66 executing *BINARY* triggers a probe matching *PATTERN*.
73 facilitate matching multiple probes without listing each one explicitly.
74 Multiple *PATTERN* arguments may be given, causing all matching probes
/openbmc/openpower-hw-diags/util/
H A Ddata_file.hpp9 * @brief Returns a list of files in the given directory, matching the given
12 * @param i_matchString Matching search pattern.
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/perl/
H A Dlibfile-fnmatch-perl_0.02.bb1 SUMMARY = "Perl module that provides simple filename and pathname matching"
3 matching. \
/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/
H A D05_wildcard_matching.patch14 +method of matching cannot be used in conjunction with `net/mask\' matching,
15 +hostname matching beginning with `.\' or IP address matching ending with `.\'.
H A D11_tcpd_blacklist.patch56 method of matching cannot be used in conjunction with `net/mask\' matching,
57 hostname matching beginning with `.\' or IP address matching ending with `.\'.
/openbmc/phosphor-net-ipmid/
H A Dcomm_module.hpp21 NO_MATCH_AUTH_PAYLOAD, //!< No matching authentication payload
22 NO_MATCH_INTEGRITY_PAYLOAD, //!< No matching integrity payload
/openbmc/qemu/target/sh4/
H A Dhelper.c333 tlb_t *matching = NULL; in get_mmu_address() local
340 matching = &env->itlb[n]; in get_mmu_address()
341 if (!(env->sr & (1u << SR_MD)) && !(matching->pr & 2)) { in get_mmu_address()
350 matching = &env->itlb[n]; in get_mmu_address()
351 if (!(env->sr & (1u << SR_MD)) && !(matching->pr & 2)) { in get_mmu_address()
355 if ((matching->pr & 1) && matching->d) { in get_mmu_address()
368 matching = &env->utlb[n]; in get_mmu_address()
369 if (!(env->sr & (1u << SR_MD)) && !(matching->pr & 2)) { in get_mmu_address()
372 } else if ((access_type == MMU_DATA_STORE) && !(matching->pr & 1)) { in get_mmu_address()
374 } else if ((access_type == MMU_DATA_STORE) && !matching->d) { in get_mmu_address()
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dincompatible_lic.py28 # INCOMPATIBLE_LICENSE contains a wildcarded alias license matching this
40 # license matching this SPDX license
46 # alias license matching the SPDX license
58 # INCOMPATIBLE_LICENSE contains a wildcard matching all licenses
79 # INCOMPATIBLE_LICENSE contains a wildcarded license matching this SPDX
/openbmc/openbmc/meta-ibm/recipes-support/chrony/chrony/huygens/
H A Dchrony.conf1 # Load config files matching the /etc/chrony/conf.d/*.conf pattern.
16 # Load source files matching the /etc/chrony/sources.d/*.sources pattern.
/openbmc/u-boot/test/dm/
H A Dofnode.c27 /* Find first matching node, there should be at least one */ in dm_test_ofnode_by_prop_value()
33 /* Find the rest of the matching nodes */ in dm_test_ofnode_by_prop_value()
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/
H A D0001-Fix-type-mismatch-on-32bit-arches.patch9 and there is no matching std::max implementation for mismatching
14 src/mongo/util/processinfo_linux.cpp:424:16: error: no matching function for call to 'max'
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/chrony/chrony/
H A Dchrony.conf1 # Load config files matching the /etc/chrony/conf.d/*.conf pattern.
23 # Load source files matching the /etc/chrony/sources.d/*.sources pattern.
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libtest/
H A Dlibtest-deep-perl_1.205.bb17 about how it should look, \'eq\' is no good and you must use pattern matching \
18 instead. Test::Deep provides pattern matching for complex data structures \
/openbmc/openbmc/poky/scripts/contrib/
H A Ddevtool-stress.py221 … help='Run "devtool modify" followed by a build with bitbake on matching recipes',
222 … description='Runs "devtool modify" followed by a build with bitbake on matching recipes')
226 help='Run "devtool extract" on matching recipes',
227 description='Runs "devtool extract" on matching recipes')
/openbmc/bmcweb/redfish-core/lib/
H A Dprocessor_operating_config.hpp185 // First find the matching CPU object so we know how to in handleOperatingConfigCollectionGet()
208 // Not expected that there will be multiple matching in handleOperatingConfigCollectionGet()
252 // for one with a matching name in handleOperationConfigGet()
269 // Ignore any configs without matching cpuX/configY in handleOperationConfigGet()
284 // expected that there would be multiple matching in handleOperationConfigGet()
/openbmc/u-boot/arch/arm/mach-rockchip/
H A Dspl-boot-order.c24 * -ENOENT, if no device matching the node could be found
25 * -ENOSYS, if the device matching the node can not be mapped onto a
72 * extended with awareness of the BLK layer (and matching OF_CONTROL) in spl_node_to_boot_device()
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dlicenses.rst135 needs to have a matching entry in the global
142 ":ref:`dev-manual/licenses:license flag matching`" section for a full
143 explanation of how :term:`LICENSE_FLAGS` matching works. Here is the
168 License Flag Matching
171 License flag matching allows you to control what recipes the
179 In general, license flag matching is simple. However, understanding some
180 concepts will help you correctly and effectively use matching.
194 broaden the matching capabilities by using license flags string subsets
261 Of course, you could also create a matching list for those components using the
382 # Script to archive a subset of packages matching specific license(s)

12345678910>>...26