Sort the signature files
[samba.git] / lib / tdb / tdb.signatures
1 const char *tdb_errorstr (struct tdb_context *);
2 const char *tdb_name (struct tdb_context *);
3 enum TDB_ERROR tdb_error (struct tdb_context *);
4 int tdb_append (struct tdb_context *, TDB_DATA, TDB_DATA);
5 int tdb_chainlock_mark (struct tdb_context *, TDB_DATA);
6 int tdb_chainlock_nonblock (struct tdb_context *, TDB_DATA);
7 int tdb_chainlock_read (struct tdb_context *, TDB_DATA);
8 int tdb_chainlock (struct tdb_context *, TDB_DATA);
9 int tdb_chainlock_unmark (struct tdb_context *, TDB_DATA);
10 int tdb_chainunlock_read (struct tdb_context *, TDB_DATA);
11 int tdb_chainunlock (struct tdb_context *, TDB_DATA);
12 int tdb_close (struct tdb_context *);
13 int tdb_delete (struct tdb_context *, TDB_DATA);
14 int tdb_exists (struct tdb_context *, TDB_DATA);
15 int tdb_fd (struct tdb_context *);
16 int tdb_freelist_size (struct tdb_context *);
17 int tdb_get_flags (struct tdb_context *);
18 int tdb_get_seqnum (struct tdb_context *);
19 int tdb_hash_size (struct tdb_context *);
20 int tdb_lockall_mark (struct tdb_context *);
21 int tdb_lockall_nonblock (struct tdb_context *);
22 int tdb_lockall_read_nonblock (struct tdb_context *);
23 int tdb_lockall_read (struct tdb_context *);
24 int tdb_lockall (struct tdb_context *);
25 int tdb_lockall_unmark (struct tdb_context *);
26 int tdb_parse_record (struct tdb_context *, TDB_DATA, int (*) (TDB_DATA, TDB_DATA, void *), void *);
27 int tdb_printfreelist (struct tdb_context *);
28 int tdb_reopen_all (int);
29 int tdb_reopen (struct tdb_context *);
30 int tdb_repack (struct tdb_context *);
31 int tdb_store (struct tdb_context *, TDB_DATA, TDB_DATA, int);
32 int tdb_transaction_cancel (struct tdb_context *);
33 int tdb_transaction_commit (struct tdb_context *);
34 int tdb_transaction_prepare_commit (struct tdb_context *);
35 int tdb_transaction_recover (struct tdb_context *);
36 int tdb_transaction_start (struct tdb_context *);
37 int tdb_traverse_read (struct tdb_context *, tdb_traverse_func, void *);
38 int tdb_traverse (struct tdb_context *, tdb_traverse_func, void *);
39 int tdb_unlockall_read (struct tdb_context *);
40 int tdb_unlockall (struct tdb_context *);
41 int tdb_validate_freelist (struct tdb_context *, int *);
42 int tdb_wipe_all (struct tdb_context *);
43 size_t tdb_map_size (struct tdb_context *);
44 struct tdb_context *tdb_open (const char *, int, int, int, mode_t);
45 struct tdb_context *tdb_open_ex (const char *, int, int, int, mode_t, const struct tdb_logging_context *, tdb_hash_func);
46 TDB_DATA tdb_fetch (struct tdb_context *, TDB_DATA);
47 TDB_DATA tdb_firstkey (struct tdb_context *);
48 TDB_DATA tdb_nextkey (struct tdb_context *, TDB_DATA);
49 tdb_log_func tdb_log_fn (struct tdb_context *);
50 void tdb_add_flags (struct tdb_context *, unsigned int);
51 void tdb_dump_all (struct tdb_context *);
52 void tdb_enable_seqnum (struct tdb_context *);
53 void *tdb_get_logging_private (struct tdb_context *);
54 void tdb_increment_seqnum_nonblock (struct tdb_context *);
55 void tdb_remove_flags (struct tdb_context *, unsigned int);
56 void tdb_setalarm_sigptr (struct tdb_context *, volatile sig_atomic_t *);
57 void tdb_set_logging_function (struct tdb_context *, const struct tdb_logging_context *);
58 void tdb_set_max_dead (struct tdb_context *, int);
59 TDB_DATA tdb_null;