Lines Matching defs:eb

69          struct edit_baton *eb)
71 if (eb->root == NULL)
72 SVN_ERR(svn_fs_txn_root(&eb->root, eb->txn, eb->txn_pool));
73 *root = eb->root;
331 struct edit_baton *eb = baton;
338 SVN_ERR(get_root(&root, eb));
367 struct edit_baton *eb = baton;
371 SVN_ERR(get_root(&root, eb));
386 eb->cancel_func, eb->cancel_baton, scratch_pool));
402 struct edit_baton *eb = baton;
406 SVN_ERR(get_root(&root, eb));
462 struct edit_baton *eb = baton;
469 SVN_ERR(get_root(&root, eb));
489 struct edit_baton *eb = baton;
493 SVN_ERR(get_root(&root, eb));
500 eb->cancel_func, eb->cancel_baton, scratch_pool));
521 struct edit_baton *eb = baton;
523 SVN_UNUSED(eb);
535 struct edit_baton *eb = baton;
539 SVN_ERR(get_root(&root, eb));
557 struct edit_baton *eb = baton;
563 SVN_ERR(get_root(&root, eb));
594 struct edit_baton *eb = baton;
600 SVN_ERR(get_root(&root, eb));
635 struct edit_baton *eb = baton;
640 eb->completed = TRUE;
642 if (eb->root != NULL)
644 svn_fs_close_root(eb->root);
645 eb->root = NULL;
657 struct edit_baton *eb = baton;
661 eb->completed = TRUE;
663 if (eb->root != NULL)
665 svn_fs_close_root(eb->root);
666 eb->root = NULL;
670 err = svn_fs_abort_txn(eb->txn, scratch_pool);
673 eb->txn = NULL;
701 struct edit_baton *eb = apr_pcalloc(result_pool, sizeof(*eb));
703 eb->txn = txn;
704 eb->cancel_func = cancel_func;
705 eb->cancel_baton = cancel_baton;
706 eb->txn_pool = result_pool;
708 SVN_ERR(svn_editor_create(editor, eb, cancel_func, cancel_baton,
764 struct edit_baton *eb = svn_editor_get_baton(editor);
769 if (eb->completed)
777 /* Clean up internal resources (eg. eb->root). This also allows the
788 eb->txn,
823 svn_fs_abort_txn(eb->txn, scratch_pool));
827 eb->txn = NULL;