Symbol: __db
distrib/special/libstubs/db.c
82
dbp->del = (int (*)(const struct __db *, const DBT*, u_int))__dberr;
distrib/special/libstubs/db.c
83
dbp->fd = (int (*)(const struct __db *))__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;
distrib/special/libstubs/db.c
87
dbp->sync = (int (*)(const struct __db *, u_int))__dberr;
include/db.h
101
int (*fd)(const struct __db *);
include/db.h
94
int (*close)(struct __db *);
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);
include/db.h
99
int (*sync)(const struct __db *, unsigned int);
lib/libc/db/db/db.c
87
dbp->del = (int (*)(const struct __db *, const DBT*, u_int))__dberr;
lib/libc/db/db/db.c
88
dbp->fd = (int (*)(const struct __db *))__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/db/db.c
92
dbp->sync = (int (*)(const struct __db *, u_int))__dberr;
sys/dev/pci/drm/drm_edid.c
5206
#define cea_db_iter_for_each(__db, __iter) \
sys/dev/pci/drm/drm_edid.c
5207
while (((__db) = __cea_db_iter_next(__iter)))