Lines Matching refs:tl_len
1826 int tl_len, err = target_len; in ntfs_translate_junction() local
1854 for (tl_len = sizeof("./") - 1; *link_path; ++link_path) { in ntfs_translate_junction()
1856 if (PATH_MAX - tl_len < sizeof("../")) { in ntfs_translate_junction()
1863 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1864 tl_len += sizeof("../") - 1; in ntfs_translate_junction()
1884 if (PATH_MAX - tl_len <= copy_len) { in ntfs_translate_junction()
1886 target_start, PATH_MAX - tl_len, copy_len); in ntfs_translate_junction()
1892 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1893 tl_len += copy_len; in ntfs_translate_junction()
1894 if (target_max <= tl_len) { in ntfs_translate_junction()
1896 translated, target_max, tl_len); in ntfs_translate_junction()
1901 err = tl_len; in ntfs_translate_junction()