/src/lib/libc/db/btree/ |
extern.h | 37 int __bt_cmp(BTREE *, const DBT *, EPG *); 39 int __bt_defcmp(const DBT *, const DBT *); 40 size_t __bt_defpfx(const DBT *, const DBT *); 41 int __bt_delete(const DB *, const DBT *, unsigned int); 42 int __bt_dleaf(BTREE *, const DBT *, PAGE *, unsigned int); 45 int __bt_get(const DB *, const DBT *, DBT *, unsigned int); 50 int __bt_put(const DB *dbp, DBT *, const DBT *, unsigned int) [all...] |
bt_utils.c | 69 __bt_ret(BTREE *t, EPG *e, DBT *key, DBT *rkey, DBT *data, DBT *rdata, int copy) 139 * k1: DBT pointer of first arg to comparison 148 __bt_cmp(BTREE *t, const DBT *k1, EPG *e) 152 DBT k2; 199 * a: DBT #1 200 * b: DBT #2 208 __bt_defcmp(const DBT *a, const DBT *b [all...] |
bt_get.c | 66 __bt_get(const DB *dbp, const DBT *key, DBT *data, u_int flags)
|
bt_put.c | 54 static EPG *bt_fast(BTREE *, const DBT *, const DBT *, int *); 70 __bt_put(const DB *dbp, DBT *key, const DBT *data, u_int flags) 73 DBT tkey, tdata; 268 bt_fast(BTREE *t, const DBT *key, const DBT *data, int *exactp)
|
btree.h | 327 DBT key; /* B: Saved key, or key.data == NULL. */ 374 DBT bt_rkey; /* returned key */ 375 DBT bt_rdata; /* returned data */ 388 int (*bt_cmp)(const DBT *, const DBT *); 390 size_t (*bt_pfx)(const DBT *, const DBT *);
|
bt_search.c | 51 static int __bt_snext(BTREE *, PAGE *, const DBT *, int *); 52 static int __bt_sprev(BTREE *, PAGE *, const DBT *, int *); 69 __bt_search(BTREE *t, const DBT *key, int *exactp) 151 __bt_snext(BTREE *t, PAGE *h, const DBT *key, int *exactp) 228 __bt_sprev(BTREE *t, PAGE *h, const DBT *key, int *exactp)
|
/src/lib/libc/db/recno/ |
extern.h | 37 int __rec_delete(const DB *, const DBT *, u_int); 43 int __rec_get(const DB *, const DBT *, DBT *, u_int); 44 int __rec_iput(BTREE *, recno_t, const DBT *, u_int); 45 int __rec_put(const DB *dbp, DBT *, const DBT *, u_int); 46 int __rec_ret(BTREE *, EPG *, recno_t, DBT *, DBT *); 48 int __rec_seq(const DB *, DBT *, DBT *, u_int) [all...] |
rec_seq.c | 64 __rec_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
|
rec_utils.c | 64 __rec_ret(BTREE *t, EPG *e, recno_t nrec, DBT *key, DBT *data)
|
rec_get.c | 66 __rec_get(const DB *dbp, const DBT *key, DBT *data, u_int flags) 123 DBT data; 176 DBT data; 230 DBT data; 277 DBT data;
|
rec_put.c | 65 __rec_put(const DB *dbp, DBT *key, const DBT *data, u_int flags) 68 DBT fdata, tdata; 193 __rec_iput(BTREE *t, recno_t nrec, const DBT *data, u_int flags) 195 DBT tdata;
|
/src/lib/libc/db/hash/ |
extern.h | 35 int __addel(HTAB *, BUFHEAD *, const DBT *, const DBT *); 37 int __big_insert(HTAB *, BUFHEAD *, const DBT *, const DBT *); 38 int __big_keydata(HTAB *, BUFHEAD *, DBT *, DBT *, int); 39 int __big_return(HTAB *, BUFHEAD *, int, DBT *, int);
|
ndbmdatum.c | 70 DBT dbtkey, dbtretdata; 94 DBT dbtretkey, dbtretdata; 114 DBT dbtretkey, dbtretdata; 133 DBT dbtkey; 153 DBT dbtkey, dbtdata;
|
hash.c | 61 static int hash_access(HTAB *, ACTION, DBT *, DBT *); 63 static int hash_delete(const DB *, const DBT *, uint32_t); 65 static int hash_get(const DB *, const DBT *, DBT *, uint32_t); 66 static int hash_put(const DB *, DBT *, const DBT *, uint32_t); 68 static int hash_seq(const DB *, DBT *, DBT *, uint32_t); 522 hash_get(const DB *dbp, const DBT *key, DBT *data, uint32_t flag [all...] |
/src/lib/libc/db/db/ |
db.c | 101 dbp->del = (int (*)(const DB *, const DBT *, u_int))__dberr; 103 dbp->get = (int (*)(const DB *, const DBT *, DBT *, u_int))__dberr; 104 dbp->put = (int (*)(const DB *, DBT *, const DBT *, u_int))__dberr; 105 dbp->seq = (int (*)(const DB *, DBT *, DBT *, u_int))__dberr;
|
/src/include/ |
db.h | 57 } DBT; 118 int (*del) (const struct __db *, const DBT *, unsigned int); 119 int (*get) (const struct __db *, const DBT *, DBT *, unsigned int); 120 int (*put) (const struct __db *, DBT *, const DBT *, unsigned int); 121 int (*seq) (const struct __db *, DBT *, DBT *, unsigned int); 139 (const DBT *, const DBT *); [all...] |
/src/usr.sbin/rpc.statd/ |
statd.c | 74 static DBT undefkey = { 81 static int walk_one(int (*fun )(DBT *, HostInfo *, void *), DBT *, DBT *, void *); 82 static int walk_db(int (*fun )(DBT *, HostInfo *, void *), void *); 83 static int reset_host(DBT *, HostInfo *, void *); 84 static int check_work(DBT *, HostInfo *, void *); 85 static int unmon_host(DBT *, HostInfo *, void *); 86 static int notify_one(DBT *, HostInfo *, void *); 211 DBT data [all...] |
/src/usr.sbin/sa/ |
main.c | 66 static int cmp_usrsys(const DBT *, const DBT *); 67 static int cmp_avgusrsys(const DBT *, const DBT *); 68 static int cmp_dkio(const DBT *, const DBT *); 69 static int cmp_avgdkio(const DBT *, const DBT *); 70 static int cmp_cpumem(const DBT *, const DBT *); [all...] |
extern.h | 67 typedef int (*cmpf_t)(const DBT *, const DBT *); 70 const char *fmt(const DBT *);
|
usrdb.c | 53 static int uid_compare(const DBT *, const DBT *); 74 DBT key, data; 142 DBT key, data; 193 DBT key, data; 244 DBT key, data; 293 uid_compare(const DBT *k1, const DBT *k2)
|
/src/share/examples/refuse/dbfs/ |
dbfs.c | 58 DBT k; 59 DBT v; 89 static DBT k; 91 DBT v; 119 DBT k; 120 DBT v; 140 DBT k; 141 DBT v;
|
/src/usr.sbin/services_mkdb/ |
output_db.c | 67 static void store(DBT *, DBT *, int); 68 static void killproto(DBT *); 97 DBT data, key; 131 killproto(DBT *key) 142 store(DBT *key, DBT *data, int warndup)
|
/src/tests/lib/libc/db/ |
h_db.c | 64 static void compare(DBT *, DBT *); 67 static void get(DB *, DBT *); 68 static void getdata(DB *, DBT *, DBT *); 69 static void put(DB *, DBT *, DBT *); 70 static void rem(DB *, DBT *); 74 static void seq(DB *, DBT *); 105 DBT data, key, keydata [all...] |
t_db_hash_seq.c | 117 state_sizecheck(const DBT *t) 129 DBT k; 156 DBT k, v; 185 DBT k, v; 214 DBT k, v;
|
/src/usr.sbin/ypserv/common/ |
ypdb.c | 190 DBT nk, nd; 217 DBT nk, nd; 241 DBT nk, nd; 264 DBT nk, nd; 286 DBT nk; 307 DBT nk, nd;
|