HomeSort by: relevance | last modified time | path
    Searched defs:MDB_env (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/openldap/dist/libraries/liblmdb/
lmdb.h 101 * - Use an MDB_env* in the process which opened it, not after fork().
233 typedef struct MDB_env MDB_env;
283 /** @defgroup mdb_env Environment Flags
501 * This function allocates memory for a #MDB_env structure. To release
510 int mdb_env_create(MDB_env **env);
514 * If this function fails, #mdb_env_close() must be called to discard the #MDB_env handle.
633 int mdb_env_open(MDB_env *env, const char *path, unsigned int flags, mdb_mode_t mode);
649 int mdb_env_copy(MDB_env *env, const char *path);
664 int mdb_env_copyfd(MDB_env *env, mdb_filehandle_t fd)
    [all...]
mdb.c 417 static int mdb_mutex_failed(MDB_env *env, mdb_mutexref_t mutex, int rc);
1084 /** Any persistent environment flags. @ref mdb_env */
1131 MDB_env *mt_env; /**< the DB environment */
1187 #define MDB_TXN_WRITEMAP MDB_WRITEMAP /**< copy of #MDB_env flag in writers */
1289 /** State of FreeDB old pages, stored in the MDB_env */
1296 struct MDB_env {
1308 uint32_t me_flags; /**< @ref mdb_env */
1399 #define MDB_END_FREE 0x20 /**< free txn unless it is #MDB_env.%me_txn0 */
1418 static int mdb_env_read_header(MDB_env *env, MDB_meta *meta);
1419 static MDB_meta *mdb_env_pick_meta(const MDB_env *env)
    [all...]

Completed in 18 milliseconds