Home
last modified time | relevance | path

Searched refs:prop_patch (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/subversion/subversion/libsvn_diff/
H A Dparse-diff.c1930 svn_prop_patch_t *prop_patch; in add_property_hunk() local
1932 prop_patch = svn_hash_gets(patch->prop_patches, prop_name); in add_property_hunk()
1934 if (! prop_patch) in add_property_hunk()
1936 prop_patch = apr_palloc(result_pool, sizeof(svn_prop_patch_t)); in add_property_hunk()
1937 prop_patch->name = prop_name; in add_property_hunk()
1938 prop_patch->operation = operation; in add_property_hunk()
1939 prop_patch->hunks = apr_array_make(result_pool, 1, in add_property_hunk()
1942 svn_hash_sets(patch->prop_patches, prop_name, prop_patch); in add_property_hunk()
1945 APR_ARRAY_PUSH(prop_patch->hunks, svn_diff_hunk_t *) = hunk; in add_property_hunk()
/freebsd-13.1/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c1260 svn_prop_patch_t *prop_patch = apr_hash_this_val(hi); in init_patch_target() local
1265 prop_patch->operation, in init_patch_target()
1391 svn_prop_patch_t *prop_patch = apr_hash_this_val(hi); in init_patch_target() local
1393 if (prop_patch->operation != svn_diff_op_added) in init_patch_target()
2750 svn_prop_patch_t *prop_patch; in apply_one_patch() local
2755 prop_patch = apr_hash_this_val(hash_index); in apply_one_patch()
2758 target->is_special = (prop_patch->operation != svn_diff_op_deleted); in apply_one_patch()
2763 for (i = 0; i < prop_patch->hunks->nelts; i++) in apply_one_patch()
2774 hunk = APR_ARRAY_IDX(prop_patch->hunks, i, svn_diff_hunk_t *); in apply_one_patch()