~reprepro-alioth/reprepro/3.0

« back to all changes in this revision

Viewing changes to updates.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-02-15 17:32:25 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090215173225-ktmipbxtqg06xsqp
Tags: 3.8.2-1ubuntu1
* Merge from Debian unstable (LP: #329830). Remaining Ubuntu changes:
  + debian/control: libdb-dev transition
  + debian/rules: added some magic to accept bdb 4.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
void updates_freepatterns(/*@only@*/struct update_pattern *p);
30
30
void updates_freeupdatedistributions(/*@only@*/struct update_distribution *d);
31
31
 
32
 
retvalue updates_calcindices(struct update_pattern *, struct distribution *, bool fast, /*@out@*/struct update_distribution **);
33
 
 
34
 
/* remove all files ${listdir}/${distribution}_* that will not be needed. */
35
 
retvalue updates_clearlists(struct update_distribution *distributions);
36
 
 
37
 
retvalue updates_update(struct database *, struct update_distribution *distributions, bool nolistsdownload, bool skipold, struct strlist *dereferencedfilekeys, enum spacecheckmode mode, off_t reserveddb, off_t reservedother);
38
 
retvalue updates_iteratedupdate(struct database *, struct update_distribution *, bool nolistsdownload, bool skipold, struct strlist *dereferencedfilekeys, enum exportwhen, enum spacecheckmode, off_t reserveddb, off_t reservedother);
39
 
retvalue updates_checkupdate(struct database *, struct update_distribution *distributions, bool nolistsdownload, bool skipold);
40
 
retvalue updates_predelete(struct database *, struct update_distribution *distributions, bool nolistsdownload, bool skipold, struct strlist *dereferencedfilekeys);
41
 
 
 
32
retvalue updates_calcindices(struct update_pattern *, struct distribution *, /*@out@*/struct update_distribution **);
 
33
 
 
34
retvalue updates_update(struct database *, struct update_distribution *, bool nolistsdownload, bool skipold, enum spacecheckmode mode, off_t reserveddb, off_t reservedother);
 
35
retvalue updates_checkupdate(struct database *, struct update_distribution *, bool nolistsdownload, bool skipold);
 
36
retvalue updates_dumpupdate(struct database *, struct update_distribution *, bool nolistsdownload, bool skipold);
 
37
retvalue updates_predelete(struct database *, struct update_distribution *, bool nolistsdownload, bool skipold);
 
38
 
 
39
retvalue updates_cleanlists(const struct distribution *, const struct update_pattern *);
42
40
#endif