Lines Matching defs:eb

574   struct edit_baton *eb = edit_baton;
577 *(eb->target_revision) = target_revision;
590 struct edit_baton *eb = edit_baton;
593 SVN_ERR(open_root_internal(eb->root_path, eb->force,
594 eb->notify_func, eb->notify_baton, pool));
597 db->path = eb->root_path;
598 db->edit_baton = eb;
616 struct edit_baton *eb = pb->edit_baton;
617 const char *full_path = svn_dirent_join(eb->root_path, path, pool);
627 else if (! (kind == svn_node_dir && eb->force))
632 if (eb->notify_func)
638 (*eb->notify_func)(eb->notify_baton, notify, pool);
643 db->edit_baton = eb;
660 struct edit_baton *eb = pb->edit_baton;
662 const char *full_path = svn_dirent_join(eb->root_path, path, pool);
666 const char *full_url = svn_path_url_add_component2(eb->root_url,
670 fb->edit_baton = eb;
673 fb->repos_root_url = eb->repos_root_url;
782 struct edit_baton *eb = db->edit_baton;
785 SVN_ERR(add_externals(eb->externals, db->path, value));
798 struct edit_baton *eb = fb->edit_baton;
834 eb->native_eol));
848 eb->cancel_func, eb->cancel_baton,
905 struct edit_baton *eb,
924 eb,
945 struct edit_baton *eb = baton;
946 const char *full_path = svn_dirent_join(eb->root_path, relpath,
950 const char *full_url = svn_path_url_add_component2(eb->root_url,
968 if ( !eb->ignore_keywords && (val = svn_hash_gets(props, SVN_PROP_KEYWORDS)) )
993 SVN_ERR(svn_stream_copy3(contents, tmp_stream, eb->cancel_func,
994 eb->cancel_baton, scratch_pool));
1021 eb->native_eol));
1028 eb->repos_root_url,
1038 SVN_ERR(svn_stream_copy3(contents, tmp_stream, eb->cancel_func,
1039 eb->cancel_baton, scratch_pool));
1051 if (eb->notify_func)
1057 (*eb->notify_func)(eb->notify_baton, notify, scratch_pool);
1071 struct edit_baton *eb = baton;
1073 const char *full_path = svn_dirent_join(eb->root_path, relpath,
1084 else if (! (kind == svn_node_dir && eb->force))
1090 SVN_ERR(add_externals(eb->externals, full_path, val));
1092 if (eb->notify_func)
1098 (*eb->notify_func)(eb->notify_baton, notify, scratch_pool);
1109 struct edit_baton *eb = baton;
1111 *eb->target_revision = target_revision;
1119 struct edit_baton *eb,
1129 exb->baton = eb;
1132 SVN_ERR(svn_editor_create(&editor, eb, ctx->cancel_func, ctx->cancel_baton,
1143 fetch_props_func, eb,
1144 fetch_base_func, eb,
1148 SVN_ERR(open_root_internal(eb->root_path, eb->force, eb->notify_func,
1149 eb->notify_baton, scratch_pool));
1157 struct edit_baton *eb,
1174 eb->root_path = to_path;
1180 eb->root_path = to_path;
1204 SVN_ERR(add_file_ev2(eb, "", NULL, tmp_stream, props, SVN_INVALID_REVNUM,
1213 struct edit_baton *eb,
1231 eb->root_path = to_path;
1237 eb->root_path = to_path;
1258 fb->edit_baton = eb;
1259 fb->path = eb->root_path;
1260 fb->url = eb->root_url;
1262 fb->repos_root_url = eb->repos_root_url;
1297 struct edit_baton *eb,
1315 SVN_ERR(get_editor_ev1(&export_editor, &edit_baton, eb, ctx,
1318 SVN_ERR(get_editor_ev2(&export_editor, &edit_baton, eb, ctx,
1361 SVN_ERR(svn_client__export_externals(eb->externals,
1363 to_abspath, eb->repos_root_url,
1410 struct edit_baton *eb = apr_pcalloc(pool, sizeof(*eb));
1418 SVN_ERR(svn_ra_get_repos_root2(ra_session, &eb->repos_root_url, pool));
1419 eb->root_path = to_path;
1420 eb->root_url = loc->url;
1421 eb->force = overwrite;
1422 eb->target_revision = &edit_revision;
1423 eb->externals = apr_hash_make(pool);
1424 eb->native_eol = native_eol;
1425 eb->ignore_keywords = ignore_keywords;
1426 eb->cancel_func = ctx->cancel_func;
1427 eb->cancel_baton = ctx->cancel_baton;
1428 eb->notify_func = ctx->notify_func2;
1429 eb->notify_baton = ctx->notify_baton2;
1436 SVN_ERR(export_file(from_path_or_url, to_path, eb, loc, ra_session,
1439 SVN_ERR(export_file_ev2(from_path_or_url, to_path, eb, loc,
1445 eb, loc, ra_session, overwrite,