Searched refs:prop_patch (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/subversion/subversion/libsvn_diff/ |
| H A D | parse-diff.c | 1890 svn_prop_patch_t *prop_patch; in add_property_hunk() local 1892 prop_patch = svn_hash_gets(patch->prop_patches, prop_name); in add_property_hunk() 1894 if (! prop_patch) in add_property_hunk() 1896 prop_patch = apr_palloc(result_pool, sizeof(svn_prop_patch_t)); in add_property_hunk() 1897 prop_patch->name = prop_name; in add_property_hunk() 1898 prop_patch->operation = operation; in add_property_hunk() 1899 prop_patch->hunks = apr_array_make(result_pool, 1, in add_property_hunk() 1902 svn_hash_sets(patch->prop_patches, prop_name, prop_patch); in add_property_hunk() 1905 APR_ARRAY_PUSH(prop_patch->hunks, svn_diff_hunk_t *) = hunk; in add_property_hunk()
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_client/ |
| H A D | patch.c | 1255 svn_prop_patch_t *prop_patch = apr_hash_this_val(hi); in init_patch_target() local 1260 prop_patch->operation, in init_patch_target() 1386 svn_prop_patch_t *prop_patch = apr_hash_this_val(hi); in init_patch_target() local 1388 if (prop_patch->operation != svn_diff_op_added) in init_patch_target() 2745 svn_prop_patch_t *prop_patch; in apply_one_patch() local 2750 prop_patch = apr_hash_this_val(hash_index); in apply_one_patch() 2753 target->is_special = (prop_patch->operation != svn_diff_op_deleted); in apply_one_patch() 2758 for (i = 0; i < prop_patch->hunks->nelts; i++) in apply_one_patch() 2769 hunk = APR_ARRAY_IDX(prop_patch->hunks, i, svn_diff_hunk_t *); in apply_one_patch()
|