• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/rpc_server/cxx/

Lines Matching defs:ctp

61 	ct_entry *ctp, *dbenv_ctp;
67 ctp = new_ct_ent(&replyp->status);
68 if (ctp == NULL)
73 ctp->ct_txnp = txnp;
74 ctp->ct_type = CT_TXN;
75 ctp->ct_parent = NULL;
76 ctp->ct_envparent = dbenv_ctp;
77 replyp->txnidcl_id = ctp->ct_id;
78 __dbsrv_settimeout(ctp, dbenv_ctp->ct_timeout);
79 __dbsrv_active(ctp);
81 __dbclear_ctp(ctp);
106 ct_entry *ctp;
108 ctp = new_ct_ent(&replyp->status);
109 if (ctp == NULL)
113 ctp->ct_envp = dbenv;
114 ctp->ct_type = CT_ENV;
115 ctp->ct_parent = NULL;
116 ctp->ct_envparent = ctp;
117 __dbsrv_settimeout(ctp, timeout);
118 __dbsrv_active(ctp);
119 replyp->envcl_id = ctp->ct_id;
400 ct_entry *ctp, *dbenv_ctp, *parent_ctp;
407 ctp = new_ct_ent(&replyp->status);
408 if (ctp == NULL)
414 ctp->ct_activep = parent_ctp->ct_activep;
420 ctp->ct_txnp = txnp;
421 ctp->ct_type = CT_TXN;
422 ctp->ct_parent = parent_ctp;
423 ctp->ct_envparent = dbenv_ctp;
424 replyp->txnidcl_id = ctp->ct_id;
425 __dbsrv_settimeout(ctp, dbenv_ctp->ct_timeout);
426 __dbsrv_active(ctp);
428 __dbclear_ctp(ctp);
502 ct_entry *dbenv_ctp, *ctp;
546 * txn ctp and then fill in the array info.
553 ctp = new_ct_ent(&ret);
558 ctp->ct_txnp = p->txn;
559 ctp->ct_type = CT_TXN;
560 ctp->ct_parent = NULL;
561 ctp->ct_envparent = dbenv_ctp;
562 __dbsrv_settimeout(ctp, dbenv_ctp->ct_timeout);
563 __dbsrv_active(ctp);
565 *txnidp = ctp->ct_id;
589 ctp = get_tableent(*txnidp);
590 __dbclear_ctp(ctp);
1881 ct_entry *dbc_ctp, *ctp, *dbp_ctp;
1905 ctp = get_tableent(*curs);
1906 DB_ASSERT(dbp->get_ENV(), ctp->ct_type == CT_CURSOR);
1911 if (ctp->ct_activep != &ctp->ct_active)
1912 dbc_ctp->ct_activep = ctp->ct_activep;
1914 ctp = get_tableent(*cl);
1915 if (ctp == NULL) {
1929 DB_ASSERT(dbp->get_ENV(), ctp->ct_type == CT_CURSOR);
1930 ctp->ct_type |= CT_JOIN;
1931 ctp->ct_origp = ctp->ct_activep;
1939 ctp->ct_activep = &dbc_ctp->ct_active;
1940 *c = ctp->ct_dbc;
1957 ctp = get_tableent(*cl);
1958 ctp->ct_type = CT_CURSOR;
1959 ctp->ct_activep = ctp->ct_origp;