HomeSort by relevance Sort by last modified time
    Searched refs:tdb (Results 1 - 16 of 16) sorted by null

  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 3 # This file creates a stand-alone TDB based on a set of sources from
6 #BASE_DIR=/usr/projects/samba/samba-4.0.0tp4/source/lib/tdb
7 BASE_DIR=/usr/projects/samba/tdb
12 freelistcheck.c traverse.c dump.c tdb.c open.c"
15 echo "/*" > tdb.c
16 grep ^URL .svninfo >> tdb.c
17 grep "^Last Changed Rev" .svninfo | sed -e 's/Last Changed //' >> tdb.c
18 grep "^Last Changed Date" .svninfo >> tdb.c
19 echo "*/" >> tdb.c
21 cat $BASE_DIR/common/tdb_private.h >> tdb.
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 2 URL: svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/tdb/common
13 ** NOTE! The following LGPL license applies to the tdb
109 #include "tdb.h"
124 #define TDB_MAGIC_FOOD "TDB file\n"
139 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
146 /* NB assumes there is a local variable called "tdb" that is the
149 #define TDB_LOG(x) tdb->log.log_fn x
161 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
163 #define DOCONV() (tdb->flags & TDB_CONVERT
3816 struct tdb_context *tdb; local
4120 struct tdb_context *tdb; local
    [all...]
tdb.h 11 ** NOTE! The following LGPL license applies to the tdb
51 #define TDB_ERRCODE(code, ret) ((tdb->ecode = (code)), ret)
79 /* ext2fs tdb renames */
152 void tdb_set_max_dead(struct tdb_context *tdb, int max_dead);
154 int tdb_reopen(struct tdb_context *tdb);
156 void tdb_set_logging_function(struct tdb_context *tdb, const struct tdb_logging_context *log_ctx);
157 enum TDB_ERROR tdb_error(struct tdb_context *tdb);
158 const char *tdb_errorstr(struct tdb_context *tdb);
159 TDB_DATA tdb_fetch(struct tdb_context *tdb, TDB_DATA key);
160 int tdb_parse_record(struct tdb_context *tdb, TDB_DATA key
    [all...]
tdbtool.c 40 #include "tdb.h"
103 /* a tdb tool for manipulating a tdb database */
105 static TDB_CONTEXT *tdb; variable
169 " move key file : move a record to a destination tdb\n"
190 if (tdb) tdb_close(tdb);
191 tdb = tdb_open(tdbname, 0, TDB_CLEAR_IF_FIRST,
193 if (!tdb) {
200 if (tdb) tdb_close(tdb)
    [all...]
icount.c 24 #include "tdb.h"
62 TDB_CONTEXT *tdb; member in struct:ext2_icount
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)
    [all...]
  /external/clang/test/CodeGen/
builtins-systemz.c 12 void test_htm1(struct __htm_tdb *tdb, int reg, int *mem, uint64_t *mem64) {
19 __builtin_tbegin (tdb);
28 __builtin_tbegin_nofloat (tdb);
39 __builtin_tbegin_retry (tdb, 6);
52 __builtin_tbegin_retry_nofloat (tdb, 6);
115 void * const tdb = &tdb_struct; local
121 result = __TM_begin (tdb);
131 result = __TM_nesting_depth (tdb);
134 result = __TM_is_user_abort (tdb);
135 result = __TM_is_named_user_abort (tdb, &code)
    [all...]
  /external/python/cpython2/Lib/bsddb/test/
test_dbtables.py 48 self.tdb = dbtables.bsdTableDB(
52 self.tdb.close()
63 self.tdb.Drop(tabname)
66 self.tdb.CreateTable(tabname, [colname])
69 self.tdb.Insert(tabname, {colname: pickle.dumps(3.14159, 1)})
71 self.tdb.Insert(tabname, {colname: pickle.dumps(3.14159,
75 self.tdb._db_print()
77 values = self.tdb.Select(
113 self.tdb.Drop(tabname)
116 self.tdb.CreateTable(tabname, [col0, col1, col2]
    [all...]
  /external/clang/lib/Headers/
htmxlintrin.h 263 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
268 if (tdb->format != 1)
270 return tdb->nesting_depth;
278 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
280 if (tdb->format != 1)
283 return !!(tdb->abort_code >= _HTM_FIRST_USER_ABORT_CODE);
289 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
291 if (tdb->format != 1)
294 if (tdb->abort_code >= _HTM_FIRST_USER_ABORT_CODE)
296 *__code = tdb->abort_code - _HTM_FIRST_USER_ABORT_CODE
305 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
315 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
325 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
333 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
349 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
356 struct __htm_tdb *tdb = (struct __htm_tdb*)__tdb_ptr; local
    [all...]
htmintrin.h 190 #define __builtin_tbegin_retry(tdb, retry) \
191 (__builtin_constant_p(tdb == 0) && tdb == 0 ? \
193 __builtin_tbegin_retry_tdb(tdb, retry))
219 #define __builtin_tbegin_retry_nofloat(tdb, retry) \
220 (__builtin_constant_p(tdb == 0) && tdb == 0 ? \
222 __builtin_tbegin_retry_nofloat_tdb(tdb, retry))
  /external/selinux/restorecond/
restorecond.conf 3 /etc/samba/secrets.tdb
  /external/e2fsprogs/e2fsck/
dirinfo.c 17 #include <ext2fs/tdb.h>
26 TDB_CONTEXT *tdb; member in struct:dir_info_db
76 db->tdb = NULL;
83 db->tdb = tdb_open(db->tdb_fn, num_dirs, TDB_NOLOCK | TDB_NOSYNC,
110 if (db->tdb) {
112 printf("Note: using tdb!\n");
163 if (ctx->dir_info->tdb) {
217 if (db->tdb) {
225 data = tdb_fetch(db->tdb, key);
227 if (tdb_error(db->tdb) != TDB_ERR_NOEXIST
    [all...]
Makefile.in 438 $(top_srcdir)/lib/support/quotaio_tree.h $(top_srcdir)/lib/ext2fs/tdb.h
  /external/ppp/pppd/
Makefile.linux 61 # Uncomment the next line to enable the TDB database (enabled by default.)
62 # If you enable multilink, then TDB is automatically enabled also.
63 # Linux distributions: Please leave TDB ENABLED in your builds.
161 # Multilink implies the use of TDB
169 # TDB
172 PPPDSRCS += tdb.c spinlock.c
173 PPPDOBJS += tdb.o spinlock.o
174 HEADERS += tdb.h spinlock.h
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiPxe.h 948 UINT32 tdb; member in struct:pxe_device::__anon7199
    [all...]
  /external/e2fsprogs/debian/
rules 180 --disable-tdb --disable-debugfs
  /external/e2fsprogs/
configure     [all...]

Completed in 475 milliseconds