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

Lines Matching defs:ctp

74 	ct_entry *ctp, *dbenv_ctp;
80 ctp = new_ct_ent(&replyp->status);
81 if (ctp == NULL)
86 ctp->ct_txnp = txnp;
87 ctp->ct_type = CT_TXN;
88 ctp->ct_parent = NULL;
89 ctp->ct_envparent = dbenv_ctp;
90 replyp->txnidcl_id = ctp->ct_id;
91 __dbsrv_settimeout(ctp, dbenv_ctp->ct_timeout);
92 __dbsrv_active(ctp);
94 __dbclear_ctp(ctp);
125 ct_entry *ctp;
128 ctp = new_ct_ent(&replyp->status);
129 if (ctp == NULL)
132 ctp->ct_envp = dbenv;
133 ctp->ct_type = CT_ENV;
134 ctp->ct_parent = NULL;
135 ctp->ct_envparent = ctp;
136 __dbsrv_settimeout(ctp, timeout);
137 __dbsrv_active(ctp);
138 replyp->envcl_id = ctp->ct_id;
140 __dbclear_ctp(ctp);
470 ct_entry *ctp, *dbenv_ctp, *parent_ctp;
477 ctp = new_ct_ent(&replyp->status);
478 if (ctp == NULL)
484 ctp->ct_activep = parent_ctp->ct_activep;
494 ctp->ct_txnp = txnp;
495 ctp->ct_type = CT_TXN;
496 ctp->ct_parent = parent_ctp;
497 ctp->ct_envparent = dbenv_ctp;
498 replyp->txnidcl_id = ctp->ct_id;
499 __dbsrv_settimeout(ctp, dbenv_ctp->ct_timeout);
500 __dbsrv_active(ctp);
502 __dbclear_ctp(ctp);
593 ct_entry *dbenv_ctp, *ctp;
639 * txn ctp and then fill in the array info.
646 ctp = new_ct_ent(&ret);
651 ctp->ct_txnp = p->txn;
652 ctp->ct_type = CT_TXN;
653 ctp->ct_parent = NULL;
654 ctp->ct_envparent = dbenv_ctp;
655 __dbsrv_settimeout(ctp, dbenv_ctp->ct_timeout);
656 __dbsrv_active(ctp);
658 *txnidp = ctp->ct_id;
682 ctp = get_tableent(*txnidp);
683 __dbclear_ctp(ctp);
2151 ct_entry *dbc_ctp, *ctp, *dbp_ctp;
2175 ctp = get_tableent(*curs);
2176 DB_ASSERT(env, ctp->ct_type == CT_CURSOR);
2181 if (ctp->ct_activep != &ctp->ct_active)
2182 dbc_ctp->ct_activep = ctp->ct_activep;
2184 ctp = get_tableent(*cl);
2185 if (ctp == NULL) {
2199 DB_ASSERT(env, ctp->ct_type == CT_CURSOR);
2200 ctp->ct_type |= CT_JOIN;
2201 ctp->ct_origp = ctp->ct_activep;
2209 ctp->ct_activep = &dbc_ctp->ct_active;
2210 *c = ctp->ct_dbc;
2227 ctp = get_tableent(*cl);
2228 ctp->ct_type = CT_CURSOR;
2229 ctp->ct_activep = ctp->ct_origp;