Home
last modified time | relevance | path

Searched refs:tdb_off_t (Results 1 – 3 of 3) sorted by relevance

/external/e2fsprogs/lib/ext2fs/tdb/patches/
Dstatic-prototypes13 -int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset, int rw_type, int lck_type, int probe, si…
16 -int tdb_brlock_upgrade(struct tdb_context *tdb, tdb_off_t offset, size_t len);
17 -int tdb_write_lock_record(struct tdb_context *tdb, tdb_off_t off);
18 -int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off);
19 -int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
20 -int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
22 -int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
23 -tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec);
24 -int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
25 -int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
[all …]
Dstatic-functions9 -int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off, struct list_struct *rec)
10 +static int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off, struct list_struct *rec)
/external/e2fsprogs/lib/ext2fs/
Dtdb.c117 typedef u32 tdb_off_t; typedef
137 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off_t))
138 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
169 tdb_off_t next; /* offset of the next record in the list */
193 tdb_off_t rwlocks; /* obsolete - kept to detect old formats */
194 tdb_off_t recovery_start; /* offset of transaction recovery region */
195 tdb_off_t sequence_number; /* used when TDB_SEQNUM is set */
196 tdb_off_t reserved[29];
214 int (*tdb_read)(struct tdb_context *, tdb_off_t , void *, tdb_len_t , int );
215 int (*tdb_write)(struct tdb_context *, tdb_off_t, const void *, tdb_len_t);
[all …]