Lines Matching full:translated
1788 char *translated = NULL; in ntfs_translate_junction() local
1805 translated = kmalloc(PATH_MAX, GFP_NOFS); in ntfs_translate_junction()
1806 if (!translated) { in ntfs_translate_junction()
1811 /* Make translated path a relative path to mount point */ in ntfs_translate_junction()
1812 strcpy(translated, "./"); in ntfs_translate_junction()
1823 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1851 /* translated path has a trailing / and target_start does not */ in ntfs_translate_junction()
1852 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1856 translated, target_max, tl_len); in ntfs_translate_junction()
1860 strcpy(target, translated); in ntfs_translate_junction()
1865 kfree(translated); in ntfs_translate_junction()