Searched refs:cursors (Results 1 - 23 of 23) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DEntityJoin.java222 private Cursor[] cursors; field in class:EntityJoin.JoinForwardCursor
231 cursors = new Cursor[conditions.size()];
232 for (int i = 0; i < cursors.length; i += 1) {
240 cursors[i] = cursor;
242 joinCursor = primary.getDatabase().join(cursors, null);
308 for (int i = 0; i < cursors.length; i += 1) {
309 Cursor cursor = cursors[i];
313 cursors[i] = null;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DCurrentTransaction.java338 List cursors;
352 cursors = cdbCursors.writeCursors;
356 cursors = cdbCursors.readCursors;
360 if (cursors.size() > 0) {
361 Cursor other = ((Cursor) cursors.get(0));
366 cursors.add(cursor);
394 List cursors = writeCursor ? cdbCursors.writeCursors
396 if (cursors.contains(cursor)) {
398 cursors.add(newCursor);
H A DDataCursor.java107 Cursor[] cursors = new Cursor[indexCursors.length];
108 for (int i = 0; i < cursors.length; i += 1) {
109 cursors[i] = indexCursors[i].cursor.getCursor();
111 joinCursor = view.db.join(cursors, joinConfig);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DDatabase.java250 To transaction-protect cursor operations, cursors must be opened and closed
884 Each cursor in the <code>cursors</code> array must have been
889 Once the cursors have been passed to this method, they should not be
892 position of the cursors will not be changed by this method or by the
895 @param cursors an array of cursors associated with this primary
908 public JoinCursor join(final Cursor[] cursors, JoinConfig config) argument
913 final Dbc[] dbcList = new Dbc[cursors.length];
914 for (int i = 0; i < cursors.length; i++)
915 dbcList[i] = (cursors[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dcursor.tex5 mouse click. As with icons, cursors in X and MS Windows are created
6 in a different manner. Therefore, separate cursors will be created for the
66 On MacOS when specifying a string resource name, first the color cursors 'crsr' and then the black/white cursors 'CURS' in the resource chain are scanned through.
85 In wxGTK, colour cursors and alpha channel are supported (starting from GTK+
166 Note that not all cursors are available on all platforms.}
244 destroyed. wxWidgets destroys all cursors on application exit, although
H A Dtdb.tex98 \twocolitem{Scrolling cursors}{Scrolling refers to the movement of cursors
100 the result set (FORWARD ONLY scrolling cursors). With Forward only scrolling
101 cursors, once a row in the result set has been returned to the ODBC driver
104 the result set. If BACKWARD scrolling cursors are supported by both the
110 ODBC driver only support forward scrolling cursors, your program and logic
157 wxWidgets ODBC settings in setup.h (see \helpref{wxODBC - Compiling}{wxodbccompiling}), cursors can be
158 either forward or backward scrolling. At a minimum, cursors must scroll
161 then 3, etc. With forward only cursors, once the cursor has moved to
163 the datasource for the result set over again. Backward scrolling cursors
[all...]
H A Dtbitmap.tex145 to stock cursors):
148 \item None (stock cursors only).
H A Ddropsrc.tex51 between wxMSW and wxGTK: these are cursors under Windows but icons for GTK.
H A Ddb.tex215 UWORD cursorCommitBehavior - How cursors are affected on db commit
216 UWORD cursorRollbackBehavior - How cursors are affected on db
261 both types of cursors.
399 \docparam{FwdOnlyCursors}{Will cursors created for use with this datasource
400 connection only allow forward scrolling cursors.}
522 you must pay attention to is cursors, in regard to transactions. Cursors are
537 that leave the cursors open after a transaction.}
1099 as being capable of using only forward scrolling cursors.
1102 backward scrolling cursors. There is no standard way of detecting if the
1103 driver or datasource can support backward scrolling cursors
[all...]
H A Dbody.tex341 may also contain references to icons, cursors, etc., for example:
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Djoin.t41 # no cursors supplied
43 ok 2, $@ =~ /Usage: \$db->BerkeleyDB::db_join\Q([cursors], flags=0)/;
47 ok 3, $@ =~ /db_join: No cursors in parameter list/;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_cds.c60 /* Check for live cursors. */
61 if (txn->cursors != 0) {
62 __db_errx(env, "CDS group has active cursors");
H A Ddb_cam.c77 * cursors at once here, a top-level one and a lower-level, off-page
111 * INVALID; in some cases, such as idup'ed read cursors
112 * and secondary update cursors, a cursor in a CDB
125 txn->cursors--;
131 txn->cursors--;
138 if (txn != NULL && F_ISSET(txn, TXN_PRIVATE) && txn->cursors == 0 &&
209 * All of the cursors passed to the underlying access methods by this
258 * All of the cursors passed to the underlying access methods by this
540 * All of the cursors passed to the underlying access methods by this
541 * routine are duplicated cursors
[all...]
H A Ddb_am.c60 * of cursors on the queue for a single database.
103 * all cursors opened in the environment handle,
127 * than __db_cursor to create secondary update cursors
133 * close, all cursors in the secondary when we
240 * in case we opened some cursors before we were associated.
279 * The transaction keeps track of how many cursors were opened within
284 ++txn->cursors;
683 * If we're using CDB, opening these two cursors puts us
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/txn/
H A Dtxn.c273 txn->cursors = 0;
1196 /* Check for live cursors. */
1197 if (txn->cursors != 0) {
1198 __db_errx(env, "transaction has active cursors");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/
H A DBerkeleyDB.xs714 Trace(("End of BerkeleyDB::Term::close_all_cursors closed %d of %d cursors\n",closed, all)) ;
3431 _db_join(db, cursors, flags=0)
3434 AV * cursors
3447 I32 count = av_len(cursors) + 1 ;
3451 softCrash("db_join: No cursors in parameter list") ;
3454 SV * obj = (SV*) * av_fetch(cursors, i, FALSE) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_brew/
H A Ddb.h17 * Access method cursors.
783 u_int32_t cursors; /* Number of cursors open for txn */ member in struct:__db_txn
1610 * Access method cursors.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_s60/
H A Ddb.h17 * Access method cursors.
772 u_int32_t cursors; /* Number of cursors open for txn */ member in struct:__db_txn
1599 * Access method cursors.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A Ddb.h16 * Access method cursors.
793 u_int32_t cursors; /* Number of cursors open for txn */ member in struct:__db_txn
1620 * Access method cursors.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/
H A Ddb.h17 * Access method cursors.
781 u_int32_t cursors; /* Number of cursors open for txn */ member in struct:__db_txn
1608 * Access method cursors.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_wince/
H A Ddb.h17 * Access method cursors.
820 u_int32_t cursors; /* Number of cursors open for txn */ member in struct:__db_txn
1647 * Access method cursors.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_windows/
H A Ddb.h17 * Access method cursors.
820 u_int32_t cursors; /* Number of cursors open for txn */ member in struct:__db_txn
1647 * Access method cursors.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/
H A Djre-1_5_0_15-linux-i586.bin[all...]

Completed in 373 milliseconds