Home | History | Annotate | Download | only in apps

Lines Matching refs:db

1830 				"error on line %ld of db attribute file '%s'\n"
1847 retdb->db = tmpdb;
1875 int index_index(CA_DB *db)
1877 if (!TXT_DB_create_index(db->db, DB_serial, NULL,
1883 db->db->error,db->db->arg1,db->db->arg2);
1887 if (db->attributes.unique_subject
1888 && !TXT_DB_create_index(db->db, DB_name, index_name_qual,
1893 db->db->error,db->db->arg1,db->db->arg2);
1899 int save_index(const char *dbfile, const char *suffix, CA_DB *db)
1942 j=TXT_DB_write(out,db->db);
1958 db->attributes.unique_subject ? "yes" : "no");
2078 void free_index(CA_DB *db)
2080 if (db)
2082 if (db->db) TXT_DB_free(db->db);
2083 OPENSSL_free(db);