Lines Matching full:translated
1825 char *translated = NULL; in ntfs_translate_junction() local
1842 translated = kmalloc(PATH_MAX, GFP_NOFS); in ntfs_translate_junction()
1843 if (!translated) { in ntfs_translate_junction()
1848 /* Make translated path a relative path to mount point */ in ntfs_translate_junction()
1849 strcpy(translated, "./"); in ntfs_translate_junction()
1860 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1888 /* translated path has a trailing / and target_start does not */ in ntfs_translate_junction()
1889 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1893 translated, target_max, tl_len); in ntfs_translate_junction()
1897 strcpy(target, translated); in ntfs_translate_junction()
1902 kfree(translated); in ntfs_translate_junction()