• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/subversion/subversion/libsvn_wc/

Lines Matching defs:pool

48                          apr_pool_t *pool)
52 SVN_ERR(svn_io_check_path(path, &kind, pool));
61 svn_dirent_local_style(path, pool));
66 SVN_ERR(svn_io_make_dir_recursively(path, pool));
84 apr_pool_t *pool)
86 svn_wc_notify_t *ret = apr_pcalloc(pool, sizeof(*ret));
101 apr_pool_t *pool)
103 svn_wc_notify_t *ret = svn_wc_create_notify(".", action, pool);
119 apr_pool_t *pool)
121 svn_wc_notify_t *ret = apr_palloc(pool, sizeof(*ret));
126 ret->path = apr_pstrdup(pool, ret->path);
128 ret->mime_type = apr_pstrdup(pool, ret->mime_type);
130 ret->lock = svn_lock_dup(ret->lock, pool);
134 apr_pool_cleanup_register(pool, ret->err, err_cleanup,
138 ret->changelist_name = apr_pstrdup(pool, ret->changelist_name);
140 ret->merge_range = svn_merge_range_dup(ret->merge_range, pool);
142 ret->url = apr_pstrdup(pool, ret->url);
144 ret->path_prefix = apr_pstrdup(pool, ret->path_prefix);
146 ret->prop_name = apr_pstrdup(pool, ret->prop_name);
148 ret->rev_props = svn_prop_hash_dup(ret->rev_props, pool);
155 apr_pool_t *pool)
157 *item = apr_pcalloc(pool, sizeof(svn_wc_external_item2_t));
164 apr_pool_t *pool)
166 svn_wc_external_item2_t *new_item = apr_palloc(pool, sizeof(*new_item));
171 new_item->target_dir = apr_pstrdup(pool, new_item->target_dir);
174 new_item->url = apr_pstrdup(pool, new_item->url);
182 apr_pool_t *pool)
280 apr_pool_t *pool)
284 new_conflict = apr_pcalloc(pool, sizeof(*new_conflict));
290 new_conflict->local_abspath = apr_pstrdup(pool, conflict->local_abspath);
292 new_conflict->property_name = apr_pstrdup(pool, conflict->property_name);
294 new_conflict->mime_type = apr_pstrdup(pool, conflict->mime_type);
296 new_conflict->base_abspath = apr_pstrdup(pool, conflict->base_abspath);
298 new_conflict->their_abspath = apr_pstrdup(pool, conflict->their_abspath);
300 new_conflict->my_abspath = apr_pstrdup(pool, conflict->my_abspath);
302 new_conflict->merged_file = apr_pstrdup(pool, conflict->merged_file);
305 svn_wc_conflict_version_dup(conflict->src_left_version, pool);
308 svn_wc_conflict_version_dup(conflict->src_right_version, pool);
317 svn_string_dup(conflict->prop_value_base, pool);
320 svn_string_dup(conflict->prop_value_working, pool);
323 svn_string_dup(conflict->prop_value_incoming_old, pool);
326 svn_string_dup(conflict->prop_value_incoming_new, pool);