Searched refs:Dbc (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.10/BerkeleyDB-21/db/examples_cxx/excxx_repquote/
H A Ddbc_auto.h6 * Use DbcAuto instead of Berkeley DB's builtin Dbc class. The constructor
37 Dbc *tdbc = dbc_;
43 operator Dbc *() {
47 operator Dbc **() {
51 Dbc *operator->() {
56 Dbc *dbc_;
/macosx-10.10/BerkeleyDB-21/db/cxx/
H A Dcxx_dbc.cpp30 int Dbc::_name _argspec \
38 "Dbc::" # _name, ret, ON_ERROR_UNKNOWN); \
44 Dbc::~Dbc()
54 int Dbc::dup(Dbc** cursorp, u_int32_t _flags)
63 // The following cast implies that Dbc can be no larger than DBC
64 *cursorp = (Dbc*)new_cursor;
67 "Dbc::dup", ret, ON_ERROR_UNKNOWN);
72 int Dbc
[all...]
H A Dcxx_db.cpp219 // The following cast implies that Dbc can be no larger than DBC
220 DB_METHOD(cursor, (DbTxn *txnid, Dbc **cursorp, u_int32_t flags),
293 // Dbc is a "compatible" subclass of DBC - that is, no virtual functions
296 DB_METHOD(join, (Dbc **curslist, Dbc **cursorp, u_int32_t flags),
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/internal/
H A DDbc.java14 public class Dbc { class
18 protected Dbc(long cPtr, boolean cMemoryOwn) { method in class:Dbc
23 protected static long getCPtr(Dbc obj) {
51 public Dbc dup(int flags) throws com.sleepycat.db.DatabaseException {
53 return (cPtr == 0) ? null : new Dbc(cPtr, false);
H A Ddb_javaJNI.java112 public final static native long Db_join(long jarg1, Db jarg1_, Dbc[] jarg2, int jarg3) throws com.sleepycat.db.DatabaseException;
145 /* package */ final static native void Dbc_close0(long jarg1, Dbc jarg1_);
146 public final static native int Dbc_count(long jarg1, Dbc jarg1_, int jarg2) throws com.sleepycat.db.DatabaseException;
147 public final static native int Dbc_del(long jarg1, Dbc jarg1_, int jarg2) throws com.sleepycat.db.DatabaseException;
148 public final static native long Dbc_dup(long jarg1, Dbc jarg1_, int jarg2) throws com.sleepycat.db.DatabaseException;
149 public final static native int Dbc_get(long jarg1, Dbc jarg1_, com.sleepycat.db.DatabaseEntry jarg2, com.sleepycat.db.DatabaseEntry jarg3, int jarg4) throws com.sleepycat.db.DatabaseException;
150 public final static native int Dbc_get_priority(long jarg1, Dbc jarg1_) throws com.sleepycat.db.DatabaseException;
151 public final static native int Dbc_pget(long jarg1, Dbc jarg1_, com.sleepycat.db.DatabaseEntry jarg2, com.sleepycat.db.DatabaseEntry jarg3, com.sleepycat.db.DatabaseEntry jarg4, int jarg5) throws com.sleepycat.db.DatabaseException;
152 public final static native int Dbc_put(long jarg1, Dbc jarg1_, com.sleepycat.db.DatabaseEntry jarg2, com.sleepycat.db.DatabaseEntry jarg3, int jarg4) throws com.sleepycat.db.DatabaseException;
153 public final static native void Dbc_set_priority(long jarg1, Dbc jarg1
[all...]
H A DDb.java305 public Dbc cursor(DbTxn txnid, int flags) throws com.sleepycat.db.DatabaseException {
307 return (cPtr == 0) ? null : new Dbc(cPtr, false);
397 public Dbc join(Dbc[] curslist, int flags) throws com.sleepycat.db.DatabaseException {
399 return (cPtr == 0) ? null : new Dbc(cPtr, true);
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DJoinCursor.java12 import com.sleepycat.db.internal.Dbc;
75 private Dbc dbc;
79 final Dbc dbc,
H A DCursorConfig.java13 import com.sleepycat.db.internal.Dbc;
223 Dbc openCursor(final Db db, final DbTxn txn)
H A DSecondaryCursor.java12 import com.sleepycat.db.internal.Dbc;
52 final Dbc dbc,
452 Dbc dup1 = dbc.dup(DbConstants.DB_POSITION);
457 Dbc dup2 = dup1.dup(DbConstants.DB_POSITION);
471 Dbc tdbc = dbc;
H A DCursor.java12 import com.sleepycat.db.internal.Dbc;
49 /* package */ Dbc dbc;
59 Cursor(final Database database, final Dbc dbc, final CursorConfig config)
945 Dbc tempDbc = dbc.dup(0);
955 Dbc tdbc = dbc;
H A DDatabase.java14 import com.sleepycat.db.internal.Dbc;
913 final Dbc[] dbcList = new Dbc[cursors.length];
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/getting_started/
H A Dexcxx_example_database_read.cpp108 Dbc *cursorp;
156 Dbc *cursorp;
/macosx-10.10/BerkeleyDB-21/db/test/scr025/
H A DTestMulti.cpp21 Dbc *dbc;
95 Dbc *dbc;
152 Dbc *dbc;
/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Ddb_cxx.in67 class Dbc; // forward
192 virtual int cursor(DbTxn *txnid, Dbc **cursorp, u_int32_t flags);
222 virtual int join(Dbc **curslist, Dbc **dbcp, u_int32_t flags);
347 class _exported Dbc : protected DBC
355 int dup(Dbc** cursorp, u_int32_t flags);
365 // Note: use Db::cursor() to get pointers to a Dbc,
366 // and call Dbc::close() rather than delete to release them.
368 Dbc();
369 ~Dbc();
[all...]
H A Ddb_server_int.h100 Dbc *dbc; /* H_CURSOR */
/macosx-10.10/BerkeleyDB-21/db/build_vxworks/
H A Ddb_cxx.h68 class Dbc; // forward
193 virtual int cursor(DbTxn *txnid, Dbc **cursorp, u_int32_t flags);
223 virtual int join(Dbc **curslist, Dbc **dbcp, u_int32_t flags);
348 class _exported Dbc : protected DBC class in inherits:DBC
356 int dup(Dbc** cursorp, u_int32_t flags);
366 // Note: use Db::cursor() to get pointers to a Dbc,
367 // and call Dbc::close() rather than delete to release them.
369 Dbc();
370 ~Dbc();
[all...]
/macosx-10.10/BerkeleyDB-21/db/build_windows/
H A Ddb_cxx.h68 class Dbc; // forward
193 virtual int cursor(DbTxn *txnid, Dbc **cursorp, u_int32_t flags);
223 virtual int join(Dbc **curslist, Dbc **dbcp, u_int32_t flags);
348 class _exported Dbc : protected DBC class in inherits:DBC
356 int dup(Dbc** cursorp, u_int32_t flags);
366 // Note: use Db::cursor() to get pointers to a Dbc,
367 // and call Dbc::close() rather than delete to release them.
369 Dbc();
370 ~Dbc();
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/
H A DAccessExample.cpp150 Dbc *dbcp;
H A DBtRecExample.cpp40 Dbc *dbcp;
H A DTpcbExample.cpp534 Dbc *acurs = NULL;
535 Dbc *bcurs = NULL;
536 Dbc *tcurs = NULL;
/macosx-10.10/BerkeleyDB-21/db/test/scr015/
H A DTestKeyRange.cpp139 Dbc *dbcp;
H A DTestConstruct01.cpp129 Dbc *dbcp;
/macosx-10.10/BerkeleyDB-21/db/rpc_server/cxx/
H A Ddb_server_cxxproc.cpp1836 Dbc *dbc;
1879 Dbc **jcurs, **c;
1880 Dbc *dbc;
1893 size = (curslen + 1) * sizeof(Dbc *);
1895 curslen + 1, sizeof(Dbc *), &jcurs)) != 0) {
1987 Dbc *dbc;
1993 dbc = (Dbc *)dbc_ctp->ct_anyp;
2008 Dbc *dbc;
2013 dbc = (Dbc *)dbc_ctp->ct_anyp;
2027 Dbc *db
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/txn_guide/
H A DTxnGuide.cpp318 Dbc *cursorp = NULL;
H A DTxnGuideInMemory.cpp300 Dbc *cursorp = NULL;

Completed in 191 milliseconds

12