Lines Matching full:translated
1815 char *translated = NULL; in ntfs_translate_junction() local
1832 translated = kmalloc(PATH_MAX, GFP_NOFS); in ntfs_translate_junction()
1833 if (!translated) { in ntfs_translate_junction()
1838 /* Make translated path a relative path to mount point */ in ntfs_translate_junction()
1839 strcpy(translated, "./"); in ntfs_translate_junction()
1850 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1878 /* translated path has a trailing / and target_start does not */ in ntfs_translate_junction()
1879 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1883 translated, target_max, tl_len); in ntfs_translate_junction()
1887 strcpy(target, translated); in ntfs_translate_junction()
1892 kfree(translated); in ntfs_translate_junction()