Home | History | Annotate | Download | only in kvm_mkdb

Lines Matching defs:db

81 #include <db.h>
104 static DB *db;
140 * If the existing db file matches the currently running
163 db = dbopen(dbtemp, O_CREAT | O_EXLOCK | O_TRUNC | O_RDWR,
165 if (db == NULL)
167 create_knlist(nlistpath, db);
168 if (db->close(db)) {
170 db = NULL;
173 db = NULL;
192 if (db != NULL)
193 db->close(db);