Lines Matching defs:funcs

62   svn_editor_cb_many_t funcs;
298 editor->funcs.cb_add_directory = callback;
308 editor->funcs.cb_add_file = callback;
318 editor->funcs.cb_add_symlink = callback;
328 editor->funcs.cb_add_absent = callback;
338 editor->funcs.cb_alter_directory = callback;
348 editor->funcs.cb_alter_file = callback;
358 editor->funcs.cb_alter_symlink = callback;
368 editor->funcs.cb_delete = callback;
378 editor->funcs.cb_copy = callback;
388 editor->funcs.cb_move = callback;
398 editor->funcs.cb_complete = callback;
408 editor->funcs.cb_abort = callback;
418 #define COPY_CALLBACK(NAME) if (many->NAME) editor->funcs.NAME = many->NAME
475 if (editor->funcs.cb_add_directory)
478 err = editor->funcs.cb_add_directory(editor->baton, relpath, children,
529 if (editor->funcs.cb_add_file)
532 err = editor->funcs.cb_add_file(editor->baton, relpath,
565 if (editor->funcs.cb_add_symlink)
568 err = editor->funcs.cb_add_symlink(editor->baton, relpath, target, props,
598 if (editor->funcs.cb_add_absent)
601 err = editor->funcs.cb_add_absent(editor->baton, relpath, kind,
633 if (editor->funcs.cb_alter_directory)
636 err = editor->funcs.cb_alter_directory(editor->baton,
693 if (editor->funcs.cb_alter_file)
696 err = editor->funcs.cb_alter_file(editor->baton,
728 if (editor->funcs.cb_alter_symlink)
731 err = editor->funcs.cb_alter_symlink(editor->baton,
761 if (editor->funcs.cb_delete)
764 err = editor->funcs.cb_delete(editor->baton, relpath, revision,
795 if (editor->funcs.cb_copy)
798 err = editor->funcs.cb_copy(editor->baton, src_relpath, src_revision,
833 if (editor->funcs.cb_move)
836 err = editor->funcs.cb_move(editor->baton, src_relpath, src_revision,
863 if (editor->funcs.cb_complete)
866 err = editor->funcs.cb_complete(editor->baton, editor->scratch_pool);
884 if (editor->funcs.cb_abort)
887 err = editor->funcs.cb_abort(editor->baton, editor->scratch_pool);