Home
last modified time | relevance | path

Searched refs:target_path (Results 1 – 7 of 7) 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/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/
H A Dxfs_symlink.h11 struct xfs_name *link_name, const char *target_path,
/linux/fs/smb/client/
H A Dcifsfs.c1224 char *target_path; in cifs_get_link() local
1229 target_path = kmalloc(PATH_MAX, GFP_KERNEL); in cifs_get_link()
1230 if (!target_path) in cifs_get_link()
1235 strscpy(target_path, CIFS_I(inode)->symlink_target, PATH_MAX); in cifs_get_link()
1237 kfree(target_path); in cifs_get_link()
1238 target_path = ERR_PTR(-EOPNOTSUPP); in cifs_get_link()
1242 if (!IS_ERR(target_path)) in cifs_get_link()
1243 set_delayed_call(done, kfree_link, target_path); in cifs_get_link()
1245 return target_path; in cifs_get_link()
H A Dsmb1ops.c1227 char **target_path) in cifs_query_symlink() argument
1236 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, target_path, in cifs_query_symlink()
1240 target_path, cifs_sb->local_nls); in cifs_query_symlink()
/linux/sound/soc/intel/avs/
H A Dpath.c912 struct avs_path *target_path; in avs_path_binding_arm() local
924 target_path = avs_path_find_path(adev, t->target_tplg_name, in avs_path_binding_arm()
926 if (!target_path) { in avs_path_binding_arm()
932 target_ppl = avs_path_find_pipeline(target_path, in avs_path_binding_arm()
/linux/tools/power/x86/turbostat/
H A Dturbostat.c10898 int pmt_parse_from_path(const char *target_path, unsigned int *out_guid, unsigned int *out_seq) in pmt_parse_from_path() argument
10909 fd_target_dir = open(target_path, O_RDONLY | O_DIRECTORY); in pmt_parse_from_path()