Lines Matching refs:dbase

1016 	db	*dbase;  in copyfile()  local
1026 dbase = find_table(infile, &tbl, TRUE, TRUE, FALSE); in copyfile()
1027 if (dbase == NULL) { in copyfile()
1030 dbase = find_table(infile, &tbl, TRUE, TRUE, TRUE); in copyfile()
1031 if (dbase == NULL) in copyfile()
1038 dbase = find_table(infile, &tbl, TRUE, TRUE, FALSE); in copyfile()
1039 if (dbase == NULL) { in copyfile()
1556 db *dbase = NULL; in find_table_noLDAP() local
1582 dbase = new db(tab); in find_table_noLDAP()
1584 if (dbase == NULL) { in find_table_noLDAP()
1595 WRITELOCKNR(dbase, lret, "w dbase db_dictionary::find_table"); in find_table_noLDAP()
1603 tbl->database = dbase; in find_table_noLDAP()
1606 if (dbase->load()) { // try to load in database in find_table_noLDAP()
1608 WRITEUNLOCK(dbase, dbase, "wu dbase db_dictionary::find_table"); in find_table_noLDAP()
1609 return (dbase); in find_table_noLDAP()
1612 delete dbase; in find_table_noLDAP()
1689 db *dbase = tbl->database; in delete_table_aux() local
1690 if (dbase == NULL) { // need to get desc to access files in delete_table_aux()
1691 dbase = new db(tab); in delete_table_aux()
1694 if (dbase == NULL) { in delete_table_aux()
1701 dbase->remove_files(); // remove physical files in delete_table_aux()
1703 delete dbase; in delete_table_aux()
1901 db *dbase; in db_checkpoint_aux() local
1908 dbase = new db(current->table_name); in db_checkpoint_aux()
1909 if (dbase == NULL) { in db_checkpoint_aux()
1914 if (dbase->load() == 0) { in db_checkpoint_aux()
1918 delete dbase; in db_checkpoint_aux()
1921 status = dbase->checkpoint(); in db_checkpoint_aux()
1922 delete dbase; // unload in db_checkpoint_aux()