Searched defs:dbfile (Results 1 - 4 of 4) sorted by relevance

/external/openssl/apps/
H A Dsrp.c291 char *dbfile=NULL; local
337 dbfile= *(++argv);
389 if (dbfile && configfile)
391 BIO_printf(bio_err,"-dbfile and -configfile cannot be specified together.\n");
433 if (!dbfile)
500 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABASE)) == NULL)
512 VERBOSE BIO_printf(bio_err,"Trying to read SRP verifier file \"%s\"\n",dbfile);
514 db = load_index(dbfile, &db_attr);
727 if (!save_index(dbfile, "new", db)) goto err;
730 if (!rotate_index(dbfile, "ne
[all...]
H A Dca.c305 char *dbfile=NULL; local
727 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABASE)) == NULL)
732 db = load_index(dbfile,&db_attr);
890 if ((dbfile=NCONF_get_string(conf,section,ENV_DATABASE)) == NULL)
895 db = load_index(dbfile, &db_attr);
966 dbfile);
981 if (!save_index(dbfile,"new",db)) goto err;
983 if (!rotate_index(dbfile,"new","old")) goto err;
1299 if (!save_index(dbfile, "new", db)) goto err;
1363 if (!rotate_index(dbfile,"ne
[all...]
H A Dapps.c1796 CA_DB *load_index(char *dbfile, DB_ATTR *db_attr) argument
1810 if (BIO_read_filename(in,dbfile) <= 0)
1812 perror(dbfile);
1813 BIO_printf(bio_err,"unable to open '%s'\n",dbfile);
1820 BIO_snprintf(buf[0], sizeof buf[0], "%s.attr", dbfile);
1822 BIO_snprintf(buf[0], sizeof buf[0], "%s-attr", dbfile);
1899 int save_index(const char *dbfile, const char *suffix, CA_DB *db) argument
1911 j = strlen(dbfile) + strlen(suffix);
1919 j = BIO_snprintf(buf[2], sizeof buf[2], "%s.attr", dbfile);
1921 j = BIO_snprintf(buf[2], sizeof buf[2], "%s-attr", dbfile);
1966 rotate_index(const char *dbfile, const char *new_suffix, const char *old_suffix) argument
[all...]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java53 private String dbfile = null; field in class:JDBCConnection
112 dbx.open(dbfile, readonly ? SQLite.Constants.SQLITE_OPEN_READONLY :
148 dbfile = url.substring(8);
150 dbfile = url.substring(13);

Completed in 73 milliseconds