• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/env/

Lines Matching refs:DB_ENV

20 static int __env_refresh __P((DB_ENV *, u_int32_t, int));
44 * DB_ENV->open pre/post processing.
46 * PUBLIC: int __env_open_pp __P((DB_ENV *, const char *, u_int32_t, int));
50 DB_ENV *dbenv;
72 if ((ret = __db_fchk(env, "DB_ENV->open", flags, OKFLAGS)) != 0)
75 env, "DB_ENV->open", flags, DB_INIT_CDB, ~OKFLAGS_CDB)) != 0)
83 if ((ret = __db_fcchk(env, "DB_ENV->open", flags,
111 "DB_ENV->open", flags, DB_RECOVER, DB_RECOVER_FATAL)) != 0)
114 "DB_ENV->open", flags, DB_REGISTER, DB_RECOVER_FATAL)) != 0)
170 * DB_ENV->open.
172 * PUBLIC: int __env_open __P((DB_ENV *, const char *, u_int32_t, int));
176 DB_ENV *dbenv;
196 * Save the DB_ENV handle's configuration flags as set by user-called
198 * file. If we use this DB_ENV structure to recover the existing
200 * we'll restore the DB_ENV flags to these values.
243 /* Convert the DB_ENV->open flags to internal flags. */
258 * flags to DB_ENV->set_flags and DB_ENV->open that need to be set.
332 * The DB_ENV structure has now been initialized. Turn off further
333 * use of the DB_ENV structure and most initialization methods, we're
506 /* Refresh the DB_ENV so can use it to call remove. */
533 * DB_ENV->remove.
535 * PUBLIC: int __env_remove __P((DB_ENV *, const char *, u_int32_t));
539 DB_ENV *dbenv;
553 if ((ret = __db_fchk(env, "DB_ENV->remove", flags, OKFLAGS)) != 0)
556 ENV_ILLEGAL_AFTER_OPEN(env, "DB_ENV->remove");
578 * PUBLIC: int __env_config __P((DB_ENV *, const char *, u_int32_t, int));
582 DB_ENV *dbenv;
615 /* Save a copy of the DB_ENV->open method flags. */
637 * DB_ENV->close pre/post processor.
639 * PUBLIC: int __env_close_pp __P((DB_ENV *, u_int32_t));
643 DB_ENV *dbenv;
654 * Validate arguments, but as a DB_ENV handle destructor, we can't
658 (t_ret = __db_ferr(env, "DB_ENV->close", 0)) != 0 && ret == 0)
703 * DB_ENV->close.
705 * PUBLIC: int __env_close __P((DB_ENV *, int));
709 DB_ENV *dbenv;
733 * DB_ENV->open.
786 * Refresh the DB_ENV structure.
790 DB_ENV *dbenv;
803 * Release resources allocated by DB_ENV->open, and return it to the
839 /* Discard the DB_ENV, ENV handle mutexes. */
1033 * PUBLIC: int __env_get_open_flags __P((DB_ENV *, u_int32_t *));
1037 DB_ENV *dbenv;
1044 ENV_ILLEGAL_BEFORE_OPEN(env, "DB_ENV->get_open_flags");