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