Home
last modified time | relevance | path

Searched refs:link_path (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oe/
H A Dcve_check.py244 def update_symlinks(target_path, link_path): argument
249 if link_path != target_path and os.path.exists(target_path):
250 if os.path.exists(os.path.realpath(link_path)):
251 os.remove(link_path)
252 os.symlink(os.path.basename(target_path), link_path)
/openbmc/openbmc/poky/meta/classes/
H A Dvex.bbclass96 def generate_json_report(d, out_path, link_path):
117 update_symlinks(out_path, link_path)
215 link_path = os.path.join(deploy_dir, "%s.json" % link_name)
221 update_symlinks(manifest_name, link_path)
H A Dcve-check.bbclass119 def generate_json_report(d, out_path, link_path):
140 update_symlinks(out_path, link_path)
247 link_path = os.path.join(deploy_dir, "%s.%s" % (link_name, manifest_name_suffix))
253 update_symlinks(manifest_name, link_path)
H A Dicecc.bbclass298 link_path = icecc_get_tool_link(t, d)
299 if link_path == get_icecc(d):
300 … bb.error("%s is a symlink to %s in PATH and this prevents icecc from working" % (t, link_path))
/openbmc/linux/fs/ntfs3/
H A Dinode.c1853 char *link_path_buffer = NULL, *link_path; in ntfs_translate_junction() local
1864 link_path = dentry_path_raw(link_de, link_path_buffer, PATH_MAX); in ntfs_translate_junction()
1865 if (IS_ERR(link_path)) { in ntfs_translate_junction()
1879 ++link_path; /* Skip leading / */ in ntfs_translate_junction()
1880 for (tl_len = sizeof("./") - 1; *link_path; ++link_path) { in ntfs_translate_junction()
1881 if (*link_path == '/') { in ntfs_translate_junction()
1885 link_path); in ntfs_translate_junction()