Searched refs:DB_DUPSORT (Results 1 - 25 of 41) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/t/
H A Ddb-4.x.t23 -Property => DB_DUP | DB_DUPSORT
H A Djoin.t39 -Property => DB_DUP|DB_DUPSORT ;
87 -Property => DB_DUP|DB_DUPSORT,
96 -Property => DB_DUP|DB_DUPSORT,
104 -Property => DB_DUP|DB_DUPSORT,
H A Dexamples3.t105 -Property => DB_DUP | DB_DUPSORT
H A Dexamples3.t.T108 -Property => DB_DUP | DB_DUPSORT
H A Dhash.t558 -Property => DB_DUP|DB_DUPSORT,
563 -Property => DB_DUP|DB_DUPSORT,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/btree/
H A Dbt_method.c115 if (FLD_ISSET(*inflagsp, DB_DUPSORT)) {
117 FLD_CLR(*inflagsp, DB_DUPSORT);
143 if (LF_ISSET(DB_DUP | DB_DUPSORT | DB_RECNUM | DB_REVSPLITOFF))
147 * The DB_DUP and DB_DUPSORT flags are shared by the Hash
150 if (LF_ISSET(DB_DUP | DB_DUPSORT))
156 /* DB_DUP/DB_DUPSORT is incompatible with DB_RECNUM. */
157 if (LF_ISSET(DB_DUP | DB_DUPSORT) && F_ISSET(dbp, DB_AM_RECNUM))
160 /* DB_RECNUM is incompatible with DB_DUP/DB_DUPSORT. */
164 if (LF_ISSET(DB_DUPSORT) && dbp->dup_compare == NULL)
H A Dbt_upgrade.c109 if (LF_ISSET(DB_DUPSORT))
143 LF_ISSET(DB_DUPSORT) ? 1 : 0, &pgno)) != 0)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/getting_started/
H A DMyDb.cpp22 db_.set_flags(DB_DUPSORT);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am/
H A Dsecond1.cs50 if ((ret = sdbp-__GT__set_flags(sdbp, DB_DUP | DB_DUPSORT)) != 0)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/hash/
H A Dhash_upgrade.c209 if (LF_ISSET(DB_DUPSORT))
246 LF_ISSET(DB_DUPSORT) ? 1 : 0, &tpgno)) != 0)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/db_upgrade/
H A Ddb_upgrade.c82 LF_SET(DB_DUPSORT);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/test_micro/
H A Db_curwalk.c124 dbp->set_flags(dbp, sorted ? DB_DUPSORT : DB_DUP) == 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db_upgrade/
H A Ddb_upgrade.c67 LF_SET(DB_DUPSORT);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_c/csv/
H A Ddb.c186 if ((ret = sdb->set_flags(sdb, DB_DUPSORT)) != 0) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_c/getting_started/
H A Dgettingstarted_common.c79 ret = dbp->set_flags(dbp, DB_DUPSORT);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test_micro/source/
H A Db_curwalk.c123 dbp->set_flags(dbp, sorted ? DB_DUPSORT : DB_DUP) == 0);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_c/txn_guide/
H A Dtxn_guide.c149 envp, DB_DUPSORT);
H A Dtxn_guide_inmemory.c150 envp, DB_DUPSORT);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/txn_guide/
H A DTxnGuide.cpp133 envp, DB_DUPSORT);
H A DTxnGuideInMemory.cpp114 envp, DB_DUPSORT);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDbConstants.java29 int DB_DUPSORT = 0x00000002; field in interface:DbConstants
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_method.c549 if ((ret = __db_set_flags(dbp, DB_DUPSORT)) != 0)
698 DB_DUPSORT,
H A Ddb_upg.c41 if ((ret = __db_fchk(env, "DB->upgrade", flags, DB_DUPSORT)) != 0)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/
H A DDatabaseConfig.java2013 dbFlags |= sortedDuplicates ? DbConstants.DB_DUPSORT : 0;
2101 sortedDuplicates = (dbFlags & DbConstants.DB_DUPSORT) != 0;
H A DDatabase.java1180 config.getSortedDuplicates() ? DbConstants.DB_DUPSORT : 0);

Completed in 304 milliseconds

12