/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | archiver.py | 8 import glob 41 included_present = len(glob.glob(src_path + '/%s-*/*' % include_recipe)) 45 excluded_present = len(glob.glob(src_path + '/%s-*/*' % exclude_recipe)) 73 included_present = len(glob.glob(src_path_target + '/%s-*/*' % target_recipe)) 77 excluded_present = len(glob.glob(src_path_native + '/%s-*/*' % native_recipe)) 110 included_present = len(glob.glob(src_path_target + '/%s-*/*' % target_recipes[0])) 113 included_present = len(glob.glob(src_path_native + '/%s-*/*' % native_recipes[1])) 117 excluded_present = len(glob.glob(src_path_native + '/%s-*/*' % native_recipes[0])) 120 excluded_present = len(glob.glob(src_path_target + '/%s-*/*' % target_recipes[1])) 182 glob_result = glob.glob(glob_str) [all …]
|
H A D | retain.py | 9 import glob 48 if not glob.glob(os.path.join(retain_outdir, '%s_temp_*.tar.gz' % test_recipe)): 94 archives = glob.glob(os.path.join(retain_outdir, '%s_*.tar.gz' % test_recipe_fail)) 151 if not glob.glob(os.path.join(retain_outdir, 'buildlogs_*.tar.gz')): 154 if glob.glob(os.path.join(retain_outdir, '%s_*.tar.gz' % os.path.basename(stamps_dir))): 161 if not glob.glob(os.path.join(retain_outdir, '%s_*.tar.gz' % os.path.basename(stamps_dir))): 163 if len(glob.glob(os.path.join(retain_outdir, 'buildlogs_*.tar.gz'))) != 2: 215 … archives = glob.glob(os.path.join(retain_outdir, '%s_*-testsuffix.tar.bz2' % test_recipe_fail))
|
H A D | pseudo.py | 7 import glob 25 test1_pyc_present = len(glob.glob(os.path.join(pycache_path, 'pseudo_pyc_test1.*.pyc'))) 28 test2_pyc_present = len(glob.glob(os.path.join(pycache_path, 'pseudo_pyc_test2.*.pyc')))
|
H A D | wic.py | 17 from glob import glob 169 out = glob(os.path.join( 201 out = glob(os.path.join(self.resultdir, "%s-*.direct" % wksname)) 222 self.assertEqual(1, len(glob(os.path.join (self.resultdir, "wictestdisk-*.direct")))) 229 self.assertEqual(1, len(glob(os.path.join(self.resultdir, "directdisk-*.direct")))) 242 self.assertEqual(1, len(glob(os.path.join(self.resultdir, "HYBRID_ISO_IMG-*.direct")))) 243 self.assertEqual(1, len(glob(os.path.join (self.resultdir, "HYBRID_ISO_IMG-*.iso")))) 250 self.assertEqual(1, len(glob(os.path.join(self.resultdir, "qemux86-directdisk-*direct")))) 257 self.assertEqual(1, len(glob(os.path.join(self.resultdir, "mkefidisk-*direct")))) 268 …self.assertEqual(1, len(glob(os.path.join(self.resultdir, "directdisk-bootloader-config-*direct"))… [all …]
|
H A D | signing.py | 11 import glob 165 recipe_sig = glob.glob(sstatedir + '/*/*/*:ed:*_populate_lic.tar.zst.sig') 166 recipe_archive = glob.glob(sstatedir + '/*/*/*:ed:*_populate_lic.tar.zst')
|
H A D | gotoolchain.py | 7 import glob 24 return glob.glob(pattern)[0]
|
/openbmc/linux/drivers/gpu/drm/ttm/ |
H A D | ttm_device.c | 51 struct ttm_global *glob = &ttm_glob; in ttm_global_release() local 60 __free_page(glob->dummy_read_page); in ttm_global_release() 61 memset(glob, 0, sizeof(*glob)); in ttm_global_release() 68 struct ttm_global *glob = &ttm_glob; in ttm_global_init() local 98 glob->dummy_read_page = alloc_page(__GFP_ZERO | GFP_DMA32); in ttm_global_init() 100 if (unlikely(glob->dummy_read_page == NULL)) { in ttm_global_init() 105 INIT_LIST_HEAD(&glob->device_list); in ttm_global_init() 106 atomic_set(&glob->bo_count, 0); in ttm_global_init() 109 &glob->bo_count); in ttm_global_init() 125 struct ttm_global *glob = &ttm_glob; in ttm_global_swapout() local [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
H A D | 0004-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch | 21 src/basic/glob-util.c | 12 ++++++++++++ 22 src/test/test-glob-util.c | 16 ++++++++++++++++ 26 diff --git a/src/basic/glob-util.c b/src/basic/glob-util.c 28 --- a/src/basic/glob-util.c 29 +++ b/src/basic/glob-util.c 59 k = glob(path, flags | GLOB_ALTDIRFUNC, NULL, pglob); 61 + k = glob(path, flags, NULL, pglob); 66 diff --git a/src/test/test-glob-util.c b/src/test/test-glob-util.c 68 --- a/src/test/test-glob-util.c 69 +++ b/src/test/test-glob-util.c [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/ |
H A D | 0005-don-t-fail-if-GLOB_BRACE-and-GLOB_ALTDIRFUNC-is-not-.patch | 21 src/basic/glob-util.c | 12 ++++++++++++ 22 src/test/test-glob-util.c | 16 ++++++++++++++++ 26 diff --git a/src/basic/glob-util.c b/src/basic/glob-util.c 28 --- a/src/basic/glob-util.c 29 +++ b/src/basic/glob-util.c 59 k = glob(path, flags | GLOB_ALTDIRFUNC, NULL, pglob); 61 + k = glob(path, flags, NULL, pglob); 66 diff --git a/src/test/test-glob-util.c b/src/test/test-glob-util.c 68 --- a/src/test/test-glob-util.c 69 +++ b/src/test/test-glob-util.c [all …]
|
/openbmc/openbmc/poky/scripts/tiny/ |
H A D | ksize.py | 28 def __init__(self, glob): argument 29 self.title = glob 30 … p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True) 53 glob = ' '.join(p.communicate()[0].splitlines()) 54 oreport = Report(glob, str(path) + "/*.o") 78 def __init__(self, glob, title): argument 79 self.glob = glob 81 self.sizes = Sizes(glob) 142 glob = "arch/*/built-in.[o,a] */built-in.[o,a]" 143 vmlinux = Report.create("vmlinux", "Linux Kernel", glob)
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/ |
H A D | sdk.py | 7 import glob 101 for f in glob.glob(os.path.join(self.sdk_output, 117 for f in glob.glob(os.path.join(self.sdk_output, "etc", "rpm*")): 119 for f in glob.glob(os.path.join(self.sdk_output, "etc", "dnf", "*")):
|
/openbmc/qemu/scripts/ |
H A D | nsis.py | 8 import glob 65 for exe in sorted(glob.glob( 95 for exe in glob.glob(os.path.join(destdir + prefix, "*.exe")):
|
/openbmc/u-boot/tools/patman/ |
H A D | tools.py | 7 import glob 140 return glob.glob(fname) 144 files += glob.glob(pathname)
|
H A D | test_util.py | 7 import glob 39 glob_list = glob.glob(os.path.join(path, '*.py'))
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | path.py | 8 import glob 126 if len(glob.glob('%s/.??*' % src)) > 0: 128 if len(glob.glob('%s/**' % src)) > 0: 156 for name in glob.glob(path): 314 globbed = glob.glob(candidate)
|
H A D | bootfiles.py | 18 from glob import glob 48 srcs = glob(os.path.join(deploy_dir, src))
|
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/ |
H A D | common.py | 6 import glob 19 readme_files = glob.glob(os.path.join(self.tc.layer['path'], '[Rr][Ee][Aa][Dd][Mm][Ee]*')) 56 files = glob.glob(os.path.join(path, name))
|
/openbmc/skeleton/pysystemmgr/obmc/system/ |
H A D | __init__.py | 1 from glob import glob 7 for gc in glob(join(path, pattern)):
|
/openbmc/linux/kernel/trace/ |
H A D | trace_functions.c | 797 struct ftrace_hash *hash, char *glob, in ftrace_trace_probe_callback() argument 808 if (glob[0] == '!') in ftrace_trace_probe_callback() 809 return unregister_ftrace_function_probe_func(glob+1, tr, ops); in ftrace_trace_probe_callback() 828 ret = register_ftrace_function_probe(glob, tr, ops, count); in ftrace_trace_probe_callback() 835 char *glob, char *cmd, char *param, int enable) in ftrace_trace_onoff_callback() argument 848 return ftrace_trace_probe_callback(tr, ops, hash, glob, cmd, in ftrace_trace_onoff_callback() 854 char *glob, char *cmd, char *param, int enable) in ftrace_stacktrace_callback() argument 863 return ftrace_trace_probe_callback(tr, ops, hash, glob, cmd, in ftrace_stacktrace_callback() 869 char *glob, char *cmd, char *param, int enable) in ftrace_dump_callback() argument 879 return ftrace_trace_probe_callback(tr, ops, hash, glob, cmd, in ftrace_dump_callback() [all …]
|
H A D | trace_events_trigger.c | 566 static int register_trigger(char *glob, in register_trigger() argument 611 static void unregister_trigger(char *glob, in unregister_trigger() argument 720 bool event_trigger_check_remove(const char *glob) in event_trigger_check_remove() argument 722 return (glob && glob[0] == '!') ? true : false; in event_trigger_check_remove() 936 char *glob, in event_trigger_register() argument 939 return cmd_ops->reg(glob, trigger_data, file); in event_trigger_register() 954 char *glob, in event_trigger_unregister() argument 957 cmd_ops->unreg(glob, trigger_data, file); in event_trigger_unregister() 983 char *glob, char *cmd, char *param_and_filter) in event_trigger_parse() argument 990 remove = event_trigger_check_remove(glob); in event_trigger_parse() [all …]
|
/openbmc/linux/drivers/comedi/drivers/ni_routing/tools/ |
H A D | csv_collection.py | 3 import os, csv, glob 26 for fname in glob.glob(pattern):
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | findtests.py | 20 import glob 46 self.all_tests = glob.glob('[0-9][0-9][0-9]') 47 self.all_tests += [f for f in glob.iglob('tests/*')
|
/openbmc/openbmc/meta-arm/scripts/ |
H A D | layer-overview.py | 29 machines = sorted(p for p in layer.glob("conf/machine/*.conf")) 36 recipes = sorted((p for p in layer.glob("recipes-*/*/*.bb")), key=lambda p:p.name) 63 sublayers = sorted(p for p in base.glob("meta-*") if is_layer(p))
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | runqemu.py | 14 import glob 31 if not glob.glob(os.path.join(bindir_native, 'qemu-system-*')):
|
/openbmc/openbmc/meta-phosphor/classes/ |
H A D | obmc-phosphor-ipmiprovider-symlink.bbclass | 16 import glob; 26 filelist = glob.glob(install_file);
|