Home | History | Annotate | Download | only in ext2fs

Lines Matching refs:tdb

24 #include "tdb.h"
62 TDB_CONTEXT *tdb;
89 if (icount->tdb)
90 tdb_close(icount->tdb);
240 icount->tdb = tdb_open(fn, num_inodes, TDB_NOLOCK | TDB_NOSYNC,
243 if (icount->tdb == NULL) {
439 if (icount->tdb) {
445 if (tdb_store(icount->tdb, key, data, TDB_REPLACE))
446 return tdb_error(icount->tdb) +
449 if (tdb_delete(icount->tdb, key))
450 return tdb_error(icount->tdb) +
476 if (icount->tdb) {
480 data = tdb_fetch(icount->tdb, key);
483 return tdb_error(icount->tdb) + EXT2_ET_TDB_SUCCESS;
832 "while creating icount using tdb");
913 printf("\nStandard icount run with tdb:\n");
915 printf("\nMultiple bitmap test with tdb:\n");