Lines Matching defs:eb

71          struct edit_baton *eb)
73 if (eb->root == NULL)
74 SVN_ERR(svn_fs_txn_root(&eb->root, eb->txn, eb->txn_pool));
75 *root = eb->root;
338 struct edit_baton *eb = baton;
345 SVN_ERR(get_root(&root, eb));
374 struct edit_baton *eb = baton;
378 SVN_ERR(get_root(&root, eb));
393 eb->cancel_func, eb->cancel_baton, scratch_pool));
409 struct edit_baton *eb = baton;
413 SVN_ERR(get_root(&root, eb));
469 struct edit_baton *eb = baton;
476 SVN_ERR(get_root(&root, eb));
496 struct edit_baton *eb = baton;
500 SVN_ERR(get_root(&root, eb));
507 eb->cancel_func, eb->cancel_baton, scratch_pool));
528 struct edit_baton *eb = baton;
530 UNUSED(eb); SVN__NOT_IMPLEMENTED();
541 struct edit_baton *eb = baton;
545 SVN_ERR(get_root(&root, eb));
563 struct edit_baton *eb = baton;
569 SVN_ERR(get_root(&root, eb));
600 struct edit_baton *eb = baton;
606 SVN_ERR(get_root(&root, eb));
643 struct edit_baton *eb = baton;
645 UNUSED(eb); SVN__NOT_IMPLEMENTED();
654 struct edit_baton *eb = baton;
659 eb->completed = TRUE;
661 if (eb->root != NULL)
663 svn_fs_close_root(eb->root);
664 eb->root = NULL;
676 struct edit_baton *eb = baton;
680 eb->completed = TRUE;
682 if (eb->root != NULL)
684 svn_fs_close_root(eb->root);
685 eb->root = NULL;
689 err = svn_fs_abort_txn(eb->txn, scratch_pool);
692 eb->txn = NULL;
721 struct edit_baton *eb = apr_pcalloc(result_pool, sizeof(*eb));
723 eb->txn = txn;
724 eb->cancel_func = cancel_func;
725 eb->cancel_baton = cancel_baton;
726 eb->txn_pool = result_pool;
728 SVN_ERR(svn_editor_create(editor, eb, cancel_func, cancel_baton,
784 struct edit_baton *eb = svn_editor_get_baton(editor);
789 if (eb->completed)
797 /* Clean up internal resources (eg. eb->root). This also allows the
808 eb->txn,
843 svn_fs_abort_txn(eb->txn, scratch_pool));
847 eb->txn = NULL;