Home
last modified time | relevance | path

Searched refs:target_path (Results 1 – 11 of 11) sorted by relevance

/linux/drivers/of/
H A Doverlay.c210 const char *target_path; in dup_and_fixup_symbol_prop() local
246 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target); in dup_and_fixup_symbol_prop()
247 if (!target_path) in dup_and_fixup_symbol_prop()
249 target_path_len = strlen(target_path); in dup_and_fixup_symbol_prop()
261 strcpy(new_prop->value, target_path); in dup_and_fixup_symbol_prop()
266 kfree(target_path); in dup_and_fixup_symbol_prop()
273 kfree(target_path); in dup_and_fixup_symbol_prop()
687 char *target_path; in find_target() local
704 target_path = kasprintf(GFP_KERNEL, "%pOF%s", target_base, path); in find_target()
705 if (!target_path) in find_target()
[all...]
/linux/scripts/dtc/libfdt/
H A Dfdt_overlay.c916 const char *target_path; in overlay_symbol_update() local
994 ret = fdt_overlay_target_offset(fdt, fdto, fragment, &target_path); in overlay_symbol_update()
1000 if (!target_path) { in overlay_symbol_update()
1006 len = strlen(target_path); in overlay_symbol_update()
1014 if (!target_path) { in overlay_symbol_update()
1016 ret = fdt_overlay_target_offset(fdt, fdto, fragment, &target_path); in overlay_symbol_update()
1024 if (!target_path) { in overlay_symbol_update()
1029 memcpy(buf, target_path, len + 1); in overlay_symbol_update()
/linux/fs/xfs/
H A Dxfs_symlink.c88 const char *target_path, in xfs_symlink() argument
123 pathlen = strlen(target_path); in xfs_symlink()
189 error = xfs_symlink_write_target(tp, du.ip, du.ip->i_ino, target_path, in xfs_symlink()
H A Dxfs_symlink.h11 struct xfs_name *link_name, const char *target_path,
/linux/tools/testing/selftests/drivers/net/
H A Dnetpoll_basic.py215 target_path = f"{NETCONSOLE_CONFIGFS_PATH}/{name}"
217 if os.path.exists(target_path):
218 os.rmdir(target_path)
/linux/fs/xfs/libxfs/
H A Dxfs_symlink_remote.h24 xfs_ino_t owner, const char *target_path, int pathlen,
/linux/fs/smb/client/
H A Dcifsfs.c1169 char *target_path; in cifs_get_link() local
1174 target_path = kmalloc(PATH_MAX, GFP_KERNEL); in cifs_get_link()
1175 if (!target_path) in cifs_get_link()
1180 strscpy(target_path, CIFS_I(inode)->symlink_target, PATH_MAX); in cifs_get_link()
1182 kfree(target_path); in cifs_get_link()
1183 target_path = ERR_PTR(-EOPNOTSUPP); in cifs_get_link()
1187 if (!IS_ERR(target_path)) in cifs_get_link()
1188 set_delayed_call(done, kfree_link, target_path); in cifs_get_link()
1190 return target_path; in cifs_get_link()
H A Dsmb1ops.c1175 char **target_path) in cifs_query_symlink() argument
1184 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, target_path, in cifs_query_symlink()
1188 target_path, cifs_sb->local_nls); in cifs_query_symlink()
H A Dcifsglob.h473 char **target_path);
/linux/sound/soc/intel/avs/
H A Dpath.c858 struct avs_path *target_path; in avs_path_binding_arm() local
870 target_path = avs_path_find_path(adev, t->target_tplg_name, in avs_path_binding_arm()
872 if (!target_path) { in avs_path_binding_arm()
878 target_ppl = avs_path_find_pipeline(target_path, in avs_path_binding_arm()
/linux/tools/power/x86/turbostat/
H A Dturbostat.c10496 int pmt_parse_from_path(const char *target_path, unsigned int *out_guid, unsigned int *out_seq) in pmt_parse_from_path() argument
10507 fd_target_dir = open(target_path, O_RDONLY | O_DIRECTORY); in pmt_parse_from_path()