Home
last modified time | relevance | path

Searched refs:prop_changes (Results 1 – 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/subversion/subversion/libsvn_diff/
HDdiff_tree.c94 const apr_array_header_t *prop_changes, in default_dir_changed() argument
175 const apr_array_header_t *prop_changes, in default_file_changed() argument
310 const apr_array_header_t *prop_changes, in reverse_dir_changed() argument
318 if (prop_changes) in reverse_dir_changed()
440 const apr_array_header_t *prop_changes, in reverse_file_changed() argument
448 if (prop_changes) in reverse_file_changed()
631 const apr_array_header_t *prop_changes, in filter_dir_changed() argument
646 prop_changes, in filter_dir_changed()
774 const apr_array_header_t *prop_changes, in filter_file_changed() argument
792 prop_changes, in filter_file_changed()
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_ra_serf/
HDcommit.c89 apr_hash_t *prop_changes; member
140 apr_hash_t *prop_changes; member
192 apr_hash_t *prop_changes; member
765 for (hi = apr_hash_first(scratch_pool, ctx->prop_changes); in create_proppatch_body()
797 for (hi = apr_hash_first(scratch_pool, ctx->prop_changes); in create_proppatch_body()
1295 dir->prop_changes = apr_hash_make(dir->pool); in open_root()
1343 dir->prop_changes = apr_hash_make(dir->pool); in open_root()
1366 proppatch_ctx->prop_changes = apr_hash_make(proppatch_ctx->pool); in open_root()
1378 svn_hash_sets(proppatch_ctx->prop_changes, prop->name, prop); in open_root()
1523 dir->prop_changes = apr_hash_make(dir->pool); in add_directory()
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_client/
HDdiff_summarize.c141 const apr_array_header_t *prop_changes, in diff_dir_changed() argument
224 const apr_array_header_t *prop_changes, in diff_file_changed() argument
234 props_changed(prop_changes, scratch_pool), in diff_file_changed()
HDdiff.c1133 const apr_array_header_t *prop_changes, in diff_file_changed() argument
1151 if (prop_changes->nelts > 0) in diff_file_changed()
1154 right_source->revision, prop_changes, in diff_file_changed()
1181 apr_array_header_t *prop_changes; in diff_file_added() local
1219 SVN_ERR(svn_prop_diffs(&prop_changes, right_props, left_props, scratch_pool)); in diff_file_added()
1247 if (prop_changes->nelts > 0) in diff_file_added()
1252 prop_changes, in diff_file_added()
1306 apr_array_header_t *prop_changes; in diff_file_deleted() local
1308 SVN_ERR(svn_prop_diffs(&prop_changes, apr_hash_make(scratch_pool), in diff_file_deleted()
1314 prop_changes, in diff_file_deleted()
[all …]
HDdiff_local.c485 apr_array_header_t *prop_changes; in do_file_diff() local
490 SVN_ERR(svn_prop_diffs(&prop_changes, right_props, left_props, in do_file_diff()
493 if (!same || prop_changes->nelts > 0) in do_file_diff()
503 prop_changes, in do_file_diff()
HDshelf2.c1404 apr_array_header_t *prop_changes; in wc_file_merge() local
1412 SVN_ERR(svn_prop_diffs(&prop_changes, right_props, left_props, scratch_pool)); in wc_file_merge()
1425 left_props, prop_changes, in wc_file_merge()
1445 apr_array_header_t *prop_changes; in wc_dir_props_merge() local
1448 SVN_ERR(svn_prop_diffs(&prop_changes, right_props, left_props, scratch_pool)); in wc_dir_props_merge()
1453 left_props, prop_changes, in wc_dir_props_merge()
1668 apr_array_header_t *prop_changes; in file_changed() local
1673 SVN_ERR(svn_prop_diffs(&prop_changes, right_props, left_props, in file_changed()
1680 TRUE /*file_modified*/, prop_changes, in file_changed()
HDcommit_util.c1718 apr_array_header_t *prop_changes = item->outgoing_prop_changes; in do_item_commit() local
1720 for (ctr = 0; ctr < prop_changes->nelts; ctr++) in do_item_commit()
1722 prop = APR_ARRAY_IDX(prop_changes, ctr, svn_prop_t *); in do_item_commit()
HDmerge.c2029 const apr_array_header_t *prop_changes, in merge_file_changed() argument
2072 SVN_ERR(prepare_merge_props_changed(&prop_changes, local_abspath, in merge_file_changed()
2073 prop_changes, merge_b, in merge_file_changed()
2082 if ((merge_b->record_only || !left_file) && prop_changes->nelts) in merge_file_changed()
2086 left_props, prop_changes, in merge_file_changed()
2149 left_props, prop_changes, in merge_file_changed()
2336 apr_array_header_t *prop_changes; in properties_same_p() local
2340 SVN_ERR(svn_prop_diffs(&prop_changes, props1, props2, scratch_pool)); in properties_same_p()
2342 for (i = 0; i < prop_changes->nelts; i++) in properties_same_p()
2344 const char *pname = APR_ARRAY_IDX(prop_changes, i, svn_prop_t).name; in properties_same_p()
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/
HDdiff_editor.c408 apr_array_header_t *prop_changes; in svn_wc__diff_base_working_diff() local
520 SVN_ERR(svn_prop_diffs(&prop_changes, local_props, base_props, scratch_pool)); in svn_wc__diff_base_working_diff()
522 if (prop_changes->nelts || !files_same) in svn_wc__diff_base_working_diff()
532 prop_changes, in svn_wc__diff_base_working_diff()
1867 apr_array_header_t *prop_changes; in close_directory() local
1880 SVN_ERR(svn_prop_diffs(&prop_changes, local_props, repos_props, in close_directory()
1887 if (prop_changes->nelts) in close_directory()
1894 prop_changes, in close_directory()
2239 apr_array_header_t *prop_changes; in close_file() local
2273 SVN_ERR(svn_prop_diffs(&prop_changes, local_props, repos_props, in close_file()
[all …]
/freebsd-13-stable/contrib/subversion/subversion/include/private/
HDsvn_diff_tree.h215 const apr_array_header_t *prop_changes,
282 const apr_array_header_t *prop_changes,
HDsvn_subr_private.h448 const apr_array_header_t *prop_changes,
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
HDproperties.c325 const apr_array_header_t *prop_changes, in svn_prop__patch() argument
331 for (i = 0; i < prop_changes->nelts; i++) in svn_prop__patch()
333 const svn_prop_t *p = &APR_ARRAY_IDX(prop_changes, i, svn_prop_t); in svn_prop__patch()
/freebsd-13-stable/contrib/subversion/subversion/svnrdump/
HDload_editor.c180 apr_hash_t *prop_changes; member
378 nb->prop_changes = apr_hash_make(rb->pool); in new_node_record()
641 svn_hash_sets(nb->prop_changes, prop->name, prop); in set_node_property()
659 svn_hash_sets(nb->prop_changes, prop->name, prop); in delete_node_property()
776 for (hi = apr_hash_first(pool, nb->prop_changes); in close_node()