HomeSort by: relevance | last modified time | path
    Searched defs:linkpath (Results 1 - 4 of 4) sorted by relevancy

  /src/tests/lib/libc/stdio/
t_fopen.c 459 static char linkpath[] = "symlink"; variable
473 ATF_CHECK(symlink("/dev/null", linkpath) != -1);
478 f = fopen(linkpath, mode[j]);
486 atf_tc_fail_nonfatal("opened %s as %s", linkpath,
491 strerror(errno), linkpath, mode[j]);
494 ATF_REQUIRE(unlink(linkpath) == 0);
499 (void)unlink(linkpath);
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_pax.c 589 const char *path = NULL, *linkpath = NULL; local
923 linkpath = hardlink;
925 if (linkpath == NULL) {
926 r = get_entry_symlink(a, entry_main, &linkpath,
932 r = get_entry_symlink(a, entry_main, &linkpath,
940 "Can't translate linkname '%s' to %s", linkpath,
957 linkpath = hardlink;
1030 if (linkpath != NULL) {
1032 * 'linkpath' to pax extended attrs. */
1033 if (linkpath_length > 100 || has_non_ASCII(linkpath)) {
    [all...]
archive_read_support_format_tar.c 1185 struct archive_string linkpath; local
1186 archive_string_init(&linkpath);
1187 err = read_body_to_string(a, tar, &linkpath, h, unconsumed);
1189 archive_entry_set_link(entry, linkpath.s);
1191 archive_string_free(&linkpath);
1435 * TODO: If the linkpath came from Pax extension header, then
1445 struct archive_string linkpath; local
1446 archive_string_init(&linkpath);
1447 archive_strncpy(&linkpath,
1449 if (archive_entry_copy_hardlink_l(entry, linkpath.s
1523 struct archive_string linkpath; local
    [all...]
archive_write_set_format_7zip.c 1680 const char* linkpath; local
1681 linkpath = archive_entry_symlink_utf8(entry);
1682 if (linkpath == NULL) {
1689 file->size = strlen(linkpath);

Completed in 36 milliseconds