Lines Matching full:translated
1836 char *translated = NULL; in ntfs_translate_junction() local
1853 translated = kmalloc(PATH_MAX, GFP_NOFS); in ntfs_translate_junction()
1854 if (!translated) { in ntfs_translate_junction()
1859 /* Make translated path a relative path to mount point */ in ntfs_translate_junction()
1860 strcpy(translated, "./"); in ntfs_translate_junction()
1871 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1899 /* translated path has a trailing / and target_start does not */ in ntfs_translate_junction()
1900 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1904 translated, target_max, tl_len); in ntfs_translate_junction()
1908 strcpy(target, translated); in ntfs_translate_junction()
1913 kfree(translated); in ntfs_translate_junction()