Searched refs:copy_path (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_svn/
H A Deditorp.c211 const char *copy_path,
218 SVN_ERR_ASSERT((copy_path && SVN_IS_VALID_REVNUM(copy_rev))
219 || (!copy_path && !SVN_IS_VALID_REVNUM(copy_rev)));
222 token, copy_path, copy_rev));
279 const char *copy_path,
287 SVN_ERR_ASSERT((copy_path && SVN_IS_VALID_REVNUM(copy_rev))
288 || (!copy_path && !SVN_IS_VALID_REVNUM(copy_rev)));
291 token, copy_path, copy_rev));
589 const char *path, *copy_path;
597 &child_token, &copy_path,
209 ra_svn_add_dir(const char *path, void *parent_baton, const char *copy_path, svn_revnum_t copy_rev, apr_pool_t *pool, void **child_baton) argument
276 ra_svn_add_file(const char *path, void *parent_baton, const char *copy_path, svn_revnum_t copy_rev, apr_pool_t *pool, void **file_baton) argument
588 const char *path, *copy_path; local
705 const char *path, *copy_path; local
[all...]
H A Dmarshal.c1085 const char *copy_path,
1092 SVN_ERR(write_tuple_cstring_opt(conn, pool, copy_path));
2072 const char *copy_path,
2077 copy_path, copy_rev));
2143 const char *copy_path,
2148 copy_path, copy_rev));
3107 const char **copy_path,
3116 *copy_path = NULL;
3132 SVN_ERR(svn_ra_svn__read_cstring(sub_items, 0, copy_path));
1079 write_cmd_add_node(svn_ra_svn_conn_t *conn, apr_pool_t *pool, const char *path, const svn_string_t *parent_token, const svn_string_t *token, const char *copy_path, svn_revnum_t copy_rev) argument
2066 svn_ra_svn__write_cmd_add_dir(svn_ra_svn_conn_t *conn, apr_pool_t *pool, const char *path, const svn_string_t *parent_token, const svn_string_t *token, const char *copy_path, svn_revnum_t copy_rev) argument
2137 svn_ra_svn__write_cmd_add_file(svn_ra_svn_conn_t *conn, apr_pool_t *pool, const char *path, const svn_string_t *parent_token, const svn_string_t *token, const char *copy_path, svn_revnum_t copy_rev) argument
3103 svn_ra_svn__read_data_log_changed_entry(const svn_ra_svn__list_t *items, svn_string_t **cpath, const char **action, const char **copy_path, svn_revnum_t *copy_rev, const char **kind_str, apr_uint64_t *text_mods, apr_uint64_t *prop_mods) argument
H A Dclient.c1978 const char *copy_path, *action, *kind_str;
1987 &cpath, &action, &copy_path,
1996 if (copy_path && !svn_fspath__is_canonical(copy_path))
1997 copy_path = svn_fspath__canonicalize(copy_path, iterpool);
2001 change->copyfrom_path = copy_path;
1977 const char *copy_path, *action, *kind_str; local
/freebsd-11-stable/lib/libc/nls/
H A Dmsgcat.c385 char *copy_path, *copy_name, *copy_lang; local
443 copy_path = strdup(path);
448 if (copy_name == NULL || copy_path == NULL ||
452 free(copy_path);
466 np->path = copy_path;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Dcommit.c301 const char *copy_path,
321 if (copy_path && (! SVN_IS_VALID_REVNUM(copy_revision)))
326 if (copy_path)
351 copy_path = svn_path_uri_decode(copy_path, subpool);
352 fs_path = svn_cstring_skip_prefix(copy_path, eb->repos_url_decoded);
356 _("Source url '%s' is from different repository"), copy_path);
526 const char *copy_path,
531 return add_file_or_directory(path, parent_baton, copy_path, copy_revision,
598 const char *copy_path,
297 add_file_or_directory(const char *path, void *parent_baton, const char *copy_path, svn_revnum_t copy_revision, svn_boolean_t is_dir, apr_pool_t *pool, void **return_baton) argument
521 add_directory(const char *path, void *parent_baton, const char *copy_path, svn_revnum_t copy_revision, apr_pool_t *pool, void **child_baton) argument
593 add_file(const char *path, void *parent_baton, const char *copy_path, svn_revnum_t copy_revision, apr_pool_t *pool, void **file_baton) argument
[all...]
H A Drev_hunt.c385 const char *copy_path;
386 SVN_ERR(svn_fs_closest_copy(&copy_root, &copy_path, root,
457 const char *copy_path;
463 SVN_ERR(svn_fs_closest_copy(&copy_root, &copy_path, root,
588 const char *copy_path, *copy_src_path, *remainder;
602 SVN_ERR(svn_fs_closest_copy(&copy_root, &copy_path, root, path, pool));
620 copy_root, copy_path, pool));
621 remainder = svn_fspath__skip_ancestor(copy_path, path);
384 const char *copy_path; local
456 const char *copy_path; local
587 const char *copy_path, *copy_src_path, *remainder; local
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Dcommit.c136 const char *copy_path; member in struct:dir_context_t
170 const char *copy_path; member in struct:file_context_t
1522 dir->copy_path = apr_pstrdup(dir->pool, copyfrom_path);
1551 if (!dir->copy_path)
1564 status = apr_uri_parse(dir->pool, dir->copy_path, &uri);
1569 dir->copy_path);
1707 const char *copy_path,
1726 new_file->copy_path = apr_pstrdup(new_file->pool, copy_path);
1759 if (copy_path)
1703 add_file(const char *path, void *parent_baton, const char *copy_path, svn_revnum_t copy_revision, apr_pool_t *file_pool, void **file_baton) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_ra_svn_private.h462 * Associate the new directory with the given @a token. * @a copy_path
472 const char *copy_path,
520 * Associate the new file with the given @a token. * @a copy_path and
530 const char *copy_path,
1047 const char **copy_path,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dbranch_compat.c780 const char *copy_path local
783 if (copy_path)
786 = svn_hash_gets(changes, copy_path);
788 = svn_relpath_skip_ancestor(copy_path, repos_relpath);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dtree.c716 const char *copy_path = NULL;
760 SVN_ERR(get_copy_inheritance(&inherit, &copy_path,
764 parent_path->copy_src_path = apr_pstrdup(pool, copy_path);
4875 const char *copy_path, *copy_src_path, *remainder;
4881 SVN_ERR(base_closest_copy(&copy_root, &copy_path, root, path, pool));
4903 copy_root, copy_path, pool));
4904 remainder = svn_fspath__skip_ancestor(copy_path, path);
711 const char *copy_path = NULL; local
4859 const char *copy_path, *copy_src_path, *remainder; local
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtree.c1111 const char *copy_path = NULL;
1165 SVN_ERR(get_copy_inheritance(&inherit, &copy_path, fs,
1168 parent_path->copy_src_path = apr_pstrdup(pool, copy_path);
3720 const char *copy_path, *copy_src_path, *remainder_path;
3726 SVN_ERR(fs_closest_copy(&copy_root, &copy_path, root, path, pool));
3748 copy_root, copy_path, pool));
3749 remainder_path = svn_fspath__skip_ancestor(copy_path, path);
1106 const char *copy_path = NULL; local
3707 const char *copy_path, *copy_src_path, *remainder_path; local
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_zip.c192 static void copy_path(struct archive_entry *, unsigned char *);
831 copy_path(zip->entry, e);
1474 copy_path(struct archive_entry *entry, unsigned char *p) function
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs/
H A Dfs-loader.c1747 const char *copy_path;
1756 SVN_ERR(svn_fs_closest_copy(&copy_root, &copy_path, root, parent_path,
1768 copy_root, copy_path, scratch_pool));
1772 rel_path = svn_fspath__skip_ancestor(copy_path, path);
1741 const char *copy_path; local

Completed in 148 milliseconds