Lines Matching full:translated
1828 char *translated = NULL; in ntfs_translate_junction() local
1845 translated = kmalloc(PATH_MAX, GFP_NOFS); in ntfs_translate_junction()
1846 if (!translated) { in ntfs_translate_junction()
1851 /* Make translated path a relative path to mount point */ in ntfs_translate_junction()
1852 strcpy(translated, "./"); in ntfs_translate_junction()
1863 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1891 /* translated path has a trailing / and target_start does not */ in ntfs_translate_junction()
1892 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1896 translated, target_max, tl_len); in ntfs_translate_junction()
1900 strcpy(target, translated); in ntfs_translate_junction()
1905 kfree(translated); in ntfs_translate_junction()