Searched refs:apr_dbm_t (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.1-release/contrib/apr-util/include/
H A Dapr_dbm.h42 typedef struct apr_dbm_t apr_dbm_t; typedef in typeref:struct:apr_dbm_t
89 APU_DECLARE(apr_status_t) apr_dbm_open_ex(apr_dbm_t **dbm, const char* type,
111 APU_DECLARE(apr_status_t) apr_dbm_open(apr_dbm_t **dbm, const char *name,
119 APU_DECLARE(void) apr_dbm_close(apr_dbm_t *dbm);
127 APU_DECLARE(apr_status_t) apr_dbm_fetch(apr_dbm_t *dbm, apr_datum_t key,
135 APU_DECLARE(apr_status_t) apr_dbm_store(apr_dbm_t *dbm, apr_datum_t key,
144 APU_DECLARE(apr_status_t) apr_dbm_delete(apr_dbm_t *dbm, apr_datum_t key);
151 APU_DECLARE(int) apr_dbm_exists(apr_dbm_t *dbm, apr_datum_t key);
158 APU_DECLARE(apr_status_t) apr_dbm_firstkey(apr_dbm_t *db
[all...]
/freebsd-10.1-release/contrib/apr-util/include/private/
H A Dapr_dbm_private.h52 apr_status_t (*open)(apr_dbm_t **pdb, const char *pathname,
57 void (*close)(apr_dbm_t *dbm);
60 apr_status_t (*fetch)(apr_dbm_t *dbm, apr_datum_t key,
64 apr_status_t (*store)(apr_dbm_t *dbm, apr_datum_t key, apr_datum_t value);
67 apr_status_t (*del)(apr_dbm_t *dbm, apr_datum_t key);
70 int (*exists)(apr_dbm_t *dbm, apr_datum_t key);
73 apr_status_t (*firstkey)(apr_dbm_t *dbm, apr_datum_t * pkey);
76 apr_status_t (*nextkey)(apr_dbm_t *dbm, apr_datum_t * pkey);
79 void (*freedatum)(apr_dbm_t *dbm, apr_datum_t data);
93 struct apr_dbm_t struct
[all...]
/freebsd-10.1-release/contrib/apr-util/dbm/
H A Dapr_dbm_ndbm.c50 static apr_status_t set_error(apr_dbm_t *dbm, apr_status_t dbm_said)
73 static apr_status_t vt_ndbm_open(apr_dbm_t **pdb, const char *pathname,
116 static void vt_ndbm_close(apr_dbm_t *dbm)
121 static apr_status_t vt_ndbm_fetch(apr_dbm_t *dbm, apr_datum_t key,
139 static apr_status_t vt_ndbm_store(apr_dbm_t *dbm, apr_datum_t key,
157 static apr_status_t vt_ndbm_del(apr_dbm_t *dbm, apr_datum_t key)
171 static int vt_ndbm_exists(apr_dbm_t *dbm, apr_datum_t key)
183 static apr_status_t vt_ndbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey)
196 static apr_status_t vt_ndbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey)
212 static void vt_ndbm_freedatum(apr_dbm_t *db
[all...]
H A Dapr_dbm_sdbm.c36 static apr_status_t set_error(apr_dbm_t *dbm, apr_status_t dbm_said)
54 static apr_status_t vt_sdbm_open(apr_dbm_t **pdb, const char *pathname,
99 static void vt_sdbm_close(apr_dbm_t *dbm)
104 static apr_status_t vt_sdbm_fetch(apr_dbm_t *dbm, apr_datum_t key,
123 static apr_status_t vt_sdbm_store(apr_dbm_t *dbm, apr_datum_t key,
141 static apr_status_t vt_sdbm_del(apr_dbm_t *dbm, apr_datum_t key)
155 static int vt_sdbm_exists(apr_dbm_t *dbm, apr_datum_t key)
171 static apr_status_t vt_sdbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey)
185 static apr_status_t vt_sdbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey)
198 static void vt_sdbm_freedatum(apr_dbm_t *db
[all...]
H A Dapr_dbm.c193 APU_DECLARE(apr_status_t) apr_dbm_open_ex(apr_dbm_t **pdb, const char *type,
208 APU_DECLARE(apr_status_t) apr_dbm_open(apr_dbm_t **pdb, const char *pathname,
215 APU_DECLARE(void) apr_dbm_close(apr_dbm_t *dbm)
220 APU_DECLARE(apr_status_t) apr_dbm_fetch(apr_dbm_t *dbm, apr_datum_t key,
226 APU_DECLARE(apr_status_t) apr_dbm_store(apr_dbm_t *dbm, apr_datum_t key,
232 APU_DECLARE(apr_status_t) apr_dbm_delete(apr_dbm_t *dbm, apr_datum_t key)
237 APU_DECLARE(int) apr_dbm_exists(apr_dbm_t *dbm, apr_datum_t key)
242 APU_DECLARE(apr_status_t) apr_dbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey)
247 APU_DECLARE(apr_status_t) apr_dbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey)
252 APU_DECLARE(void) apr_dbm_freedatum(apr_dbm_t *db
[all...]
H A Dapr_dbm_gdbm.c54 static apr_status_t set_error(apr_dbm_t *dbm, apr_status_t dbm_said)
79 static apr_status_t vt_gdbm_open(apr_dbm_t **pdb, const char *pathname,
123 static void vt_gdbm_close(apr_dbm_t *dbm)
128 static apr_status_t vt_gdbm_fetch(apr_dbm_t *dbm, apr_datum_t key,
150 static apr_status_t vt_gdbm_store(apr_dbm_t *dbm, apr_datum_t key,
168 static apr_status_t vt_gdbm_del(apr_dbm_t *dbm, apr_datum_t key)
182 static int vt_gdbm_exists(apr_dbm_t *dbm, apr_datum_t key)
192 static apr_status_t vt_gdbm_firstkey(apr_dbm_t *dbm, apr_datum_t *pkey)
209 static apr_status_t vt_gdbm_nextkey(apr_dbm_t *dbm, apr_datum_t *pkey)
229 static void vt_gdbm_freedatum(apr_dbm_t *db
[all...]
H A Dapr_dbm_berkeleydb.c105 static apr_status_t set_error(apr_dbm_t *dbm, apr_status_t dbm_said)
137 static apr_status_t vt_db_open(apr_dbm_t **pdb, const char *pathname,
206 static void vt_db_close(apr_dbm_t *dbm)
215 static apr_status_t vt_db_fetch(apr_dbm_t *dbm, apr_datum_t key,
247 static apr_status_t vt_db_store(apr_dbm_t *dbm, apr_datum_t key,
270 static apr_status_t vt_db_del(apr_dbm_t *dbm, apr_datum_t key)
287 static int vt_db_exists(apr_dbm_t *dbm, apr_datum_t key)
305 static apr_status_t vt_db_firstkey(apr_dbm_t *dbm, apr_datum_t * pkey)
337 static apr_status_t vt_db_nextkey(apr_dbm_t *dbm, apr_datum_t * pkey)
376 static void vt_db_freedatum(apr_dbm_t *db
[all...]
/freebsd-10.1-release/contrib/apr-util/test/
H A Dtestdbm.c63 static void test_dbm_store(abts_case *tc, apr_dbm_t *db, dbm_table_t *table)
81 static void test_dbm_fetch(abts_case *tc, apr_dbm_t *db, dbm_table_t *table)
101 static void test_dbm_delete(abts_case *tc, apr_dbm_t *db, dbm_table_t *table)
116 static void test_dbm_exists(abts_case *tc, apr_dbm_t *db, dbm_table_t *table)
131 static void test_dbm_traversal(abts_case *tc, apr_dbm_t *db, dbm_table_t *table)
168 apr_dbm_t *db;

Completed in 157 milliseconds