/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/cabextract/cabextract/ |
H A D | fix-fnmatch.patch | 3 Subject: [PATCH] Don't play with fnmatch.c replacement 5 Currently fnmatch.c, even if it is selected, conditionally disables compilation 6 of fnmatch() funciton even though the rest of the code expects to get it (e.g. 7 because Autoconf didn't detect the working implementation and enabled fnmatch.c 19 Index: cabextract-1.11/fnmatch.c 21 --- cabextract-1.11.orig/fnmatch.c 22 +++ cabextract-1.11/fnmatch.c
|
/openbmc/u-boot/tools/ |
H A D | genboardscfg.py | 18 import fnmatch 75 for filename in fnmatch.filter(filenames, '*_defconfig'): 76 if fnmatch.fnmatch(filename, '.*'): 84 if (fnmatch.fnmatch(filename, '*~') or 85 not fnmatch.fnmatch(filename, 'Kconfig*') and 236 for filename in fnmatch.filter(filenames, '*_defconfig'): 237 if fnmatch.fnmatch(filename, '.*'):
|
/openbmc/linux/scripts/dtc/ |
H A D | dt-extract-compatibles | 4 import fnmatch 56 if fnmatch.fnmatch(d, ".*"): 59 if fnmatch.fnmatch(f, glob):
|
/openbmc/linux/tools/testing/selftests/ia64/ |
H A D | aliasing-test.c | 36 if (fnmatch("/proc/bus/pci/*", path, 0) == 0) { in map_mem() 78 if (fnmatch(".", name, 0) == 0) in scan_tree() 80 if (fnmatch("..", name, 0) == 0) in scan_tree() 88 if (fnmatch(file, name, 0) == 0) { in scan_tree() 163 if (fnmatch(".", name, 0) == 0) in scan_rom() 165 if (fnmatch("..", name, 0) == 0) in scan_rom() 173 if (fnmatch(file, name, 0) == 0) { in scan_rom()
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | devtool-stress.py | 22 import fnmatch 61 if fnmatch.fnmatch(pn, onlyitem): 83 if fnmatch.fnmatch(pn, item): 90 if fnmatch.fnmatch(pn, item):
|
H A D | graph-tool | 54 import fnmatch 68 if fnmatch.fnmatch(taskname, extask):
|
/openbmc/openbmc-build-scripts/config/lib/ |
H A D | ignore-filter | 4 import fnmatch 43 if any(fnmatch.fnmatch(seg, i) for i in ignore_patterns):
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | retain.py | 10 import fnmatch 107 if not fnmatch.fnmatch(ti.name, '%s/*' % archive_prefix): 231 if not fnmatch.fnmatch(ti.name, '%s/*' % (archive_prefix)):
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/sensors/ |
H A D | phosphor-hwmon-config-mrw.bb | 20 from fnmatch import fnmatch 26 if fnmatch(name, "*.conf"):
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | copyleft_filter.bbclass | 52 from fnmatch import fnmatchcase as fnmatch 76 if any(fnmatch(d.getVar('PN'), name) \ 79 if any(fnmatch(d.getVar('PN'), name) \
|
/openbmc/qemu/tests/tcg/i386/ |
H A D | test-avx.py | 7 from fnmatch import fnmatch 120 return fnmatch(op, pattern[1:]) or fnmatch(op, 'V'+pattern[1:]) 121 return fnmatch(op, pattern)
|
H A D | test-mmx.py | 7 from fnmatch import fnmatch 72 return fnmatch(op, pattern)
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | import.py | 14 import fnmatch 70 if fnmatch.fnmatch(current_fn, '*' + fn.replace('%', '') + '*'):
|
/openbmc/openbmc/poky/meta/recipes-core/ifupdown/files/ |
H A D | 0001-Define-FNM_EXTMATCH-for-musl.patch | 12 | 700 | if(fnmatch(pattern, ifa->ifa_name, FNM_EXTMATCH)) 20 | 40 | if(fnmatch(pattern, buf, FNM_EXTMATCH) == 0) {
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mraa/mraa/ |
H A D | 0001-mraa-Use-posix-basename.patch | 35 - if (fnmatch(IIO_DEVICE_WILDCARD, basename(path), 0) == 0) { 37 + if (fnmatch(IIO_DEVICE_WILDCARD, basename(tmp), 0) == 0) {
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | license.py | 11 from fnmatch import fnmatchcase as fnmatch unknown 16 if fnmatch(license, dwl): 125 return any(fnmatch(license, pattern) for pattern in include_licenses) 128 return any(fnmatch(license, pattern) for pattern in exclude_licenses)
|
H A D | sdk.py | 93 import fnmatch 106 pkgs = fnmatch.filter(pm.list_installed(), "nativesdk-glibc-binary-localedata-*.utf-8")
|
H A D | sstatesig.py | 380 import fnmatch 547 import fnmatch 673 if fnmatch.fnmatch(path, entry): 692 if not fnmatch.fnmatch(path, entry):
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | append.py | 12 import fnmatch 56 if fnmatch.fnmatchcase(targetpath, d.expand(pthspec)): 81 if fnmatch.fnmatchcase(fullpth, targetpath): 123 if fnmatch.fnmatch(os.path.basename(localpath), workdirfile): 213 if fnmatch.fnmatchcase(os.path.basename(instpath), os.path.basename(srcpath)):
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/systemd/systemd-systemctl/ |
H A D | systemctl | 8 import fnmatch 146 if fnmatch.fnmatch(unit_name, directive.unit_name):
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | rpm.py | 8 import fnmatch 91 for f in fnmatch.filter(os.listdir(rpmdir), rpm_doc):
|
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd-systemctl/ |
H A D | systemctl | 8 import fnmatch 162 if fnmatch.fnmatch(unit_name, directive.unit_name):
|
/openbmc/openbmc/poky/bitbake/lib/bblayers/ |
H A D | action.py | 7 import fnmatch 242 if fnmatch.fnmatch(f1full, item):
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/cabextract/ |
H A D | cabextract_1.11.bb | 11 file://fix-fnmatch.patch \
|
/openbmc/qemu/tests/migration/guestperf/ |
H A D | shell.py | 22 import fnmatch 226 if not fnmatch.fnmatch(name, args.filter):
|