Lines Matching refs:dbase
1017 db *dbase; in copyfile() local
1027 dbase = find_table(infile, &tbl, TRUE, TRUE, FALSE); in copyfile()
1028 if (dbase == NULL) { in copyfile()
1031 dbase = find_table(infile, &tbl, TRUE, TRUE, TRUE); in copyfile()
1032 if (dbase == NULL) in copyfile()
1039 dbase = find_table(infile, &tbl, TRUE, TRUE, FALSE); in copyfile()
1040 if (dbase == NULL) { in copyfile()
1557 db *dbase = NULL; in find_table_noLDAP() local
1583 dbase = new db(tab); in find_table_noLDAP()
1585 if (dbase == NULL) { in find_table_noLDAP()
1596 WRITELOCKNR(dbase, lret, "w dbase db_dictionary::find_table"); in find_table_noLDAP()
1604 tbl->database = dbase; in find_table_noLDAP()
1607 if (dbase->load()) { // try to load in database in find_table_noLDAP()
1609 WRITEUNLOCK(dbase, dbase, "wu dbase db_dictionary::find_table"); in find_table_noLDAP()
1610 return (dbase); in find_table_noLDAP()
1613 delete dbase; in find_table_noLDAP()
1690 db *dbase = tbl->database; in delete_table_aux() local
1691 if (dbase == NULL) { // need to get desc to access files in delete_table_aux()
1692 dbase = new db(tab); in delete_table_aux()
1695 if (dbase == NULL) { in delete_table_aux()
1702 dbase->remove_files(); // remove physical files in delete_table_aux()
1704 delete dbase; in delete_table_aux()
1902 db *dbase; in db_checkpoint_aux() local
1909 dbase = new db(current->table_name); in db_checkpoint_aux()
1910 if (dbase == NULL) { in db_checkpoint_aux()
1915 if (dbase->load() == 0) { in db_checkpoint_aux()
1919 delete dbase; in db_checkpoint_aux()
1922 status = dbase->checkpoint(); in db_checkpoint_aux()
1923 delete dbase; // unload in db_checkpoint_aux()