Home
last modified time | relevance | path

Searched refs:dirs (Results 1 – 25 of 226) sorted by relevance

12345678910

/openbmc/openbmc/poky/meta/lib/oeqa/sdk/cases/
H A Dcmake.py32 dirs = {}
33 dirs["source"] = os.path.join(testdir, "assimp-5.4.1")
34 dirs["build"] = os.path.join(testdir, "build")
35 dirs["install"] = os.path.join(testdir, "install")
38 self.assertTrue(os.path.isdir(dirs["source"]))
41 …f._run("sed -i '/# ifdef _FILE_OFFSET_BITS/I,+2 d' {source}/contrib/zlib/gzguts.h".format(**dirs))
42 os.makedirs(dirs["build"])
44 …NGS_AS_ERRORS=OFF -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DASSIMP_BUILD_ZLIB=ON {source}".format(**dirs))
45 self._run("cmake --build {build} -- -j".format(**dirs))
46 self._run("cmake --build {build} --target install -- DESTDIR={install}".format(**dirs))
[all …]
H A Dautotools.py29 dirs = {}
30 dirs["source"] = os.path.join(testdir, "cpio-2.15")
31 dirs["build"] = os.path.join(testdir, "build")
32 dirs["install"] = os.path.join(testdir, "install")
35 self.assertTrue(os.path.isdir(dirs["source"]))
36 os.makedirs(dirs["build"])
38 …=int -Dtrue=1 -Dfalse=0 -Wno-error=implicit-function-declaration' $CONFIGURE_FLAGS".format(**dirs))
41 with open(os.path.join(dirs["build"], "config.log")) as f:
45 …d=gnu17 -Dbool=int -Dtrue=1 -Dfalse=0 -Wno-error=implicit-function-declaration' -j".format(**dirs))
46 self._run("cd {build} && make install DESTDIR={install}".format(**dirs))
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xdg-user-dirs/
H A Dxdg-user-dirs_0.18.bb1 DESCRIPTION = "xdg-user-dirs is a tool to help manage user directories like the desktop folder and …
5 SRC_URI = "http://user-dirs.freedesktop.org/releases/${BPN}-${PV}.tar.gz"
13 ${sysconfdir}/xdg/user-dirs.conf \
14 ${sysconfdir}/xdg/user-dirs.defaults \
/openbmc/u-boot/fs/
H A Dfs.c44 struct fs_dir_stream *dirs; in fs_ls_generic() local
48 dirs = fs_opendir(dirname); in fs_ls_generic()
49 if (!dirs) in fs_ls_generic()
52 while ((dent = fs_readdir(dirs))) { in fs_ls_generic()
62 fs_closedir(dirs); in fs_ls_generic()
103 struct fs_dir_stream **dirs) in fs_opendir_unsupported() argument
152 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
154 void (*closedir)(struct fs_dir_stream *dirs);
528 struct fs_dir_stream *dirs = NULL; in fs_opendir() local
531 ret = info->opendir(filename, &dirs); in fs_opendir()
[all …]
/openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/
H A Dmakefile-libbb-race.patch15 @@ -738,9 +738,18 @@ $(sort $(busybox-all)): $(busybox-dirs) ;
18 PHONY += $(busybox-dirs)
19 -$(busybox-dirs): prepare scripts
21 +libbb-dir = $(filter libbb,$(busybox-dirs))
22 +busybox-dirs1 = $(filter-out libbb,$(busybox-dirs))
/openbmc/phosphor-bmc-code-mgmt/
H A Dmeson.build76 'bios-software-update': {'dirs' : ['bios'], 'deps': ['libgpiod']},
77 'cpld-software-update': {'dirs' : ['common/i2c', 'cpld']},
79 'dirs': ['eeprom-device'],
82 'i2cvr-software-update': {'dirs' : ['common/i2c', 'i2c-vr']},
83 'tpm-software-update': {'dirs': ['tpm']},
94 foreach dir : option_settings.get('dirs', [])
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/
H A D0004-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch33 + struct r_search_path_elem *this_dir = *dirs;
39 + while (*++dirs != NULL);
43 + dirs = sps->dirs;
46 struct r_search_path_elem *this_dir = *dirs;
/openbmc/qemu/util/
H A Dfilemonitor-inotify.c33 GHashTable *dirs; /* dirname => QFileMonitorDir */ member
194 mon->dirs = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, in qemu_file_monitor_new()
215 g_hash_table_unref(mon->dirs); in qemu_file_monitor_free_idle()
263 dir = g_hash_table_lookup(mon->dirs, dirpath); in qemu_file_monitor_add_watch()
281 g_hash_table_insert(mon->dirs, dir->path, dir); in qemu_file_monitor_add_watch()
284 if (g_hash_table_size(mon->dirs) == 1) { in qemu_file_monitor_add_watch()
319 dir = g_hash_table_lookup(mon->dirs, dirpath); in qemu_file_monitor_remove_watch()
339 g_hash_table_remove(mon->dirs, dir->path); in qemu_file_monitor_remove_watch()
341 if (g_hash_table_size(mon->dirs) == 0) { in qemu_file_monitor_remove_watch()
H A Dmodule.c209 char *dirs[5]; in module_load() local
237 dirs[n_dirs++] = g_strdup(search_dir); in module_load()
239 dirs[n_dirs++] = get_relocated_path(CONFIG_QEMU_MODDIR); in module_load()
245 dirs[n_dirs++] = g_strdup_printf("/var/run/qemu/%s", version_dir); in module_load()
247 assert(n_dirs <= ARRAY_SIZE(dirs)); in module_load()
284 dirs[i], module_name, CONFIG_HOST_DSOSUF); in module_load()
312 g_free(dirs[i]); in module_load()
/openbmc/qemu/system/
H A Ddatadir.c91 static const char * const dirs[] = { in qemu_add_default_firmwarepath() local
99 for (i = 0; dirs[i] != NULL; i++) { in qemu_add_default_firmwarepath()
100 qemu_add_data_dir(get_relocated_path(dirs[i])); in qemu_add_default_firmwarepath()
/openbmc/openbmc/poky/meta/lib/oe/
H A Dreproducible.py92 for root, dirs, files in os.walk(unpackdir, topdown=True):
93 if '.git' in dirs:
96 for root, dirs, files in os.walk(sourcedir, topdown=True):
97 if '.git' in dirs:
131 for root, dirs, files in os.walk(sourcedir, topdown=True):
H A Dcachedpath.py139 dirs, nondirs = [], []
142 dirs.append(name)
147 yield top, dirs, nondirs
148 for name in dirs:
154 yield top, dirs, nondirs
/openbmc/u-boot/lib/efi_loader/
H A Defi_file.c33 struct fs_dir_stream *dirs; member
65 struct fs_dir_stream *dirs; in is_dir() local
67 dirs = fs_opendir(fh->path); in is_dir()
68 if (!dirs) in is_dir()
71 fs_closedir(dirs); in is_dir()
270 fs_closedir(fh->dirs); in file_close()
324 if (!fh->dirs) { in dir_read()
326 fh->dirs = fs_opendir(fh->path); in dir_read()
327 if (!fh->dirs) in dir_read()
341 dent = fs_readdir(fh->dirs); in dir_read()
[all …]
/openbmc/openbmc/poky/scripts/
H A Dbuildhistory-collect-srcrevs61 for root, dirs, files in os.walk(options.buildhistory_dir):
62 dirs.sort()
63 if '.git' in dirs:
64 dirs.remove('.git')
H A Dsysroot-relativelinks.py32 for subdir, dirs, files in os.walk(topdir):
33 for f in dirs + files:
/openbmc/openbmc-test-automation/ffdc/plugins/
H A Dtelnet_execution.py14 for root, dirs, files in os.walk(full_path):
15 for found_dir in dirs:
H A Dssh_execution.py14 for root, dirs, files in os.walk(full_path):
15 for found_dir in dirs:
H A Dscp_execution.py14 for root, dirs, files in os.walk(full_path):
15 for found_dir in dirs:
/openbmc/qemu/scripts/simplebench/
H A Dbench-backup.py41 dirs = dict(d.split(':') for d in args.dir)
62 source = drv_qcow2(drv_file(dirs[src] + '/test-source.qcow2'))
64 source = drv_file(dirs[src] + '/test-source')
77 fname = dirs[dst] + '/test-target'
/openbmc/telemetry/subprojects/packagefiles/boost/
H A Dmeson.build23 cxx.find_library('boost_context', dirs: lib_dir, static: true),
24 cxx.find_library('boost_coroutine', dirs: lib_dir, static: true),
/openbmc/openbmc/poky/bitbake/lib/bblayers/
H A Daction.py162 for root, dirs, files in os.walk(layer):
163 if '.git' in dirs:
164 dirs.remove('.git')
165 if '.hg' in dirs:
166 dirs.remove('.hg')
235 for root, dirs, files in os.walk(outputdir):
/openbmc/u-boot/include/
H A Dfs.h149 struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs);
156 void fs_closedir(struct fs_dir_stream *dirs);
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Drust.py23 dirs = '/tmp/hello'
24 cls.tc.target.run('rm -r %s' % dirs)
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dchecksum.py105 for root, dirs, files in os.walk(pth, topdown=True):
106 [dirs.remove(d) for d in list(dirs) if d in localdirsexclude]
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/
H A Dserial.py177 for root, dirs, files in os.walk(localSrc):
179 for d in dirs:
240 for root, dirs, files in os.walk(localPath, topdown=False):
247 for d in dirs:

12345678910