include/db.h
118
int (*del) (const struct __db *, const DBT *, unsigned int);
include/db.h
119
int (*get) (const struct __db *, const DBT *, DBT *, unsigned int);
include/db.h
120
int (*put) (const struct __db *, DBT *, const DBT *, unsigned int);
include/db.h
121
int (*seq) (const struct __db *, DBT *, DBT *, unsigned int);
include/db.h
139
(const DBT *, const DBT *);
include/db.h
141
(const DBT *, const DBT *);
lib/libc/db/btree/bt_delete.c
288
__bt_bdelete(BTREE *t, const DBT *key)
lib/libc/db/btree/bt_delete.c
468
__bt_dleaf(BTREE *t, const DBT *key, PAGE *h, u_int idx)
lib/libc/db/btree/bt_delete.c
529
__bt_curdel(BTREE *t, const DBT *key, PAGE *h, u_int idx)
lib/libc/db/btree/bt_delete.c
53
static int __bt_bdelete(BTREE *, const DBT *);
lib/libc/db/btree/bt_delete.c
54
static int __bt_curdel(BTREE *, const DBT *, PAGE *, u_int);
lib/libc/db/btree/bt_delete.c
65
__bt_delete(const DB *dbp, const DBT *key, u_int flags)
lib/libc/db/btree/bt_get.c
66
__bt_get(const DB *dbp, const DBT *key, DBT *data, u_int flags)
lib/libc/db/btree/bt_overflow.c
140
__ovfl_put(BTREE *t, const DBT *dbt, pgno_t *pg)
lib/libc/db/btree/bt_put.c
268
bt_fast(BTREE *t, const DBT *key, const DBT *data, int *exactp)
lib/libc/db/btree/bt_put.c
54
static EPG *bt_fast(BTREE *, const DBT *, const DBT *, int *);
lib/libc/db/btree/bt_put.c
70
__bt_put(const DB *dbp, DBT *key, const DBT *data, u_int flags)
lib/libc/db/btree/bt_put.c
73
DBT tkey, tdata;
lib/libc/db/btree/bt_search.c
151
__bt_snext(BTREE *t, PAGE *h, const DBT *key, int *exactp)
lib/libc/db/btree/bt_search.c
228
__bt_sprev(BTREE *t, PAGE *h, const DBT *key, int *exactp)
lib/libc/db/btree/bt_search.c
51
static int __bt_snext(BTREE *, PAGE *, const DBT *, int *);
lib/libc/db/btree/bt_search.c
52
static int __bt_sprev(BTREE *, PAGE *, const DBT *, int *);
lib/libc/db/btree/bt_search.c
69
__bt_search(BTREE *t, const DBT *key, int *exactp)
lib/libc/db/btree/bt_seq.c
156
__bt_seqset(BTREE *t, EPG *ep, DBT *key, int flags)
lib/libc/db/btree/bt_seq.c
464
__bt_first(BTREE *t, const DBT *key, EPG *erval, int *exactp)
lib/libc/db/btree/bt_seq.c
54
static int __bt_first(BTREE *, const DBT *, EPG *, int *);
lib/libc/db/btree/bt_seq.c
56
static int __bt_seqset(BTREE *, EPG *, DBT *, int);
lib/libc/db/btree/bt_seq.c
82
__bt_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
lib/libc/db/btree/bt_split.c
82
__bt_split(BTREE *t, PAGE *sp, const DBT *key, const DBT *data, int flags,
lib/libc/db/btree/bt_split.c
87
DBT a, b;
lib/libc/db/btree/bt_utils.c
148
__bt_cmp(BTREE *t, const DBT *k1, EPG *e)
lib/libc/db/btree/bt_utils.c
152
DBT k2;
lib/libc/db/btree/bt_utils.c
208
__bt_defcmp(const DBT *a, const DBT *b)
lib/libc/db/btree/bt_utils.c
237
__bt_defpfx(const DBT *a, const DBT *b)
lib/libc/db/btree/bt_utils.c
69
__bt_ret(BTREE *t, EPG *e, DBT *key, DBT *rkey, DBT *data, DBT *rdata, int copy)
lib/libc/db/btree/btree.h
327
DBT key; /* B: Saved key, or key.data == NULL. */
lib/libc/db/btree/btree.h
374
DBT bt_rkey; /* returned key */
lib/libc/db/btree/btree.h
375
DBT bt_rdata; /* returned data */
lib/libc/db/btree/btree.h
388
int (*bt_cmp)(const DBT *, const DBT *);
lib/libc/db/btree/btree.h
390
size_t (*bt_pfx)(const DBT *, const DBT *);
lib/libc/db/btree/extern.h
37
int __bt_cmp(BTREE *, const DBT *, EPG *);
lib/libc/db/btree/extern.h
39
int __bt_defcmp(const DBT *, const DBT *);
lib/libc/db/btree/extern.h
40
size_t __bt_defpfx(const DBT *, const DBT *);
lib/libc/db/btree/extern.h
41
int __bt_delete(const DB *, const DBT *, unsigned int);
lib/libc/db/btree/extern.h
42
int __bt_dleaf(BTREE *, const DBT *, PAGE *, unsigned int);
lib/libc/db/btree/extern.h
45
int __bt_get(const DB *, const DBT *, DBT *, unsigned int);
lib/libc/db/btree/extern.h
50
int __bt_put(const DB *dbp, DBT *, const DBT *, unsigned int);
lib/libc/db/btree/extern.h
52
int __bt_ret(BTREE *, EPG *, DBT *, DBT *, DBT *, DBT *, int);
lib/libc/db/btree/extern.h
53
EPG *__bt_search(BTREE *, const DBT *, int *);
lib/libc/db/btree/extern.h
54
int __bt_seq(const DB *, DBT *, DBT *, unsigned int);
lib/libc/db/btree/extern.h
57
const DBT *, const DBT *, int, size_t, uint32_t);
lib/libc/db/btree/extern.h
62
int __ovfl_put(BTREE *, const DBT *, pgno_t *);
lib/libc/db/db/db.c
101
dbp->del = (int (*)(const DB *, const DBT *, u_int))__dberr;
lib/libc/db/db/db.c
103
dbp->get = (int (*)(const DB *, const DBT *, DBT *, u_int))__dberr;
lib/libc/db/db/db.c
104
dbp->put = (int (*)(const DB *, DBT *, const DBT *, u_int))__dberr;
lib/libc/db/db/db.c
105
dbp->seq = (int (*)(const DB *, DBT *, DBT *, u_int))__dberr;
lib/libc/db/hash/extern.h
35
int __addel(HTAB *, BUFHEAD *, const DBT *, const DBT *);
lib/libc/db/hash/extern.h
37
int __big_insert(HTAB *, BUFHEAD *, const DBT *, const DBT *);
lib/libc/db/hash/extern.h
38
int __big_keydata(HTAB *, BUFHEAD *, DBT *, DBT *, int);
lib/libc/db/hash/extern.h
39
int __big_return(HTAB *, BUFHEAD *, int, DBT *, int);
lib/libc/db/hash/hash.c
522
hash_get(const DB *dbp, const DBT *key, DBT *data, uint32_t flag)
lib/libc/db/hash/hash.c
535
hash_put(const DB *dbp, DBT *key, const DBT *data, uint32_t flag)
lib/libc/db/hash/hash.c
554
hash_delete(const DB *dbp, const DBT *key, uint32_t flag)
lib/libc/db/hash/hash.c
574
hash_access(HTAB *hashp, ACTION action, DBT *key, DBT *val)
lib/libc/db/hash/hash.c
62
static int hash_access(HTAB *, ACTION, DBT *, DBT *);
lib/libc/db/hash/hash.c
64
static int hash_delete(const DB *, const DBT *, uint32_t);
lib/libc/db/hash/hash.c
66
static int hash_get(const DB *, const DBT *, DBT *, uint32_t);
lib/libc/db/hash/hash.c
67
static int hash_put(const DB *, DBT *, const DBT *, uint32_t);
lib/libc/db/hash/hash.c
69
static int hash_seq(const DB *, DBT *, DBT *, uint32_t);
lib/libc/db/hash/hash.c
723
hash_seq(const DB *dbp, DBT *key, DBT *data, uint32_t flag)
lib/libc/db/hash/hash_bigkey.c
385
__big_return(HTAB *hashp, BUFHEAD *bufp, int ndx, DBT *val, int set_current)
lib/libc/db/hash/hash_bigkey.c
526
__big_keydata(HTAB *hashp, BUFHEAD *bufp, DBT *key, DBT *val, int set)
lib/libc/db/hash/hash_bigkey.c
540
collect_key(HTAB *hashp, BUFHEAD *bufp, int len, DBT *val, int set)
lib/libc/db/hash/hash_bigkey.c
594
DBT key, val;
lib/libc/db/hash/hash_bigkey.c
73
static int collect_key(HTAB *, BUFHEAD *, int, DBT *, int);
lib/libc/db/hash/hash_bigkey.c
86
__big_insert(HTAB *hashp, BUFHEAD *bufp, const DBT *key, const DBT *val)
lib/libc/db/hash/hash_page.c
192
DBT key, val;
lib/libc/db/hash/hash_page.c
300
DBT key, val;
lib/libc/db/hash/hash_page.c
409
__addel(HTAB *hashp, BUFHEAD *bufp, const DBT *key, const DBT *val)
lib/libc/db/hash/hash_page.c
80
static void putpair(char *, const DBT *, const DBT *);
lib/libc/db/hash/hash_page.c
81
static void squeeze_key(uint16_t *, const DBT *, const DBT *);
lib/libc/db/hash/hash_page.c
869
squeeze_key(uint16_t *sp, const DBT *key, const DBT *val)
lib/libc/db/hash/hash_page.c
98
putpair(char *p, const DBT *key, const DBT *val)
lib/libc/db/hash/ndbmdatum.c
114
DBT dbtretkey, dbtretdata;
lib/libc/db/hash/ndbmdatum.c
133
DBT dbtkey;
lib/libc/db/hash/ndbmdatum.c
153
DBT dbtkey, dbtdata;
lib/libc/db/hash/ndbmdatum.c
70
DBT dbtkey, dbtretdata;
lib/libc/db/hash/ndbmdatum.c
94
DBT dbtretkey, dbtretdata;
lib/libc/db/recno/extern.h
37
int __rec_delete(const DB *, const DBT *, u_int);
lib/libc/db/recno/extern.h
43
int __rec_get(const DB *, const DBT *, DBT *, u_int);
lib/libc/db/recno/extern.h
44
int __rec_iput(BTREE *, recno_t, const DBT *, u_int);
lib/libc/db/recno/extern.h
45
int __rec_put(const DB *dbp, DBT *, const DBT *, u_int);
lib/libc/db/recno/extern.h
46
int __rec_ret(BTREE *, EPG *, recno_t, DBT *, DBT *);
lib/libc/db/recno/extern.h
48
int __rec_seq(const DB *, DBT *, DBT *, u_int);
lib/libc/db/recno/rec_close.c
114
DBT data, key;
lib/libc/db/recno/rec_delete.c
67
__rec_delete(const DB *dbp, const DBT *key, u_int flags)
lib/libc/db/recno/rec_get.c
123
DBT data;
lib/libc/db/recno/rec_get.c
176
DBT data;
lib/libc/db/recno/rec_get.c
230
DBT data;
lib/libc/db/recno/rec_get.c
277
DBT data;
lib/libc/db/recno/rec_get.c
66
__rec_get(const DB *dbp, const DBT *key, DBT *data, u_int flags)
lib/libc/db/recno/rec_put.c
193
__rec_iput(BTREE *t, recno_t nrec, const DBT *data, u_int flags)
lib/libc/db/recno/rec_put.c
195
DBT tdata;
lib/libc/db/recno/rec_put.c
65
__rec_put(const DB *dbp, DBT *key, const DBT *data, u_int flags)
lib/libc/db/recno/rec_put.c
68
DBT fdata, tdata;
lib/libc/db/recno/rec_seq.c
64
__rec_seq(const DB *dbp, DBT *key, DBT *data, u_int flags)
lib/libc/db/recno/rec_utils.c
64
__rec_ret(BTREE *t, EPG *e, recno_t nrec, DBT *key, DBT *data)
lib/libc/gen/getcap.c
666
DBT key;
lib/libc/gen/getcap.c
667
DBT data;
lib/libc/gen/getnetgrent.c
207
DBT key, data;
lib/libc/gen/getpwent.c
1702
DBT key, data;
lib/libc/gen/getpwent.c
1703
DBT pkey, pdata;
lib/libc/gen/getpwent.c
1762
DBT key, data;
lib/libc/gen/getpwent.c
1794
DBT key, data;
lib/libc/gen/getpwent.c
184
DBT key;
lib/libc/gen/getpwent.c
185
DBT value;
lib/libc/gen/getpwent.c
1949
DBT key;
lib/libc/gen/getpwent.c
238
_pw_getkey(DB *db, DBT *key,
lib/libc/gen/getpwent.c
243
DBT data;
lib/libc/gen/getpwent.c
460
DBT key;
lib/libc/gen/utmpx.c
429
DBT key, data;
lib/libc/gen/utmpx.c
467
DBT key, data;
sbin/init/init.c
1013
DBT key;
sbin/init/init.c
1031
DBT key;
sbin/init/init.c
1032
DBT data;
sbin/init/init.c
989
DBT key;
sbin/init/init.c
990
DBT data;
share/examples/refuse/dbfs/dbfs.c
119
DBT k;
share/examples/refuse/dbfs/dbfs.c
120
DBT v;
share/examples/refuse/dbfs/dbfs.c
140
DBT k;
share/examples/refuse/dbfs/dbfs.c
141
DBT v;
share/examples/refuse/dbfs/dbfs.c
58
DBT k;
share/examples/refuse/dbfs/dbfs.c
59
DBT v;
share/examples/refuse/dbfs/dbfs.c
89
static DBT k;
share/examples/refuse/dbfs/dbfs.c
91
DBT v;
share/examples/refuse/id3fs/id3fs.c
164
DBT k;
share/examples/refuse/id3fs/id3fs.c
165
DBT v;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
152
DBT key;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
153
DBT data;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
173
DBT key;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
174
DBT data;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
476
DBT key;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
477
DBT data;
sys/dev/microcode/aic7xxx/aicasm_symbol.c
91
DBT key;
tests/lib/libc/db/h_db.c
105
DBT data, key, keydata;
tests/lib/libc/db/h_db.c
351
compare(DBT *db1, DBT *db2)
tests/lib/libc/db/h_db.c
370
get(DB *dbp, DBT *kp)
tests/lib/libc/db/h_db.c
372
DBT data;
tests/lib/libc/db/h_db.c
398
getdata(DB *dbp, DBT *kp, DBT *dp)
tests/lib/libc/db/h_db.c
413
put(DB *dbp, DBT *kp, DBT *dp)
tests/lib/libc/db/h_db.c
428
rem(DB *dbp, DBT *kp)
tests/lib/libc/db/h_db.c
465
seq(DB *dbp, DBT *kp)
tests/lib/libc/db/h_db.c
467
DBT data;
tests/lib/libc/db/h_db.c
497
DBT key, data;
tests/lib/libc/db/h_db.c
64
static void compare(DBT *, DBT *);
tests/lib/libc/db/h_db.c
67
static void get(DB *, DBT *);
tests/lib/libc/db/h_db.c
68
static void getdata(DB *, DBT *, DBT *);
tests/lib/libc/db/h_db.c
69
static void put(DB *, DBT *, DBT *);
tests/lib/libc/db/h_db.c
70
static void rem(DB *, DBT *);
tests/lib/libc/db/h_db.c
74
static void seq(DB *, DBT *);
tests/lib/libc/db/h_lfsr.c
61
DBT key, val;
tests/lib/libc/db/t_db_hash_seq.c
117
state_sizecheck(const DBT *t)
tests/lib/libc/db/t_db_hash_seq.c
129
DBT k;
tests/lib/libc/db/t_db_hash_seq.c
156
DBT k, v;
tests/lib/libc/db/t_db_hash_seq.c
185
DBT k, v;
tests/lib/libc/db/t_db_hash_seq.c
214
DBT k, v;
usr.bin/cap_mkdb/cap_mkdb.c
177
DBT key, data;
usr.bin/db/db.c
381
db_print(DBT *key, DBT *val)
usr.bin/db/db.c
416
DBT key, val;
usr.bin/db/db.c
427
db_makekey(DBT *key, char *keystr, int downcase, int decode)
usr.bin/db/db.c
452
DBT key;
usr.bin/db/db.c
482
DBT key, val;
usr.bin/db/db.c
512
DBT key, val, want;
usr.bin/db/db.c
563
DBT key, val;
usr.bin/db/db.c
74
static void db_print(DBT *, DBT *);
usr.bin/finger/finger.c
192
DBT data, key;
usr.bin/finger/finger.c
223
DBT data, key;
usr.bin/finger/lprint.c
88
DBT data, key;
usr.bin/finger/sprint.c
72
DBT data, key;
usr.bin/finger/util.c
168
DBT key, data;
usr.bin/finger/util.c
252
DBT data, key;
usr.bin/finger/util.c
287
DBT data, key;
usr.bin/tsort/tsort.c
241
DBT data, key;
usr.bin/vacation/vacation.c
536
DBT key, data;
usr.bin/vacation/vacation.c
566
DBT key, data;
usr.bin/vacation/vacation.c
582
DBT key, data;
usr.sbin/dev_mkdb/dev_mkdb.c
147
DBT data, key;
usr.sbin/kvm_mkdb/nlist_aout.c
113
DBT data, key;
usr.sbin/kvm_mkdb/nlist_coff.c
88
DBT key, data;
usr.sbin/kvm_mkdb/nlist_ecoff.c
89
DBT key, data;
usr.sbin/kvm_mkdb/nlist_elf32.c
99
DBT key, data;
usr.sbin/kvm_mkdb/testdb.c
63
DBT rec;
usr.sbin/lastlogin/lastlogin.c
305
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
209
DBT data, key;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
307
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
355
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
429
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
499
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
524
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
557
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
589
DBT key, data;
usr.sbin/netgroup_mkdb/netgroup_mkdb.c
640
DBT key, data;
usr.sbin/pwd_mkdb/pwd_mkdb.c
1036
DBT data, key;
usr.sbin/pwd_mkdb/pwd_mkdb.c
730
DBT data, key;
usr.sbin/pwd_mkdb/pwd_mkdb.c
777
DBT data, key;
usr.sbin/pwd_mkdb/pwd_mkdb.c
812
DBT data, key;
usr.sbin/pwd_mkdb/pwd_mkdb.c
901
DBT key;
usr.sbin/pwd_mkdb/pwd_mkdb.c
934
DBT key, data;
usr.sbin/rpc.statd/statd.c
211
DBT data;
usr.sbin/rpc.statd/statd.c
240
DBT key, data;
usr.sbin/rpc.statd/statd.c
279
DBT key, data;
usr.sbin/rpc.statd/statd.c
313
walk_one(int (*fun)(DBT *, HostInfo *, void *), DBT *key, DBT *data, void *ptr)
usr.sbin/rpc.statd/statd.c
334
walk_db(int (*fun)(DBT *, HostInfo *, void *), void *ptr)
usr.sbin/rpc.statd/statd.c
336
DBT key, data;
usr.sbin/rpc.statd/statd.c
388
reset_host(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
407
check_work(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
419
unmon_host(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
435
notify_one(DBT *key, HostInfo *hi, void *ptr)
usr.sbin/rpc.statd/statd.c
494
DBT data;
usr.sbin/rpc.statd/statd.c
74
static DBT undefkey = {
usr.sbin/rpc.statd/statd.c
81
static int walk_one(int (*fun )(DBT *, HostInfo *, void *), DBT *, DBT *, void *);
usr.sbin/rpc.statd/statd.c
82
static int walk_db(int (*fun )(DBT *, HostInfo *, void *), void *);
usr.sbin/rpc.statd/statd.c
83
static int reset_host(DBT *, HostInfo *, void *);
usr.sbin/rpc.statd/statd.c
84
static int check_work(DBT *, HostInfo *, void *);
usr.sbin/rpc.statd/statd.c
85
static int unmon_host(DBT *, HostInfo *, void *);
usr.sbin/rpc.statd/statd.c
86
static int notify_one(DBT *, HostInfo *, void *);
usr.sbin/sa/extern.h
67
typedef int (*cmpf_t)(const DBT *, const DBT *);
usr.sbin/sa/extern.h
70
const char *fmt(const DBT *);
usr.sbin/sa/main.c
404
cmp_usrsys(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
425
cmp_avgusrsys(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
449
cmp_dkio(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
466
cmp_avgdkio(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
487
cmp_cpumem(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
504
cmp_avgcpumem(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
529
cmp_calls(const DBT *d1, const DBT *d2)
usr.sbin/sa/main.c
555
fmt(const DBT *key)
usr.sbin/sa/main.c
66
static int cmp_usrsys(const DBT *, const DBT *);
usr.sbin/sa/main.c
67
static int cmp_avgusrsys(const DBT *, const DBT *);
usr.sbin/sa/main.c
68
static int cmp_dkio(const DBT *, const DBT *);
usr.sbin/sa/main.c
69
static int cmp_avgdkio(const DBT *, const DBT *);
usr.sbin/sa/main.c
70
static int cmp_cpumem(const DBT *, const DBT *);
usr.sbin/sa/main.c
71
static int cmp_avgcpumem(const DBT *, const DBT *);
usr.sbin/sa/main.c
72
static int cmp_calls(const DBT *, const DBT *);
usr.sbin/sa/pdb.c
137
DBT key, data;
usr.sbin/sa/pdb.c
180
DBT key, data;
usr.sbin/sa/pdb.c
228
DBT key, data, ndata;
usr.sbin/sa/pdb.c
71
DBT key, data;
usr.sbin/sa/usrdb.c
142
DBT key, data;
usr.sbin/sa/usrdb.c
193
DBT key, data;
usr.sbin/sa/usrdb.c
244
DBT key, data;
usr.sbin/sa/usrdb.c
293
uid_compare(const DBT *k1, const DBT *k2)
usr.sbin/sa/usrdb.c
53
static int uid_compare(const DBT *, const DBT *);
usr.sbin/sa/usrdb.c
74
DBT key, data;
usr.sbin/services_mkdb/output_db.c
131
killproto(DBT *key)
usr.sbin/services_mkdb/output_db.c
142
store(DBT *key, DBT *data, int warndup)
usr.sbin/services_mkdb/output_db.c
67
static void store(DBT *, DBT *, int);
usr.sbin/services_mkdb/output_db.c
68
static void killproto(DBT *);
usr.sbin/services_mkdb/output_db.c
97
DBT data, key;
usr.sbin/services_mkdb/uniq.c
70
DBT key;
usr.sbin/services_mkdb/uniq.c
71
static const DBT data = { NULL, 0 };
usr.sbin/ypserv/common/ypdb.c
190
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
217
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
241
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
264
DBT nk, nd;
usr.sbin/ypserv/common/ypdb.c
286
DBT nk;
usr.sbin/ypserv/common/ypdb.c
307
DBT nk, nd;