Symbol: dbopen
crypto/heimdal/lib/hdb/db.c
269
db->hdb_db = dbopen(fn, flags, mode, DB_BTREE, NULL);
crypto/heimdal/lib/hdb/db.c
273
db->hdb_db = dbopen(db->hdb_name, flags, mode, DB_BTREE, NULL);
crypto/heimdal/lib/hdb/hdb-mitdb.c
843
db->hdb_db = dbopen(actual_fn, flags, mode, DB_BTREE, NULL);
crypto/heimdal/lib/hdb/hdb-mitdb.c
850
db->hdb_db = dbopen(actual_fn, flags, mode, DB_BTREE, NULL);
crypto/heimdal/lib/hdb/hdb-mitdb.c
857
db->hdb_db = dbopen(db->hdb_name, flags, mode, DB_BTREE, NULL);
crypto/heimdal/lib/roken/getcap.c
295
if ((capdbp = dbopen(pbuf, O_RDONLY, 0, DB_HASH, 0))
crypto/heimdal/lib/roken/ndbm_wrap.c
188
db = dbopen(fn, flags, mode, DB_BTREE, NULL);
crypto/krb5/src/plugins/kdb/db2/adb_openclose.c
329
db->db = dbopen(db->filename, O_RDWR, 0600, DB_BTREE, &db->btinfo);
crypto/krb5/src/plugins/kdb/db2/adb_openclose.c
331
db->db = dbopen(db->filename, O_RDWR, 0600, DB_HASH, &db->info);
crypto/krb5/src/plugins/kdb/db2/adb_openclose.c
36
db = dbopen(filename, O_RDWR | O_CREAT | O_EXCL, 0600, DB_BTREE, &btinfo);
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
369
db = dbopen(fname, flags, mode,
crypto/krb5/src/plugins/kdb/db2/kdb_db2.c
374
db = dbopen(fname, flags, mode,
crypto/krb5/src/plugins/kdb/db2/libdb2/test/SEQ_TEST/t.c
25
if ((dbp = dbopen("test.db",O_RDWR | O_CREAT | O_BINARY, 0664
crypto/krb5/src/plugins/kdb/db2/libdb2/test/SEQ_TEST/t.c
45
if ((dbp = dbopen("test.db", O_RDWR | O_BINARY, 0664
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
239
db = dbopen(*argv == NULL ? NULL : *argv, omode|O_BINARY,
crypto/krb5/src/plugins/kdb/db2/libdb2/test/btree.tests/main.c
242
db = dbopen(*argv == NULL ? NULL : *argv, O_CREAT|omode|O_BINARY,
crypto/krb5/src/plugins/kdb/db2/libdb2/test/dbtest.c
198
if ((dbp = dbopen(fname,
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/driver2.c
84
if (!(db = dbopen("bigtest", O_RDWR | O_CREAT | O_BINARY, 0644, DB_HASH, &info))) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/tcreat3.c
74
if (!(dbp = dbopen( "hashtest",
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/tdel.c
77
if (!(dbp = dbopen( NULL, O_CREAT|O_RDWR|O_BINARY, 0400, DB_HASH, &ctl))) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/thash4.c
78
if (!(dbp = dbopen( NULL, O_CREAT|O_RDWR|O_BINARY, 0400, DB_HASH, &ctl))) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/tread2.c
77
if (!(dbp = dbopen( "hashtest", O_RDONLY|O_BINARY, 0400, DB_HASH, &ctl))) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/tseq.c
66
if (!(dbp = dbopen( "hashtest", O_RDONLY|O_BINARY, 0400, DB_HASH, NULL))) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash1.tests/tverify.c
78
if (!(dbp = dbopen( "hashtest", O_RDONLY|O_BINARY, 0400, DB_HASH, &ctl))) {
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash2.tests/bigtest.c
23
db = dbopen("big2.db", O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0664, DB_HASH, &info);
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash2.tests/passtest.c
101
db = dbopen("/usr/tmp/passwd.db", O_RDWR, 0664, DB_HASH, &passwd);
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash2.tests/passtest.c
126
db = dbopen("/usr/tmp/passwd.db", O_RDWR|O_BINARY, 0664, DB_HASH, &passwd);
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash2.tests/passtest.c
154
db = dbopen("/usr/tmp/passwd.db", O_RDWR|O_BINARY, 0664, DB_HASH, &passwd);
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash2.tests/passtest.c
33
db = dbopen("/usr/tmp/passwd.db", O_RDWR|O_CREAT|O_TRUNC|O_BINARY, 0664, DB_HASH,
crypto/krb5/src/plugins/kdb/db2/libdb2/test/hash2.tests/passtest.c
69
db = dbopen("/usr/tmp/passwd.db", O_RDWR|O_BINARY, 0664, DB_HASH, &passwd);
include/db.h
206
DB *dbopen(const char *, int, int, DBTYPE, const void *);
lib/libc/db/test/btree.tests/main.c
166
db = dbopen(*argv == NULL ? NULL : *argv, O_RDWR,
lib/libc/db/test/btree.tests/main.c
169
db = dbopen(*argv == NULL ? NULL : *argv, O_CREAT|O_RDWR,
lib/libc/db/test/dbtest.c
151
if ((dbp = dbopen(fname,
lib/libc/db/test/hash.tests/driver2.c
72
if (!(db = dbopen("bigtest", O_RDWR | O_CREAT, 0644, DB_HASH, &info))) {
lib/libc/db/test/hash.tests/tcreat3.c
62
if (!(dbp = dbopen( "hashtest",
lib/libc/db/test/hash.tests/tdel.c
65
if (!(dbp = dbopen( NULL, O_CREAT|O_RDWR, 0400, DB_HASH, &ctl))) {
lib/libc/db/test/hash.tests/thash4.c
67
if (!(dbp = dbopen( NULL, O_CREAT|O_RDWR, 0400, DB_HASH, &ctl))) {
lib/libc/db/test/hash.tests/tread2.c
65
if (!(dbp = dbopen( "hashtest", O_RDONLY, 0400, DB_HASH, &ctl))) {
lib/libc/db/test/hash.tests/tseq.c
54
if (!(dbp = dbopen( "hashtest", O_RDONLY, 0400, DB_HASH, NULL))) {
lib/libc/db/test/hash.tests/tverify.c
66
if (!(dbp = dbopen( "hashtest", O_RDONLY, 0400, DB_HASH, &ctl))) {
lib/libc/gen/getcap.c
240
if ((capdbp = dbopen(pbuf, O_RDONLY, 0, DB_HASH, 0))
lib/libc/gen/getpwent.c
1550
(*db = dbopen(NULL, O_RDWR, 600, DB_HASH, 0)) == NULL)
lib/libc/gen/getpwent.c
726
(res = dbopen(_PATH_SMP_DB, O_RDONLY, 0, DB_HASH, NULL)) == NULL)
lib/libc/gen/getpwent.c
727
res = dbopen(_PATH_MP_DB, O_RDONLY, 0, DB_HASH, NULL);
lib/libc/net/getservent.c
535
st->db = dbopen(_PATH_SERVICES_DB, O_RDONLY, 0, DB_HASH, NULL);
libexec/ypxfr/yp_dbwrite.c
71
dbp = dbopen(buf,flags ? flags : FLAGS,PERM_SECURE,DB_HASH,&openinfo);
sbin/init/init.c
1199
if ((session_db = dbopen(NULL, O_RDWR, 0, DB_HASH, NULL)) == NULL) {
sys/dev/aic7xxx/aicasm/aicasm_symbol.c
134
symtable = dbopen(/*filename*/NULL,
usr.bin/cap_mkdb/cap_mkdb.c
109
if ((capdbp = dbopen(capname, O_CREAT | O_TRUNC | O_RDWR,
usr.bin/finger/util.c
154
(db = dbopen(NULL, O_RDWR, 0, DB_BTREE, NULL)) == NULL)
usr.bin/tsort/tsort.c
233
(db = dbopen(NULL, O_RDWR, 0, DB_HASH, NULL)) == NULL)
usr.sbin/pwd_mkdb/pwd_mkdb.c
209
dp = dbopen(buf,
usr.sbin/pwd_mkdb/pwd_mkdb.c
216
sdp = dbopen(sbuf,
usr.sbin/pwd_mkdb/pwd_mkdb.c
226
pw_db = dbopen(_PATH_MP_DB, O_RDONLY, 0, DB_HASH, NULL);
usr.sbin/pwd_mkdb/pwd_mkdb.c
273
dp = dbopen(buf,
usr.sbin/pwd_mkdb/pwd_mkdb.c
279
sdp = dbopen(sbuf,
usr.sbin/sa/db.c
154
if ((ddb = dbopen(dbname, O_RDWR|O_CREAT|O_TRUNC, 0644,
usr.sbin/sa/db.c
63
if ((*mdb = dbopen(NULL, O_RDWR, 0, DB_BTREE, bti)) == NULL)
usr.sbin/sa/db.c
69
if ((ddb = dbopen(dbname, O_RDONLY, 0, DB_BTREE, bti)) == NULL) {
usr.sbin/sa/pdb.c
180
output_pacct_db = dbopen(NULL, O_RDWR, 0, DB_BTREE, &bti);
usr.sbin/services_mkdb/services_mkdb.c
142
db = dbopen(tname, O_RDWR | O_CREAT | O_EXCL,
usr.sbin/services_mkdb/uniq.c
67
if ((db = dbopen(NULL, O_RDWR, 0, DB_HASH, &hinfo)) == NULL)
usr.sbin/yp_mkdb/yp_mkdb.c
73
return(dbopen(path, flags, PERM_SECURE, DB_HASH, &openinfo));
usr.sbin/ypserv/yp_dblookup.c
402
dbp = dbopen(buf, O_RDONLY, PERM_SECURE, DB_HASH, NULL);