Home
last modified time | relevance | path

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

/linux-6.1.9/scripts/dtc/libfdt/
Dfdt_overlay.c704 const char *target_path; in overlay_symbol_update() local
782 ret = overlay_get_target(fdt, fdto, fragment, &target_path); in overlay_symbol_update()
788 if (!target_path) { in overlay_symbol_update()
794 len = strlen(target_path); in overlay_symbol_update()
802 if (!target_path) { in overlay_symbol_update()
804 ret = overlay_get_target(fdt, fdto, fragment, &target_path); in overlay_symbol_update()
812 if (!target_path) { in overlay_symbol_update()
817 memcpy(buf, target_path, len + 1); in overlay_symbol_update()
/linux-6.1.9/drivers/of/
Doverlay.c204 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()
/linux-6.1.9/fs/xfs/
Dxfs_symlink.c150 const char *target_path, in xfs_symlink() argument
186 pathlen = strlen(target_path); in xfs_symlink()
260 xfs_init_local_fork(ip, XFS_DATA_FORK, target_path, pathlen); in xfs_symlink()
280 cur_chunk = target_path; in xfs_symlink()
Dxfs_symlink.h11 struct xfs_name *link_name, const char *target_path,
/linux-6.1.9/fs/cifs/
Dcifsfs.c1155 char *target_path; in cifs_get_link() local
1157 target_path = kmalloc(PATH_MAX, GFP_KERNEL); in cifs_get_link()
1158 if (!target_path) in cifs_get_link()
1163 strscpy(target_path, CIFS_I(inode)->symlink_target, PATH_MAX); in cifs_get_link()
1165 kfree(target_path); in cifs_get_link()
1166 target_path = ERR_PTR(-EOPNOTSUPP); in cifs_get_link()
1170 if (!IS_ERR(target_path)) in cifs_get_link()
1171 set_delayed_call(done, kfree_link, target_path); in cifs_get_link()
1173 return target_path; in cifs_get_link()
Dsmb1ops.c974 char **target_path, bool is_reparse_point) in cifs_query_symlink() argument
990 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, target_path, in cifs_query_symlink()
995 target_path, in cifs_query_symlink()
1015 rc = CIFSSMBQuerySymLink(xid, tcon, fid.netfid, target_path, in cifs_query_symlink()
1020 convert_delimiter(*target_path, '/'); in cifs_query_symlink()
1025 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); in cifs_query_symlink()
Dsmb2ops.c2783 u32 plen, char **target_path, in parse_reparse_posix() argument
2797 *target_path = cifs_strndup_from_utf16( in parse_reparse_posix()
2800 if (!(*target_path)) in parse_reparse_posix()
2803 convert_delimiter(*target_path, '/'); in parse_reparse_posix()
2804 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); in parse_reparse_posix()
2811 u32 plen, char **target_path, in parse_reparse_symlink() argument
2827 *target_path = cifs_strndup_from_utf16( in parse_reparse_symlink()
2830 if (!(*target_path)) in parse_reparse_symlink()
2833 convert_delimiter(*target_path, '/'); in parse_reparse_symlink()
2834 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); in parse_reparse_symlink()
[all …]
/linux-6.1.9/sound/soc/intel/avs/
Dpath.c529 struct avs_path *target_path; in avs_path_binding_arm() local
541 target_path = avs_path_find_path(adev, t->target_tplg_name, in avs_path_binding_arm()
543 if (!target_path) { in avs_path_binding_arm()
549 target_ppl = avs_path_find_pipeline(target_path, in avs_path_binding_arm()