Searched refs:dbm (Results 1 - 3 of 3) sorted by relevance
/httpd/modules/cache/ |
H A D | mod_socache_dbm.c | 57 #define DEFAULT_DBM_PREFIX "socache-dbm-" 123 apr_dbm_t *dbm; local 144 if ((rv = apr_dbm_open(&dbm, ctx->data_file, 151 apr_dbm_close(dbm); 197 apr_dbm_t *dbm; local 232 if ((rv = apr_dbm_open(&dbm, ctx->data_file, 241 if ((rv = apr_dbm_store(dbm, dbmkey, dbmval)) != APR_SUCCESS) { 245 apr_dbm_close(dbm); 249 apr_dbm_close(dbm); 265 apr_dbm_t *dbm; local 330 apr_dbm_t *dbm; local 357 apr_dbm_t *dbm; local 465 apr_dbm_t *dbm; local 521 apr_dbm_t *dbm; local [all...] |
/httpd/support/ |
H A D | htdbm.c | 61 apr_dbm_t *dbm; member in struct:htdbm_t 91 if (htdbm->dbm) 92 apr_dbm_close(htdbm->dbm); 93 htdbm->dbm = NULL; 147 return apr_dbm_open_ex(&htdbm->dbm, htdbm->type, htdbm->filename, APR_DBM_RWCREATE, 150 return apr_dbm_open_ex(&htdbm->dbm, htdbm->type, htdbm->filename, 164 if (apr_dbm_exists(htdbm->dbm, key)) 175 return apr_dbm_store(htdbm->dbm, key, val); 184 if (!apr_dbm_exists(htdbm->dbm, key)) 187 return apr_dbm_delete(htdbm->dbm, ke [all...] |
H A D | httxt2dbm.c | 109 static apr_status_t to_dbm(apr_dbm_t *dbm, apr_file_t *fp, apr_pool_t *pool) argument 163 rv = apr_dbm_store(dbm, dbmkey, dbmval);
|
Completed in 14 milliseconds