Data Structures | |
struct | apr_sdbm_datum_t |
Defines | |
#define | APR_SDBM_DIRFEXT ".dir" |
#define | APR_SDBM_PAGFEXT ".pag" |
#define | APR_SDBM_INSERT 0 |
#define | APR_SDBM_REPLACE 1 |
#define | APR_SDBM_INSERTDUP 2 |
Typedefs | |
typedef apr_sdbm_t | apr_sdbm_t |
Functions | |
apr_status_t | apr_sdbm_open (apr_sdbm_t **db, const char *name, apr_int32_t mode, apr_fileperms_t perms, apr_pool_t *p) |
apr_status_t | apr_sdbm_close (apr_sdbm_t *db) |
apr_status_t | apr_sdbm_lock (apr_sdbm_t *db, int type) |
apr_status_t | apr_sdbm_unlock (apr_sdbm_t *db) |
apr_status_t | apr_sdbm_fetch (apr_sdbm_t *db, apr_sdbm_datum_t *value, apr_sdbm_datum_t key) |
apr_status_t | apr_sdbm_store (apr_sdbm_t *db, apr_sdbm_datum_t key, apr_sdbm_datum_t value, int opt) |
apr_status_t | apr_sdbm_delete (apr_sdbm_t *db, const apr_sdbm_datum_t key) |
apr_status_t | apr_sdbm_firstkey (apr_sdbm_t *db, apr_sdbm_datum_t *key) |
apr_status_t | apr_sdbm_nextkey (apr_sdbm_t *db, apr_sdbm_datum_t *key) |
int | apr_sdbm_rdonly (apr_sdbm_t *db) |
|
SDBM Directory file extension |
|
Insert |
|
Insert with duplicates |
|
SDBM page file extension |
|
Replace |
|
Structure for referencing an sdbm |
|
Close an sdbm file previously opened by apr_sdbm_open
|
|
Delete an sdbm record value by key
|
|
Fetch an sdbm record value by key
|
|
Retrieve the first record key from a dbm
|
|
Lock an sdbm database for concurency of multiple operations
|
|
Retrieve the next record key from an sdbm
|
|
Open an sdbm database by file name
|
|
Returns true if the sdbm database opened for read-only access
|
|
Store an sdbm record value by key
|
|
Release an sdbm lock previously aquired by apr_sdbm_lock
|