distrib/special/libstubs/db.c
82
dbp->del = (int (*)(const struct __db *, const DBT*, u_int))__dberr;
distrib/special/libstubs/db.c
84
dbp->get = (int (*)(const struct __db *, const DBT*, DBT *, u_int))__dberr;
distrib/special/libstubs/db.c
85
dbp->put = (int (*)(const struct __db *, DBT *, const DBT *, u_int))__dberr;
distrib/special/libstubs/db.c
86
dbp->seq = (int (*)(const struct __db *, DBT *, DBT *, u_int))__dberr;
include/db.h
116
(const DBT *, const DBT *);
include/db.h
118
(const DBT *, const DBT *);
include/db.h
95
int (*del)(const struct __db *, const DBT *, unsigned int);
include/db.h
96
int (*get)(const struct __db *, const DBT *, DBT *, unsigned int);
include/db.h
97
int (*put)(const struct __db *, DBT *, const DBT *, unsigned int);
include/db.h
98
int (*seq)(const struct __db *, DBT *, DBT *, unsigned int);
lib/libc/db/btree/bt_delete.c
279
__bt_bdelete(BTREE *t, const DBT *key)
lib/libc/db/btree/bt_delete.c
44
static int __bt_bdelete(BTREE *, const DBT *);
lib/libc/db/btree/bt_delete.c
45
static int __bt_curdel(BTREE *, const DBT *, PAGE *, u_int);
lib/libc/db/btree/bt_delete.c
458
__bt_dleaf(BTREE *t, const DBT *key, PAGE *h, u_int idx)
lib/libc/db/btree/bt_delete.c
519
__bt_curdel(BTREE *t, const DBT *key, PAGE *h, u_int idx)
lib/libc/db/btree/bt_delete.c
57
__bt_delete(const DB *dbp, const DBT *key, u_int flags)
lib/libc/db/btree/bt_get.c
57
__bt_get(const DB *dbp, const DBT *key, DBT *data, u_int flags)
lib/libc/db/btree/bt_overflow.c
130
__ovfl_put(BTREE *t, const DBT *dbt, pgno_t *pg)
lib/libc/db/btree/bt_put.c
259
bt_fast(BTREE *t, const DBT *key, const DBT *data, int *exactp)
lib/libc/db/btree/bt_put.c
45
static EPG *bt_fast(BTREE *, const DBT *, const DBT *, int *);
lib/libc/db/btree/bt_put.c
61
__bt_put(const DB *dbp, DBT *key, const DBT *data, u_int flags)
lib/libc/db/btree/bt_put.c
64
DBT tkey, tdata;
lib/libc/db/btree/bt_search.c
142
__bt_snext(BTREE *t, PAGE *h, const DBT *key, int *exactp)
lib/libc/db/btree/bt_search.c
177
__bt_sprev(BTREE *t, PAGE *h, const DBT *key, int *exactp)
lib/libc/db/btree/bt_search.c
42
static int __bt_snext(BTREE *, PAGE *, const DBT *, int *);
lib/libc/db/btree/bt_search.c
43
static int __bt_sprev(BTREE *, PAGE *, const DBT *, int *);
lib/libc/db/btree/bt_search.c
60
__bt_search(BTREE *t, const DBT *key, int *exactp)
lib/libc/db/btree/bt_seq.c
143
__bt_seqset(BTREE *t, EPG *ep, DBT *key, int flags)
lib/libc/db/btree/bt_seq.c
326
__bt_first(BTREE *t, const DBT *key, EPG *erval, int *exactp)
lib/libc/db/btree/bt_seq.c
45
static int __bt_first(BTREE *, const DBT *, EPG *, int *);
lib/libc/db/btree/bt_seq.c
47
static int __bt_seqset(BTREE *, EPG *, DBT *, int);
lib/libc/db/btree/bt_seq.c
71
__bt_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
lib/libc/db/btree/bt_split.c
73
__bt_split(BTREE *t, PAGE *sp, const DBT *key, const DBT *data, int flags,
lib/libc/db/btree/bt_split.c
78
DBT a, b;
lib/libc/db/btree/bt_utils.c
140
__bt_cmp(BTREE *t, const DBT *k1, EPG *e)
lib/libc/db/btree/bt_utils.c
144
DBT k2;
lib/libc/db/btree/bt_utils.c
200
__bt_defcmp(const DBT *a, const DBT *b)
lib/libc/db/btree/bt_utils.c
229
__bt_defpfx(const DBT *a, const DBT *b)
lib/libc/db/btree/bt_utils.c
61
__bt_ret(BTREE *t, EPG *e, DBT *key, DBT *rkey, DBT *data, DBT *rdata, int copy)
lib/libc/db/btree/btree.h
275
DBT key; /* B: Saved key, or key.data == NULL. */
lib/libc/db/btree/btree.h
322
DBT bt_rkey; /* returned key */
lib/libc/db/btree/btree.h
323
DBT bt_rdata; /* returned data */
lib/libc/db/btree/btree.h
336
int (*bt_cmp)(const DBT *, const DBT *);
lib/libc/db/btree/btree.h
338
size_t (*bt_pfx)(const DBT *, const DBT *);
lib/libc/db/btree/extern.h
36
int __bt_cmp(BTREE *, const DBT *, EPG *);
lib/libc/db/btree/extern.h
37
int __bt_defcmp(const DBT *, const DBT *);
lib/libc/db/btree/extern.h
38
size_t __bt_defpfx(const DBT *, const DBT *);
lib/libc/db/btree/extern.h
39
int __bt_delete(const DB *, const DBT *, u_int);
lib/libc/db/btree/extern.h
40
int __bt_dleaf(BTREE *, const DBT *, PAGE *, u_int);
lib/libc/db/btree/extern.h
43
int __bt_get(const DB *, const DBT *, DBT *, u_int);
lib/libc/db/btree/extern.h
47
int __bt_put(const DB *dbp, DBT *, const DBT *, u_int);
lib/libc/db/btree/extern.h
48
int __bt_ret(BTREE *, EPG *, DBT *, DBT *, DBT *, DBT *, int);
lib/libc/db/btree/extern.h
49
EPG *__bt_search(BTREE *, const DBT *, int *);
lib/libc/db/btree/extern.h
50
int __bt_seq(const DB *, DBT *, DBT *, u_int);
lib/libc/db/btree/extern.h
53
const DBT *, const DBT *, int, size_t, u_int32_t);
lib/libc/db/btree/extern.h
58
int __ovfl_put(BTREE *, const DBT *, pgno_t *);
lib/libc/db/db/db.c
87
dbp->del = (int (*)(const struct __db *, const DBT*, u_int))__dberr;
lib/libc/db/db/db.c
89
dbp->get = (int (*)(const struct __db *, const DBT*, DBT *, u_int))__dberr;
lib/libc/db/db/db.c
90
dbp->put = (int (*)(const struct __db *, DBT *, const DBT *, u_int))__dberr;
lib/libc/db/db/db.c
91
dbp->seq = (int (*)(const struct __db *, DBT *, DBT *, u_int))__dberr;
lib/libc/db/hash/extern.h
36
int __addel(HTAB *, BUFHEAD *, const DBT *, const DBT *);
lib/libc/db/hash/extern.h
38
int __big_insert(HTAB *, BUFHEAD *, const DBT *, const DBT *);
lib/libc/db/hash/extern.h
39
int __big_keydata(HTAB *, BUFHEAD *, DBT *, DBT *, int);
lib/libc/db/hash/extern.h
40
int __big_return(HTAB *, BUFHEAD *, int, DBT *, int);
lib/libc/db/hash/hash.c
510
hash_get(const DB *dbp, const DBT *key, DBT *data, u_int32_t flag)
lib/libc/db/hash/hash.c
519
return (hash_access(hashp, HASH_GET, (DBT *)key, data));
lib/libc/db/hash/hash.c
523
hash_put(const DB *dbp, DBT *key, const DBT *data, u_int32_t flag)
lib/libc/db/hash/hash.c
537
HASH_PUTNEW : HASH_PUT, (DBT *)key, (DBT *)data));
lib/libc/db/hash/hash.c
541
hash_delete(const DB *dbp, const DBT *key,
lib/libc/db/hash/hash.c
555
return (hash_access(hashp, HASH_DELETE, (DBT *)key, NULL));
lib/libc/db/hash/hash.c
56
static int hash_access(HTAB *, ACTION, DBT *, DBT *);
lib/libc/db/hash/hash.c
562
hash_access(HTAB *hashp, ACTION action, DBT *key, DBT *val)
lib/libc/db/hash/hash.c
58
static int hash_delete(const DB *, const DBT *, u_int32_t);
lib/libc/db/hash/hash.c
60
static int hash_get(const DB *, const DBT *, DBT *, u_int32_t);
lib/libc/db/hash/hash.c
61
static int hash_put(const DB *, DBT *, const DBT *, u_int32_t);
lib/libc/db/hash/hash.c
63
static int hash_seq(const DB *, DBT *, DBT *, u_int32_t);
lib/libc/db/hash/hash.c
688
hash_seq(const DB *dbp, DBT *key, DBT *data, u_int32_t flag)
lib/libc/db/hash/hash_bigkey.c
354
__big_return(HTAB *hashp, BUFHEAD *bufp, int ndx, DBT *val, int set_current)
lib/libc/db/hash/hash_bigkey.c
492
__big_keydata(HTAB *hashp, BUFHEAD *bufp, DBT *key, DBT *val, int set)
lib/libc/db/hash/hash_bigkey.c
506
collect_key(HTAB *hashp, BUFHEAD *bufp, int len, DBT *val, int set)
lib/libc/db/hash/hash_bigkey.c
554
DBT key, val;
lib/libc/db/hash/hash_bigkey.c
69
static int collect_key(HTAB *, BUFHEAD *, int, DBT *, int);
lib/libc/db/hash/hash_bigkey.c
82
__big_insert(HTAB *hashp, BUFHEAD *bufp, const DBT *key, const DBT *val)
lib/libc/db/hash/hash_page.c
180
DBT key, val;
lib/libc/db/hash/hash_page.c
282
DBT key, val;
lib/libc/db/hash/hash_page.c
390
__addel(HTAB *hashp, BUFHEAD *bufp, const DBT *key, const DBT *val)
lib/libc/db/hash/hash_page.c
72
static void putpair(char *, const DBT *, const DBT *);
lib/libc/db/hash/hash_page.c
73
static void squeeze_key(u_int16_t *, const DBT *, const DBT *);
lib/libc/db/hash/hash_page.c
870
squeeze_key(u_int16_t *sp, const DBT *key, const DBT *val)
lib/libc/db/hash/hash_page.c
88
putpair(char *p, const DBT *key, const DBT *val)
lib/libc/db/hash/ndbm.c
118
DBT dbtkey, dbtretdata;
lib/libc/db/hash/ndbm.c
143
DBT dbtretkey, dbtretdata;
lib/libc/db/hash/ndbm.c
164
DBT dbtretkey, dbtretdata;
lib/libc/db/hash/ndbm.c
184
DBT dbtkey;
lib/libc/db/hash/ndbm.c
205
DBT dbtkey, dbtdata;
lib/libc/db/recno/extern.h
38
int __rec_delete(const DB *, const DBT *, u_int);
lib/libc/db/recno/extern.h
44
int __rec_get(const DB *, const DBT *, DBT *, u_int);
lib/libc/db/recno/extern.h
45
int __rec_iput(BTREE *, recno_t, const DBT *, u_int);
lib/libc/db/recno/extern.h
46
int __rec_put(const DB *dbp, DBT *, const DBT *, u_int);
lib/libc/db/recno/extern.h
47
int __rec_ret(BTREE *, EPG *, recno_t, DBT *, DBT *);
lib/libc/db/recno/extern.h
49
int __rec_seq(const DB *, DBT *, DBT *, u_int);
lib/libc/db/recno/rec_close.c
103
DBT data, key;
lib/libc/db/recno/rec_delete.c
58
__rec_delete(const DB *dbp, const DBT *key, u_int flags)
lib/libc/db/recno/rec_get.c
114
DBT data;
lib/libc/db/recno/rec_get.c
168
DBT data;
lib/libc/db/recno/rec_get.c
223
DBT data;
lib/libc/db/recno/rec_get.c
271
DBT data;
lib/libc/db/recno/rec_get.c
57
__rec_get(const DB *dbp, const DBT *key, DBT *data, u_int flags)
lib/libc/db/recno/rec_put.c
180
__rec_iput(BTREE *t, recno_t nrec, const DBT *data, u_int flags)
lib/libc/db/recno/rec_put.c
182
DBT tdata;
lib/libc/db/recno/rec_put.c
56
__rec_put(const DB *dbp, DBT *key, const DBT *data, u_int flags)
lib/libc/db/recno/rec_put.c
59
DBT fdata, tdata;
lib/libc/db/recno/rec_seq.c
55
__rec_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
lib/libc/db/recno/rec_utils.c
53
__rec_ret(BTREE *t, EPG *e, recno_t nrec, DBT *key, DBT *data)
lib/libc/gen/devname.c
82
DBT data, key;
lib/libc/gen/getcap.c
556
DBT key, data;
lib/libc/gen/getnetgrent.c
254
DBT key, data;
lib/libc/gen/getpwent.c
313
DBT key;
lib/libc/gen/getpwent.c
493
DBT key, data, pkey, pdata;
lib/libc/gen/getpwent.c
565
DBT key;
lib/libc/gen/getpwent.c
705
DBT key;
lib/libc/gen/getpwent.c
726
DBT key;
lib/libc/gen/getpwent.c
77
static int __hashpw(DBT *, char *buf, size_t buflen, struct passwd *, int *);
lib/libc/gen/getpwent.c
991
__hashpw(DBT *key, char *buf, size_t buflen, struct passwd *pw,
lib/libc/gen/getpwent.c
995
DBT data;
lib/libc/gen/ttyname.c
71
DBT data, key;
lib/libcurses/hashed_db.h
64
extern NCURSES_EXPORT(bool) _nc_db_have_data(DBT * /* key */, DBT * /* data */, char ** /* buffer */, int * /* size */);
lib/libcurses/hashed_db.h
65
extern NCURSES_EXPORT(bool) _nc_db_have_index(DBT * /* key */, DBT * /* data */, char ** /* buffer */, int * /* size */);
lib/libcurses/hashed_db.h
67
extern NCURSES_EXPORT(int) _nc_db_first(DB * /* db */, DBT * /* key */, DBT * /* data */);
lib/libcurses/hashed_db.h
68
extern NCURSES_EXPORT(int) _nc_db_next(DB * /* db */, DBT * /* key */, DBT * /* data */);
lib/libcurses/hashed_db.h
69
extern NCURSES_EXPORT(int) _nc_db_get(DB * /* db */, DBT * /* key */, DBT * /* data */);
lib/libcurses/hashed_db.h
70
extern NCURSES_EXPORT(int) _nc_db_put(DB * /* db */, DBT * /* key */, DBT * /* data */);
lib/libcurses/tinfo/hashed_db.c
207
_nc_db_put(DB * db, DBT * key, DBT * data)
lib/libcurses/tinfo/hashed_db.c
226
_nc_db_get(DB * db, DBT * key, DBT * data)
lib/libcurses/tinfo/hashed_db.c
245
_nc_db_first(DB * db, DBT * key, DBT * data)
lib/libcurses/tinfo/hashed_db.c
267
_nc_db_next(DB * db, DBT * key, DBT * data)
lib/libcurses/tinfo/hashed_db.c
289
_nc_db_have_index(DBT * key, DBT * data, char **buffer, int *size)
lib/libcurses/tinfo/hashed_db.c
312
_nc_db_have_data(DBT * key, DBT * data, char **buffer, int *size)
lib/libcurses/tinfo/read_entry.c
804
DBT key, data;
lib/libcurses/tinfo/write_entry.c
364
DBT key, data;
lib/libkvm/kvm.c
684
DBT rec;
lib/libkvm/kvm.c
716
if ((kd->db->get)(kd->db, (DBT *)&rec, (DBT *)&rec, 0))
lib/libkvm/kvm.c
731
if ((kd->db->get)(kd->db, (DBT *)&rec, (DBT *)&rec, 0))
lib/libkvm/kvm.c
776
DBT rec;
lib/libkvm/kvm.c
791
if ((kd->db->get)(kd->db, (DBT *)&rec, (DBT *)&rec, 0))
libexec/login_token/tokendb.c
107
DBT key;
libexec/login_token/tokendb.c
108
DBT data;
libexec/login_token/tokendb.c
137
DBT key;
libexec/login_token/tokendb.c
253
DBT key;
libexec/login_token/tokendb.c
254
DBT data;
libexec/login_token/tokendb.c
286
DBT key;
libexec/login_token/tokendb.c
287
DBT data;
libexec/login_token/tokendb.c
317
DBT key;
libexec/login_token/tokendb.c
318
DBT data;
libexec/login_token/tokendb.c
73
DBT key;
libexec/login_token/tokendb.c
74
DBT data;
libexec/spamd/gdcopy.c
27
const DBT *dbd = v;
libexec/spamd/grey.c
444
DBT dbk, dbd;
libexec/spamd/grey.c
498
DBT dbk, dbd;
libexec/spamd/grey.c
524
DBT dbk, dbd;
libexec/spamd/grey.c
632
DBT dbk, dbd;
libexec/spamd/grey.c
669
DBT dbk, dbd;
libexec/spamd/grey.c
762
DBT dbk, dbd;
libexec/spamlogd/spamlogd.c
290
DBT dbk, dbd;
regress/lib/libc/db/dbtest.c
334
DBT *db1, *db2;
regress/lib/libc/db/dbtest.c
355
DBT *kp;
regress/lib/libc/db/dbtest.c
357
DBT data;
regress/lib/libc/db/dbtest.c
383
DBT *kp, *dp;
regress/lib/libc/db/dbtest.c
400
DBT *kp, *dp;
regress/lib/libc/db/dbtest.c
417
DBT *kp;
regress/lib/libc/db/dbtest.c
456
DBT *kp;
regress/lib/libc/db/dbtest.c
458
DBT data;
regress/lib/libc/db/dbtest.c
489
DBT key, data;
regress/lib/libc/db/dbtest.c
51
void compare(DBT *, DBT *);
regress/lib/libc/db/dbtest.c
55
void get(DB *, DBT *);
regress/lib/libc/db/dbtest.c
56
void getdata(DB *, DBT *, DBT *);
regress/lib/libc/db/dbtest.c
57
void put(DB *, DBT *, DBT *);
regress/lib/libc/db/dbtest.c
58
void rem(DB *, DBT *);
regress/lib/libc/db/dbtest.c
62
void seq(DB *, DBT *);
regress/lib/libc/db/dbtest.c
82
DBT data, key, keydata;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
149
DBT key;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
150
DBT data;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
170
DBT key;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
171
DBT data;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
473
DBT key;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
474
DBT data;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
88
DBT key;
usr.bin/cap_mkdb/cap_mkdb.c
144
DBT key, data;
usr.bin/chpass/getpwent.c
128
DBT key;
usr.bin/chpass/getpwent.c
156
DBT key;
usr.bin/chpass/getpwent.c
177
DBT key;
usr.bin/chpass/getpwent.c
391
__hashpw(DBT *key, char *buf, size_t buflen, struct passwd *pw,
usr.bin/chpass/getpwent.c
395
DBT data;
usr.bin/chpass/getpwent.c
67
static int __hashpw(DBT *, char *buf, size_t buflen, struct passwd *, int *);
usr.bin/vacation/vacation.c
388
DBT key, data;
usr.bin/vacation/vacation.c
417
DBT key, data;
usr.bin/vacation/vacation.c
433
DBT key, data;
usr.bin/vi/common/line.c
182
DBT key;
usr.bin/vi/common/line.c
236
DBT data, key;
usr.bin/vi/common/line.c
303
DBT data, key;
usr.bin/vi/common/line.c
362
DBT data, key;
usr.bin/vi/common/line.c
448
DBT data, key;
usr.bin/vi/common/line.c
77
DBT data, key;
usr.bin/vi/common/log.c
172
DBT data, key;
usr.bin/vi/common/log.c
207
DBT data, key;
usr.bin/vi/common/log.c
304
DBT data, key;
usr.bin/vi/common/log.c
348
DBT key, data;
usr.bin/vi/common/log.c
452
DBT key, data;
usr.bin/vi/common/log.c
538
DBT key, data;
usr.sbin/dev_mkdb/dev_mkdb.c
58
DBT data, key;
usr.sbin/kvm_mkdb/nlist.c
73
DBT data, key;
usr.sbin/kvm_mkdb/testdb.c
50
DBT rec;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
197
DBT data, key;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
297
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
348
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
428
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
501
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
527
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
561
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
594
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
648
DBT key, data;
usr.sbin/pwd_mkdb/pwd_mkdb.c
101
DBT data, key;
usr.sbin/pwd_mkdb/pwd_mkdb.c
521
DBT data, key;
usr.sbin/radiusd/radiusd_ipcp.c
1458
DBT key, val;
usr.sbin/radiusd/radiusd_ipcp.c
1523
DBT key, val;
usr.sbin/radiusd/radiusd_ipcp.c
1563
DBT key;
usr.sbin/rpc.statd/statd.c
209
DBT data;
usr.sbin/rpc.statd/statd.c
238
DBT key, data;
usr.sbin/rpc.statd/statd.c
277
DBT key, data;
usr.sbin/rpc.statd/statd.c
311
walk_one(int (*fun)(DBT *, HostInfo *, void *), DBT *key, DBT *data, void *ptr)
usr.sbin/rpc.statd/statd.c
332
walk_db(int (*fun)(DBT *, HostInfo *, void *), void *ptr)
usr.sbin/rpc.statd/statd.c
334
DBT key, data;
usr.sbin/rpc.statd/statd.c
385
reset_host(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
403
check_work(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
415
unmon_host(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
431
notify_one(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
490
DBT data;
usr.sbin/rpc.statd/statd.c
66
static DBT undefkey = {
usr.sbin/rpc.statd/statd.c
73
static int walk_one(int (*fun )(DBT *, HostInfo *, void *), DBT *, DBT *, void *);
usr.sbin/rpc.statd/statd.c
74
static int walk_db(int (*fun )(DBT *, HostInfo *, void *), void *);
usr.sbin/rpc.statd/statd.c
75
static int reset_host(DBT *, HostInfo *, void *);
usr.sbin/rpc.statd/statd.c
76
static int check_work(DBT *, HostInfo *, void *);
usr.sbin/rpc.statd/statd.c
77
static int unmon_host(DBT *, HostInfo *, void *);
usr.sbin/rpc.statd/statd.c
78
static int notify_one(DBT *, HostInfo *, void *);
usr.sbin/sa/extern.h
64
typedef int (*cmpf_t)(const DBT *, const DBT *);
usr.sbin/sa/main.c
393
cmp_usrsys(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
414
cmp_avgusrsys(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
438
cmp_dkio(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
455
cmp_avgdkio(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
476
cmp_cpumem(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
493
cmp_avgcpumem(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
518
cmp_calls(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
52
static int cmp_usrsys(const DBT *, const DBT *);
usr.sbin/sa/main.c
53
static int cmp_avgusrsys(const DBT *, const DBT *);
usr.sbin/sa/main.c
54
static int cmp_dkio(const DBT *, const DBT *);
usr.sbin/sa/main.c
55
static int cmp_avgdkio(const DBT *, const DBT *);
usr.sbin/sa/main.c
56
static int cmp_cpumem(const DBT *, const DBT *);
usr.sbin/sa/main.c
57
static int cmp_avgcpumem(const DBT *, const DBT *);
usr.sbin/sa/main.c
58
static int cmp_calls(const DBT *, const DBT *);
usr.sbin/sa/pdb.c
115
DBT key, data;
usr.sbin/sa/pdb.c
158
DBT key, data;
usr.sbin/sa/pdb.c
206
DBT key, data, ndata;
usr.sbin/sa/pdb.c
60
DBT key, data;
usr.sbin/sa/usrdb.c
120
DBT key, data;
usr.sbin/sa/usrdb.c
171
DBT key, data;
usr.sbin/sa/usrdb.c
222
DBT key, data;
usr.sbin/sa/usrdb.c
265
uid_compare(const DBT *k1, const DBT *k2)
usr.sbin/sa/usrdb.c
43
static int uid_compare(const DBT *, const DBT *);
usr.sbin/sa/usrdb.c
63
DBT key, data;
usr.sbin/smtpd/makemap.c
311
DBT key;
usr.sbin/smtpd/makemap.c
312
DBT val;
usr.sbin/smtpd/makemap.c
352
DBT key;
usr.sbin/smtpd/makemap.c
353
DBT val;
usr.sbin/smtpd/makemap.c
378
make_plain(DBT *val, char *text)
usr.sbin/smtpd/makemap.c
387
make_aliases(DBT *val, char *text)
usr.sbin/smtpd/makemap.c
42
static int make_plain(DBT *, char *);
usr.sbin/smtpd/makemap.c
43
static int make_aliases(DBT *, char *);
usr.sbin/smtpd/makemap.c
445
DBT key, val;
usr.sbin/smtpd/table_db.c
199
DBT dbk;
usr.sbin/smtpd/table_db.c
200
DBT dbd;
usr.sbin/smtpd/table_db.c
227
DBT dbk;
usr.sbin/smtpd/table_db.c
228
DBT dbd;
usr.sbin/smtpd/table_db.c
248
DBT dbk;
usr.sbin/smtpd/table_db.c
249
DBT dbv;
usr.sbin/spamdb/spamdb.c
189
print_entry(DBT *dbk, DBT *dbd)
usr.sbin/spamdb/spamdb.c
263
DBT dbk, dbd;
usr.sbin/spamdb/spamdb.c
284
DBT dbk, dbd;
usr.sbin/spamdb/spamdb.c
49
DBT dbk, dbd;
usr.sbin/ypserv/common/ypdb.c
112
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
140
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
164
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
187
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
208
DBT nk, nd;
usr.sbin/ypserv/makedbm/db.c
46
DBT key, val;