Lines Matching refs:linkpath
876 char *linkpath = NULL; in test_symlink_long2long() local
877 asprintf(&linkpath, "%s/%s", parent, linkname); in test_symlink_long2long()
882 int rc = symlink(targetpath, linkpath); in test_symlink_long2long()
891 T_QUIET; T_ASSERT_POSIX_SUCCESS((linklen = readlink(linkpath, buf, targetlen)), CTXSTR); in test_symlink_long2long()
898 free(linkpath); in test_symlink_long2long()
902 free(linkpath); in test_symlink_long2long()
1006 char *linkpath = NULL; in test_symlink_intermediate() local
1007 asprintf(&linkpath, "%s/%s", basepath, linkname); in test_symlink_intermediate()
1010 T_QUIET; T_ASSERT_EQ(strlen(linkpath) + 1 + leaflen, pathlen, NULL); in test_symlink_intermediate()
1012 int rc = symlink(parentname, linkpath); in test_symlink_intermediate()
1016 if (strlen(linkpath) < MAXPATHLEN) { in test_symlink_intermediate()
1022 if (strlen(linkpath) < MAXLONGPATHLEN) { in test_symlink_intermediate()
1030 asprintf(&linkedpath, "%s/%s", linkpath, lastslash + 1); in test_symlink_intermediate()
1032 free(linkpath); in test_symlink_intermediate()