Lines Matching refs:tl_len
1830 int tl_len, err = target_len;
1858 for (tl_len = sizeof("./") - 1; *link_path; ++link_path) {
1860 if (PATH_MAX - tl_len < sizeof("../")) {
1867 strcpy(translated + tl_len, "../");
1868 tl_len += sizeof("../") - 1;
1888 if (PATH_MAX - tl_len <= copy_len) {
1890 target_start, PATH_MAX - tl_len, copy_len);
1896 strcpy(translated + tl_len, target_start);
1897 tl_len += copy_len;
1898 if (target_max <= tl_len) {
1900 translated, target_max, tl_len);
1905 err = tl_len;