Lines Matching defs:rb

260   struct reverse_tree_baton_t *rb = processor->baton;
262 if (rb->prefix_relpath)
263 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
265 SVN_ERR(rb->processor->dir_opened(new_dir_baton, skip, skip_children,
270 rb->processor,
285 struct reverse_tree_baton_t *rb = processor->baton;
287 if (rb->prefix_relpath)
288 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
290 SVN_ERR(rb->processor->dir_deleted(relpath,
294 rb->processor,
308 struct reverse_tree_baton_t *rb = processor->baton;
310 if (rb->prefix_relpath)
311 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
313 SVN_ERR(rb->processor->dir_added(relpath,
319 rb->processor,
335 struct reverse_tree_baton_t *rb = processor->baton;
338 if (rb->prefix_relpath)
339 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
348 SVN_ERR(rb->processor->dir_changed(relpath,
355 rb->processor,
368 struct reverse_tree_baton_t *rb = processor->baton;
370 if (rb->prefix_relpath)
371 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
373 SVN_ERR(rb->processor->dir_closed(relpath,
377 rb->processor,
394 struct reverse_tree_baton_t *rb = processor->baton;
396 if (rb->prefix_relpath)
397 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
399 SVN_ERR(rb->processor->file_opened(new_file_baton,
406 rb->processor,
424 struct reverse_tree_baton_t *rb = processor->baton;
426 if (rb->prefix_relpath)
427 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
429 SVN_ERR(rb->processor->file_deleted(relpath,
434 rb->processor,
448 struct reverse_tree_baton_t *rb = processor->baton;
450 if (rb->prefix_relpath)
451 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
453 SVN_ERR(rb->processor->file_added(relpath,
461 rb->processor,
480 struct reverse_tree_baton_t *rb = processor->baton;
483 if (rb->prefix_relpath)
484 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
493 SVN_ERR(rb->processor->file_changed(relpath,
503 rb->processor,
516 struct reverse_tree_baton_t *rb = processor->baton;
518 if (rb->prefix_relpath)
519 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
521 SVN_ERR(rb->processor->file_closed(relpath,
525 rb->processor,
537 struct reverse_tree_baton_t *rb = processor->baton;
539 if (rb->prefix_relpath)
540 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
542 SVN_ERR(rb->processor->node_absent(relpath,
544 rb->processor,
555 struct reverse_tree_baton_t *rb;
558 rb = apr_pcalloc(result_pool, sizeof(*rb));
559 rb->processor = processor;
561 rb->prefix_relpath = apr_pstrdup(result_pool, prefix_relpath);
563 reverse = svn_diff__tree_processor_create(rb, result_pool);