Searched refs:DB (Results 1 - 25 of 49) sorted by relevance

12

/barrelfish-master/lib/libc/db/recno/
H A Dextern.h35 int __rec_close(DB *);
36 int __rec_delete(const DB *, const DBT *, u_int);
38 int __rec_fd(const DB *);
42 int __rec_get(const DB *, const DBT *, DBT *, u_int);
44 int __rec_put(const DB *dbp, DBT *, const DBT *, u_int);
47 int __rec_seq(const DB *, DBT *, DBT *, u_int);
48 int __rec_sync(const DB *, u_int);
H A Drec_close.c60 __rec_close(DB *dbp)
107 __rec_sync(const DB *dbp, u_int flags)
H A Drec_seq.c60 __rec_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
H A Drec_open.c55 DB *
61 DB *dbp;
220 __rec_fd(const DB *dbp)
/barrelfish-master/lib/libc/db/btree/
H A Dextern.h33 int __bt_close(DB *);
38 int __bt_delete(const DB *, const DBT *, u_int);
40 int __bt_fd(const DB *);
42 int __bt_get(const DB *, const DBT *, DBT *, u_int);
47 int __bt_put(const DB *dbp, DBT *, const DBT *, u_int);
50 int __bt_seq(const DB *, DBT *, DBT *, u_int);
54 int __bt_sync(const DB *, u_int);
61 void __bt_dnpage(DB *, pgno_t);
63 void __bt_dump(DB *);
66 void __bt_stat(DB *);
[all...]
H A Dbt_close.c64 __bt_close(DB *dbp)
118 __bt_sync(const DB *dbp, u_int flags)
H A Dbt_get.c61 __bt_get(const DB *dbp, const DBT *key, DBT *data, u_int flags)
H A Dbt_open.c77 * Creates and fills a DB struct, and calls the routine that actually
87 * NULL on failure, pointer to DB on success.
90 DB *
97 DB *dbp;
159 /* Allocate and initialize DB and BTREE structures. */
169 if ((t->bt_dbp = dbp = (DB *)calloc(1, sizeof(DB))) == NULL)
431 __bt_fd(const DB *dbp)
/barrelfish-master/lib/x86emu/
H A Dsys.c73 DB(printk("mem_read: address %#lx out of range!\n", addr);)
77 DB( if (DEBUG_MEM_TRACE())
98 DB(printk("mem_read: address %#lx out of range!\n", addr);)
109 DB( if (DEBUG_MEM_TRACE())
129 DB(printk("mem_read: address %#lx out of range!\n", addr);)
142 DB( if (DEBUG_MEM_TRACE())
159 DB( if (DEBUG_MEM_TRACE())
162 DB(printk("mem_write: address %#lx out of range!\n", addr);)
180 DB( if (DEBUG_MEM_TRACE())
183 DB(print
[all...]
H A Ddecode.c96 DB(x86emu_end_instr();)
99 DB( if (CHECK_IP_FETCH())
106 DB( if (M.x86.R_SP != 0) {
158 DB( if (CHECK_IP_FETCH())
181 DB( if (CHECK_IP_FETCH())
202 DB( if (CHECK_IP_FETCH())
224 DB( if (CHECK_IP_FETCH())
/barrelfish-master/lib/libc/db/test/btree.tests/
H A Dmain.c53 void (*func)(DB *, char **);
58 DB *globaldb;
60 void append(DB *, char **);
61 void bstat(DB *, char **);
62 void cursor(DB *, char **);
63 void delcur(DB *, char **);
64 void delete(DB *, char **);
65 void dump(DB *, char **);
66 void first(DB *, char **);
67 void get(DB *, cha
[all...]
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Ddb.pl911 ondb(Op, DB, _) :- var(Op), !, error(4, ondb(Op, DB)).
913 ondb(Rel ++> List, DB, _) :- !, ++>(Rel, List, DB).
914 ondb(OutRel <++ Expr, DB, _) :- !, <++(OutRel, Expr, DB).
915 ondb(OutRel <-- Expr, DB, _) :- !, <-- (OutRel, Expr , DB).
916 ondb(Rel1<@> Rel2, DB, _) :- !, <@>( Rel1, Rel2,DB)
[all...]
/barrelfish-master/include/
H A Ddb.h107 } DB; typedef in typeref:struct:__db
207 DB *dbopen(const char *, int, int, DBTYPE, const void *);
211 DB *__bt_open(const char *, int, int, const BTREEINFO *, int);
212 DB *__hash_open(const char *, int, int, const HASHINFO *, int);
213 DB *__rec_open(const char *, int, int, const RECNOINFO *, int);
214 void __dbpanic(DB *dbp);
/barrelfish-master/lib/openssl-1.0.0d/crypto/rsa/
H A Drsa_pss.c80 unsigned char *DB = NULL; local
125 DB = OPENSSL_malloc(maskedDBLen);
126 if (!DB)
131 if (PKCS1_MGF1(DB, maskedDBLen, H, hLen, Hash) < 0)
134 DB[i] ^= EM[i];
136 DB[0] &= 0xFF >> (8 - MSBits);
137 for (i = 0; DB[i] == 0 && i < (maskedDBLen-1); i++) ;
138 if (DB[i++] != 0x1)
153 EVP_DigestUpdate(&ctx, DB + i, maskedDBLen - i);
165 if (DB)
[all...]
/barrelfish-master/lib/libc/db/db/
H A Ddb.c51 DB *
86 * dbp: pointer to the DB structure.
89 __dbpanic(DB *dbp)
/barrelfish-master/lib/libc/db/test/
H A Ddbtest.c60 void dump(DB *, int);
62 void get(DB *, DBT *);
63 void getdata(DB *, DBT *, DBT *);
64 void put(DB *, DBT *, DBT *);
65 void rem(DB *, DBT *);
67 void synk(DB *);
69 void seq(DB *, DBT *);
78 u_int flags; /* Current DB flags. */
81 DB *XXdbp; /* Global for gdb. */
92 DB *db
[all...]
/barrelfish-master/lib/libc/db/hash/
H A Dhash.c62 static int hash_close(DB *);
63 static int hash_delete(const DB *, const DBT *, u_int32_t);
64 static int hash_fd(const DB *);
65 static int hash_get(const DB *, const DBT *, DBT *, u_int32_t);
66 static int hash_put(const DB *, DBT *, const DBT *, u_int32_t);
68 static int hash_seq(const DB *, DBT *, DBT *, u_int32_t);
69 static int hash_sync(const DB *, u_int32_t);
96 DB *
103 DB *dbp;
188 if (!(dbp = (DB *)mallo
[all...]
/barrelfish-master/lib/libc/db/test/hash.tests/
H A Ddriver2.c63 DB *db;
H A Dtcreat3.c59 DB *dbp;
H A Dtread2.c63 DB *dbp;
H A Dtseq.c60 DB *dbp;
H A Dtverify.c63 DB *dbp;
H A Dtdel.c60 DB *dbp;
H A Dthash4.c62 DB *dbp;
/barrelfish-master/include/x86emu/
H A Ddebug.h180 #define DB(x) x macro
182 #define DB(x) macro

Completed in 180 milliseconds

12