Lines Matching refs:tl_len
1823 int tl_len, err = target_len; in ntfs_translate_junction() local
1851 for (tl_len = sizeof("./") - 1; *link_path; ++link_path) { in ntfs_translate_junction()
1853 if (PATH_MAX - tl_len < sizeof("../")) { in ntfs_translate_junction()
1860 strcpy(translated + tl_len, "../"); in ntfs_translate_junction()
1861 tl_len += sizeof("../") - 1; in ntfs_translate_junction()
1881 if (PATH_MAX - tl_len <= copy_len) { in ntfs_translate_junction()
1883 target_start, PATH_MAX - tl_len, copy_len); in ntfs_translate_junction()
1889 strcpy(translated + tl_len, target_start); in ntfs_translate_junction()
1890 tl_len += copy_len; in ntfs_translate_junction()
1891 if (target_max <= tl_len) { in ntfs_translate_junction()
1893 translated, target_max, tl_len); in ntfs_translate_junction()
1898 err = tl_len; in ntfs_translate_junction()