/openbmc/openbmc/poky/scripts/ |
H A D | crosstap | 42 self.target_path = None 85 ret.append("--sysenv=PATH=" + self.target_path) 325 target_path = [] 327 target_path.append(self.sbindir) 329 target_path.append(self.bindir) 331 target_path.append(self.base_sbindir) 333 target_path.append(self.base_bindir) 334 stap.target_path = ":".join(target_path)
|
/openbmc/linux/drivers/of/ |
H A D | overlay.c | 204 const char *target_path; in dup_and_fixup_symbol_prop() local 240 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target); in dup_and_fixup_symbol_prop() 241 if (!target_path) in dup_and_fixup_symbol_prop() 243 target_path_len = strlen(target_path); in dup_and_fixup_symbol_prop() 255 strcpy(new_prop->value, target_path); in dup_and_fixup_symbol_prop() 260 kfree(target_path); in dup_and_fixup_symbol_prop() 269 kfree(target_path); in dup_and_fixup_symbol_prop() 689 char *target_path; in find_target() local 706 target_path = kasprintf(GFP_KERNEL, "%pOF%s", target_base, path); in find_target() 707 if (!target_path) in find_target() [all …]
|
/openbmc/u-boot/scripts/dtc/libfdt/ |
H A D | fdt_overlay.c | 748 const char *target_path; in overlay_symbol_update() local 816 ret = overlay_get_target(fdt, fdto, fragment, &target_path); in overlay_symbol_update() 822 if (!target_path) { in overlay_symbol_update() 828 len = strlen(target_path); in overlay_symbol_update() 836 if (!target_path) { in overlay_symbol_update() 838 ret = overlay_get_target(fdt, fdto, fragment, &target_path); in overlay_symbol_update() 846 if (!target_path) { in overlay_symbol_update() 851 memcpy(buf, target_path, len + 1); in overlay_symbol_update()
|
/openbmc/linux/scripts/dtc/libfdt/ |
H A D | fdt_overlay.c | 689 const char *target_path; in overlay_symbol_update() local 767 ret = fdt_overlay_target_offset(fdt, fdto, fragment, &target_path); in overlay_symbol_update() 773 if (!target_path) { in overlay_symbol_update() 779 len = strlen(target_path); in overlay_symbol_update() 787 if (!target_path) { in overlay_symbol_update() 789 ret = fdt_overlay_target_offset(fdt, fdto, fragment, &target_path); in overlay_symbol_update() 797 if (!target_path) { in overlay_symbol_update() 802 memcpy(buf, target_path, len + 1); in overlay_symbol_update()
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | sdk.py | 19 self.target_path = self.d.getVar('SDKTARGETSYSROOT').strip('/') 22 self.sdk_target_sysroot = os.path.join(self.sdk_output, self.target_path) 116 target_path = d.getVar('SDKTARGETSYSROOT').strip('/') 118 rootfs_dir = [sdk_output, os.path.join(sdk_output, target_path)][target is True]
|
H A D | cve_check.py | 244 def update_symlinks(target_path, link_path): argument 249 if link_path != target_path and os.path.exists(target_path): 252 os.symlink(os.path.basename(target_path), link_path)
|
H A D | spdx30_tasks.py | 1179 def make_image_link(target_path, suffix): argument 1182 if link != target_path: 1183 link.symlink_to(os.path.relpath(target_path, link.parent))
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 141 | 65 (bottom_path, middle_path, top_path, target_path), \ 93 target=target_path, \ 105 target=target_path, \
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | archiver.py | 315 target_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], 'mirror', target_file_name) 316 self.assertTrue(os.path.exists(target_path)) 344 target_path = os.path.join(bb_vars['DEPLOY_DIR_SRC'], 'mirror', target_file_name) 345 self.assertTrue(os.path.exists(target_path))
|
/openbmc/phosphor-fan-presence/docs/control/ |
H A D | fans.md | 12 "target_path": "/xyz/openbmc_project/control/fanpwm/" 38 ### target_path subsection
|
/openbmc/linux/fs/xfs/ |
H A D | xfs_symlink.c | 150 const char *target_path, in xfs_symlink() argument 186 pathlen = strlen(target_path); in xfs_symlink() 262 xfs_init_local_fork(ip, XFS_DATA_FORK, target_path, pathlen); in xfs_symlink() 282 cur_chunk = target_path; in xfs_symlink()
|
H A D | xfs_symlink.h | 11 struct xfs_name *link_name, const char *target_path,
|
/openbmc/phosphor-fan-presence/docs/monitor/ |
H A D | sensors.md | 30 - `target_path` - string (Optional) 61 "target_path": "/xyz/openbmc_project/control/fanpwm/PWM0"
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/rpm/ |
H A D | __init__.py | 372 … target_path = oe.path.join(self.target_rootfs, self.d.expand('${sysconfdir}/rpm-postinsts/')) 373 bb.utils.mkdirhier(target_path) 374 num = self._script_num_prefix(target_path) 375 saved_script_name = oe.path.join(target_path, "%d-%s" % (num, pkg))
|
/openbmc/linux/fs/smb/client/ |
H A D | cifsfs.c | 1187 char *target_path; in cifs_get_link() local 1189 target_path = kmalloc(PATH_MAX, GFP_KERNEL); in cifs_get_link() 1190 if (!target_path) in cifs_get_link() 1195 strscpy(target_path, CIFS_I(inode)->symlink_target, PATH_MAX); in cifs_get_link() 1197 kfree(target_path); in cifs_get_link() 1198 target_path = ERR_PTR(-EOPNOTSUPP); in cifs_get_link() 1202 if (!IS_ERR(target_path)) in cifs_get_link() 1203 set_delayed_call(done, kfree_link, target_path); in cifs_get_link() 1205 return target_path; in cifs_get_link()
|
H A D | smb1ops.c | 979 char **target_path) in cifs_query_symlink() argument 988 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, target_path, in cifs_query_symlink() 992 target_path, cifs_sb->local_nls); in cifs_query_symlink()
|
H A D | cifsglob.h | 438 char **target_path);
|
/openbmc/linux/sound/soc/intel/avs/ |
H A D | path.c | 592 struct avs_path *target_path; in avs_path_binding_arm() local 604 target_path = avs_path_find_path(adev, t->target_tplg_name, in avs_path_binding_arm() 606 if (!target_path) { in avs_path_binding_arm() 612 target_ppl = avs_path_find_pipeline(target_path, in avs_path_binding_arm()
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | append.py | 434 def target_path(targetpath): function 450 …ile to be replaced (as it would appear within the target image, e.g. /etc/motd)', type=target_path)
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | create-spdx-2.2.bbclass | 762 def make_image_link(target_path, suffix): 765 if link != target_path: 766 link.symlink_to(os.path.relpath(target_path, link.parent))
|