/kernel/uniproton/cmake/functions/ |
D | uniproton_functions.cmake | 124 function(ar_library target_name target_suffix target_path ar_flag object_name object_path) 134 OUTPUT ${target_path}/${target_name}.${target_suffix} 135 COMMAND ${ar} ${ar_flag} ${target_path}/${target_name}.${target_suffix} ${object_path} 136 WORKING_DIRECTORY ${target_path} 141 DEPENDS ${target_path}/${target_name}.${target_suffix} 149 function(link_library target_name target_path link_flag object_name object_path) 159 OUTPUT ${target_path}/${target_name} 160 COMMAND ${link} ${${link_flag}} -o ${target_path}/${target_name} ${object_path} 161 WORKING_DIRECTORY ${target_path} 166 DEPENDS ${target_path}/${target_name}
|
/kernel/linux/linux-5.10/scripts/dtc/libfdt/ |
D | fdt_overlay.c | 704 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()
|
/kernel/linux/linux-5.10/fs/cifs/ |
D | link.c | 608 char *target_path = NULL; in cifs_get_link() local 643 &target_path); in cifs_get_link() 653 &target_path, reparse_point); in cifs_get_link() 660 kfree(target_path); in cifs_get_link() 663 set_delayed_call(done, kfree_link, target_path); in cifs_get_link() 664 return target_path; in cifs_get_link()
|
D | smb1ops.c | 944 char **target_path, bool is_reparse_point) in cifs_query_symlink() argument 960 rc = CIFSSMBUnixQuerySymLink(xid, tcon, full_path, target_path, in cifs_query_symlink() 965 target_path, in cifs_query_symlink() 985 rc = CIFSSMBQuerySymLink(xid, tcon, fid.netfid, target_path, in cifs_query_symlink() 990 convert_delimiter(*target_path, '/'); in cifs_query_symlink() 995 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); in cifs_query_symlink()
|
D | smb2ops.c | 2798 u32 plen, char **target_path, in parse_reparse_posix() argument 2812 *target_path = cifs_strndup_from_utf16( in parse_reparse_posix() 2815 if (!(*target_path)) in parse_reparse_posix() 2818 convert_delimiter(*target_path, '/'); in parse_reparse_posix() 2819 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); in parse_reparse_posix() 2826 u32 plen, char **target_path, in parse_reparse_symlink() argument 2842 *target_path = cifs_strndup_from_utf16( in parse_reparse_symlink() 2845 if (!(*target_path)) in parse_reparse_symlink() 2848 convert_delimiter(*target_path, '/'); in parse_reparse_symlink() 2849 cifs_dbg(FYI, "%s: target path: %s\n", __func__, *target_path); in parse_reparse_symlink() [all …]
|
/kernel/linux/linux-5.10/drivers/of/ |
D | overlay.c | 206 const char *target_path; in dup_and_fixup_symbol_prop() local 242 target_path = kasprintf(GFP_KERNEL, "%pOF", fragment->target); in dup_and_fixup_symbol_prop() 243 if (!target_path) in dup_and_fixup_symbol_prop() 245 target_path_len = strlen(target_path); in dup_and_fixup_symbol_prop() 257 strcpy(new_prop->value, target_path); in dup_and_fixup_symbol_prop() 262 kfree(target_path); in dup_and_fixup_symbol_prop() 271 kfree(target_path); in dup_and_fixup_symbol_prop()
|
/kernel/linux/linux-5.10/fs/xfs/ |
D | xfs_symlink.c | 139 const char *target_path, in xfs_symlink() argument 174 pathlen = strlen(target_path); in xfs_symlink() 251 xfs_init_local_fork(ip, XFS_DATA_FORK, target_path, pathlen); in xfs_symlink() 271 cur_chunk = target_path; in xfs_symlink()
|
D | xfs_symlink.h | 11 const char *target_path, umode_t mode, struct xfs_inode **ipp);
|
/kernel/liteos_a/fs/vfs/vfs_cmd/ |
D | vfs_shellcmd.c | 409 char *target_path = NULL; in osShellCmdUmount() local 424 target_path = fullpath; in osShellCmdUmount() 426 ret = strncmp(work_path, target_path, cmp_num); in osShellCmdUmount()
|