Searched refs:renv (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10/BerkeleyDB-21/db/common/
H A Dcrypto_stub.c28 REGENV *renv; local
33 renv = infop->primary;
34 MUTEX_LOCK(env, renv->mtx_regenv);
35 ret = !(renv->cipher_off == INVALID_ROFF);
36 MUTEX_UNLOCK(env, renv->mtx_regenv);
/macosx-10.10/BerkeleyDB-21/db/env/
H A Denv_region.c34 REGENV *renv; local
50 loop: renv = NULL;
226 renv = infop->primary;
232 if (renv->majver != DB_VERSION_MAJOR ||
233 renv->minver != DB_VERSION_MINOR) {
234 if (renv->majver != 0 || renv->minver != 0) {
238 renv->majver, renv->minver);
244 if (renv
545 REGENV *renv; local
575 REGENV *renv; local
649 REGENV *renv; local
683 REGENV *renv; local
722 REGENV *renv; local
794 REGENV *renv; local
1229 REGENV *renv; local
[all...]
H A Denv_failchk.c97 REGENV *renv; local
104 renv = infop->primary;
106 if (renv->thread_off == INVALID_ROFF) {
130 renv->thread_off = R_OFFSET(infop, thread);
143 thread = R_ADDR(infop, renv->thread_off);
165 REGENV *renv; local
171 renv = infop->primary;
172 if (renv->thread_off == INVALID_ROFF)
175 thread = R_ADDR(infop, renv->thread_off);
205 REGENV *renv; local
292 REGENV *renv; local
[all...]
H A Denv_stat.c152 REGENV *renv; local
157 renv = infop->primary;
163 STAT_HEX("Magic number", renv->magic);
164 STAT_LONG("Panic value", renv->panic);
166 renv->majver, renv->minver, renv->patchver);
175 "%.24s\tCreation time", __os_ctime(&renv->timestamp, time_buf));
176 STAT_HEX("Environment ID", renv->envid);
179 renv
400 REGENV *renv; local
523 REGENV *renv; local
[all...]
H A Denv_recover.c61 REGENV *renv; local
94 renv = infop->primary;
95 (void)time(&renv->rep_timestamp);
/macosx-10.10/BerkeleyDB-21/db/crypto/
H A Dcrypto.c29 REGENV *renv; local
36 renv = infop->primary;
40 if (renv->cipher_off == INVALID_ROFF) {
70 renv->cipher_off = R_OFFSET(infop, cipher);
77 cipher = R_ADDR(infop, renv->cipher_off);
161 REGENV *renv; local
171 renv = infop->primary;
172 if (renv->cipher_off != INVALID_ROFF) {
173 cipher = R_ADDR(infop, renv->cipher_off);
389 REGENV *renv; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/rep/
H A Drep_region.c30 REGENV *renv; local
37 renv = infop->primary;
40 if (renv->rep_off == INVALID_ROFF) {
105 renv->rep_off = R_OFFSET(infop, rep);
106 (void)time(&renv->rep_timestamp);
107 renv->op_timestamp = 0;
108 F_CLR(renv, DB_REGENV_REPLOCKED);
110 rep = R_ADDR(infop, renv->rep_off);
128 REGENV *renv; local
136 renv
[all...]
H A Drep_util.c31 #define TIMESTAMP_CHECK(env, ts, renv) do { \
32 if (renv->op_timestamp != 0 && \
33 renv->op_timestamp + DB_REGENV_TIMEOUT < ts) { \
35 F_CLR(renv, DB_REGENV_REPLOCKED); \
36 renv->op_timestamp = 0; \
582 REGENV *renv;
836 renv = infop->primary;
838 (void)time(&renv->rep_timestamp);
908 REGENV *renv;
914 renv
[all...]
H A Drep_lease.c122 REGENV *renv; local
132 renv = infop->primary;
133 MUTEX_LOCK(env, renv->mtx_regenv);
141 MUTEX_UNLOCK(env, renv->mtx_regenv);
H A Drep_stat.c436 REGENV *renv; local
444 renv = infop->primary;
486 renv->rep_timestamp == 0 ?
487 "0" : __os_ctime(&renv->rep_timestamp, time_buf));
H A Drep_record.c84 #define MASTER_UPDATE(env, renv) do { \
86 F_SET((renv), DB_REGENV_REPLOCKED); \
87 (void)time(&(renv)->op_timestamp); \
151 REGENV *renv; local
198 renv = infop->primary;
331 savetime = renv->rep_timestamp;
580 MASTER_UPDATE(env, renv);
786 MASTER_UPDATE(env, renv);
852 renv = infop->primary;
853 MASTER_UPDATE(env, renv);
[all...]
H A Drep_verify.c457 REGENV *renv; local
469 renv = infop->primary;
478 done = savetime != renv->rep_timestamp;
H A Drep_backup.c834 REGENV *renv; local
879 renv = infop->primary;
880 (void)time(&renv->rep_timestamp);
/macosx-10.10/BerkeleyDB-21/db/txn/
H A Dtxn_chkpt.c102 REGENV *renv; local
114 renv = infop->primary;
118 id = renv->envid;
H A Dtxn.c562 REGENV *renv; local
603 renv = infop->primary;
607 id = renv->envid;
805 REGENV *renv; local
830 renv = infop->primary;
834 id = renv->envid;
/macosx-10.10/BerkeleyDB-21/db/db/
H A Ddb.c752 REGENV *renv; local
762 renv = infop->primary;
764 renv = NULL;
889 DB_ASSERT(env, renv != NULL);
891 dbp->timestamp != renv->rep_timestamp) {
H A Ddb_iface.c279 REGENV *renv; local
294 renv = env->reginfo->primary;
295 if (dbp->timestamp != renv->rep_timestamp) {
/macosx-10.10/BerkeleyDB-21/db/tcl/
H A Dtcl_rep.c557 REGENV *renv; local
564 renv = infop->primary;
566 F_CLR(renv, DB_REGENV_REPLOCKED);
567 renv->op_timestamp = 0;

Completed in 274 milliseconds