├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── Main.cpp ├── Makefile ├── README.md ├── bit_genesis_to_bin.cpp ├── db ├── include │ └── db │ │ ├── cached_level_map.hpp │ │ ├── exception.hpp │ │ ├── fast_level_map.hpp │ │ ├── fs_hash_map.hpp │ │ ├── fwd.hpp │ │ ├── level_map.hpp │ │ ├── level_pod_map.hpp │ │ └── upgrade_leveldb.hpp └── pow_production.lnk ├── dependence ├── db-5.3.28.NC │ ├── LICENSE │ ├── README │ ├── build_android │ │ ├── Android.mk │ │ ├── clib_port.h │ │ ├── db.h │ │ ├── db_config.h │ │ ├── db_int.h │ │ ├── jdbc │ │ │ └── jni │ │ │ │ └── Android.mk │ │ └── sql │ │ │ └── config.h │ ├── build_unix │ │ └── .IGNORE_ME │ ├── build_vxworks │ │ ├── BerkeleyDB20.wpj │ │ ├── BerkeleyDB20.wsp │ │ ├── BerkeleyDB20small.wpj │ │ ├── BerkeleyDB20small.wsp │ │ ├── BerkeleyDB22.wpj │ │ ├── BerkeleyDB22.wsp │ │ ├── BerkeleyDB22small.wpj │ │ ├── BerkeleyDB22small.wsp │ │ ├── Makefile.6x │ │ ├── Makefile.6x.small │ │ ├── clib_port.h │ │ ├── db.h │ │ ├── db_config.h │ │ ├── db_config_small.h │ │ ├── db_cxx.h │ │ ├── db_int.h │ │ ├── dbdemo │ │ │ ├── README │ │ │ ├── dbdemo.c │ │ │ ├── dbdemo20.wpj │ │ │ └── dbdemo22.wpj │ │ ├── test │ │ │ └── micro │ │ │ │ ├── b_curalloc.c │ │ │ │ ├── b_curwalk.c │ │ │ │ ├── b_del.c │ │ │ │ ├── b_get.c │ │ │ │ ├── b_inmem.c │ │ │ │ ├── b_latch.c │ │ │ │ ├── b_load.c │ │ │ │ ├── b_open.c │ │ │ │ ├── b_put.c │ │ │ │ ├── b_recover.c │ │ │ │ ├── b_txn.c │ │ │ │ ├── b_txn_write.c │ │ │ │ ├── b_uname.c │ │ │ │ ├── b_util.c │ │ │ │ ├── b_workload.c │ │ │ │ ├── b_workload.h │ │ │ │ ├── bench.h │ │ │ │ ├── test_micro.c │ │ │ │ ├── test_micro20.wpj │ │ │ │ └── test_micro22.wpj │ │ └── util │ │ │ ├── db_archive.c │ │ │ ├── db_archive20.wpj │ │ │ ├── db_archive22.wpj │ │ │ ├── db_checkpoint.c │ │ │ ├── db_checkpoint20.wpj │ │ │ ├── db_checkpoint22.wpj │ │ │ ├── db_deadlock.c │ │ │ ├── db_deadlock20.wpj │ │ │ ├── db_deadlock22.wpj │ │ │ ├── db_dump.c │ │ │ ├── db_dump20.wpj │ │ │ ├── db_dump22.wpj │ │ │ ├── db_hotbackup.c │ │ │ ├── db_hotbackup20.wpj │ │ │ ├── db_hotbackup22.wpj │ │ │ ├── db_load.c │ │ │ ├── db_load20.wpj │ │ │ ├── db_load22.wpj │ │ │ ├── db_log_verify.c │ │ │ ├── db_log_verify20.wpj │ │ │ ├── db_log_verify22.wpj │ │ │ ├── db_printlog.c │ │ │ ├── db_printlog20.wpj │ │ │ ├── db_printlog22.wpj │ │ │ ├── db_recover.c │ │ │ ├── db_recover20.wpj │ │ │ ├── db_recover22.wpj │ │ │ ├── db_stat.c │ │ │ ├── db_stat20.wpj │ │ │ ├── db_stat22.wpj │ │ │ ├── db_tuner.c │ │ │ ├── db_tuner20.wpj │ │ │ ├── db_tuner22.wpj │ │ │ ├── db_upgrade.c │ │ │ ├── db_upgrade20.wpj │ │ │ ├── db_upgrade22.wpj │ │ │ ├── db_verify.c │ │ │ ├── db_verify20.wpj │ │ │ └── db_verify22.wpj │ ├── build_wince │ │ ├── VS8 │ │ │ ├── db.vcproj │ │ │ ├── db_small.vcproj │ │ │ ├── db_sql.vcproj │ │ │ ├── wce_sql.vcproj │ │ │ └── wce_tpcb.vcproj │ │ ├── clib_port.h │ │ ├── db.h │ │ ├── db_config.h │ │ ├── db_int.h │ │ └── errno.h │ ├── build_windows │ │ ├── VS10 │ │ │ ├── application.props │ │ │ └── library.props │ │ ├── VS8 │ │ │ ├── db.vcproj │ │ │ ├── db_archive.vcproj │ │ │ ├── db_checkpoint.vcproj │ │ │ ├── db_csharp.vcproj │ │ │ ├── db_deadlock.vcproj │ │ │ ├── db_dump.vcproj │ │ │ ├── db_hotbackup.vcproj │ │ │ ├── db_java.vcproj │ │ │ ├── db_load.vcproj │ │ │ ├── db_log_verify.vcproj │ │ │ ├── db_perf.vcproj │ │ │ ├── db_printlog.vcproj │ │ │ ├── db_recover.vcproj │ │ │ ├── db_replicate.vcproj │ │ │ ├── db_repsite.vcproj │ │ │ ├── db_small.vcproj │ │ │ ├── db_sql.vcproj │ │ │ ├── db_sql_codegen.vcproj │ │ │ ├── db_sql_jdbc.vcproj │ │ │ ├── db_sql_odbc.vcproj │ │ │ ├── db_sql_shell.vcproj │ │ │ ├── db_sql_testfixture.vcproj │ │ │ ├── db_stat.vcproj │ │ │ ├── db_stl.vcproj │ │ │ ├── db_tcl.vcproj │ │ │ ├── db_test.vcproj │ │ │ ├── db_tuner.vcproj │ │ │ ├── db_upgrade.vcproj │ │ │ ├── db_verify.vcproj │ │ │ ├── ex_access.vcproj │ │ │ ├── ex_btrec.vcproj │ │ │ ├── ex_bulk.vcproj │ │ │ ├── ex_csvcode.vcproj │ │ │ ├── ex_csvload.vcproj │ │ │ ├── ex_csvquery.vcproj │ │ │ ├── ex_env.vcproj │ │ │ ├── ex_heap.vcproj │ │ │ ├── ex_java.vcproj │ │ │ ├── ex_lock.vcproj │ │ │ ├── ex_mpool.vcproj │ │ │ ├── ex_rep_base.vcproj │ │ │ ├── ex_rep_chan.vcproj │ │ │ ├── ex_rep_mgr.vcproj │ │ │ ├── ex_sequence.vcproj │ │ │ ├── ex_sql_binding.vcproj │ │ │ ├── ex_sql_fts3.vcproj │ │ │ ├── ex_sql_index.vcproj │ │ │ ├── ex_sql_load.vcproj │ │ │ ├── ex_sql_multi_thread.vcproj │ │ │ ├── ex_sql_query.vcproj │ │ │ ├── ex_sql_rtree.vcproj │ │ │ ├── ex_sql_savepoint.vcproj │ │ │ ├── ex_sql_statement.vcproj │ │ │ ├── ex_sql_transaction.vcproj │ │ │ ├── ex_stream.vcproj │ │ │ ├── ex_tpcb.vcproj │ │ │ ├── ex_txnguide.vcproj │ │ │ ├── ex_txnguide_inmem.vcproj │ │ │ ├── example_database_load.vcproj │ │ │ ├── example_database_read.vcproj │ │ │ ├── excxx_access.vcproj │ │ │ ├── excxx_btrec.vcproj │ │ │ ├── excxx_env.vcproj │ │ │ ├── excxx_example_database_load.vcproj │ │ │ ├── excxx_example_database_read.vcproj │ │ │ ├── excxx_lock.vcproj │ │ │ ├── excxx_mpool.vcproj │ │ │ ├── excxx_repquote.vcproj │ │ │ ├── excxx_sequence.vcproj │ │ │ ├── excxx_tpcb.vcproj │ │ │ ├── excxx_txnguide.vcproj │ │ │ ├── excxx_txnguide_inmem.vcproj │ │ │ ├── excxx_wce_sql.vcproj │ │ │ ├── exstl_access.vcproj │ │ │ ├── exstl_advancedfeatures.vcproj │ │ │ ├── exstl_repquote.vcproj │ │ │ ├── exstl_tpcb.vcproj │ │ │ ├── exstl_txnguide.vcproj │ │ │ ├── php_db4.vcproj │ │ │ ├── stl_test.vcproj │ │ │ ├── stl_test_msexamples.vcproj │ │ │ ├── stl_test_stlport.vcproj │ │ │ ├── test_cutest.vcproj │ │ │ ├── test_micro.vcproj │ │ │ └── test_mutex.vcproj │ │ ├── clib_port.h │ │ ├── db.h │ │ ├── db_config.h │ │ ├── db_cxx.h │ │ ├── db_int.h │ │ ├── dbkill.cpp │ │ ├── dbstl_common.h │ │ ├── include.tcl │ │ ├── libdb.def │ │ ├── libdb.rc │ │ ├── libdb_small.def │ │ ├── libdb_sql.def │ │ ├── libdb_tcl.def │ │ └── libdbrc.src │ ├── dist │ │ ├── ChangeLog │ │ ├── Makefile.in │ │ ├── RELEASE │ │ ├── aclocal │ │ │ ├── clock.m4 │ │ │ ├── config.m4 │ │ │ ├── cxx.m4 │ │ │ ├── gcc.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── mmap.m4 │ │ │ ├── mutex.m4 │ │ │ ├── options.m4 │ │ │ ├── perfmon.m4 │ │ │ ├── programs.m4 │ │ │ ├── sequence.m4 │ │ │ ├── socklen.m4 │ │ │ ├── sosuffix.m4 │ │ │ ├── sql.m4 │ │ │ ├── tcl.m4 │ │ │ ├── tls.m4 │ │ │ └── types.m4 │ │ ├── aclocal_java │ │ │ ├── ac_check_class.m4 │ │ │ ├── ac_check_classpath.m4 │ │ │ ├── ac_check_junit.m4 │ │ │ ├── ac_check_rqrd_class.m4 │ │ │ ├── ac_java_options.m4 │ │ │ ├── ac_jni_include_dirs.m4 │ │ │ ├── ac_prog_jar.m4 │ │ │ ├── ac_prog_java.m4 │ │ │ ├── ac_prog_java_works.m4 │ │ │ ├── ac_prog_javac.m4 │ │ │ ├── ac_prog_javac_works.m4 │ │ │ ├── ac_prog_javadoc.m4 │ │ │ ├── ac_prog_javah.m4 │ │ │ ├── ac_try_compile_java.m4 │ │ │ └── ac_try_run_javac.m4 │ │ ├── adodotnet │ │ │ ├── adapt_SQLite.Interop.2008.xq.in │ │ │ ├── adapt_SQLite.Interop.2010.xq.in │ │ │ ├── adapt_common.xq.in │ │ │ ├── adodotnet.patch │ │ │ ├── gen_wince_project.xq.in │ │ │ └── testce.2008.csproj │ │ ├── android │ │ │ ├── Android.mk.template │ │ │ ├── android_config.in │ │ │ ├── jdbc │ │ │ │ └── Android.mk.template │ │ │ └── sql_config.in │ │ ├── api_flags │ │ ├── api_flags.c │ │ ├── buildpkg │ │ ├── bumprel │ │ ├── clib_port.in │ │ ├── config.guess │ │ ├── config.hin │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── db_provider.d │ │ ├── errno.h │ │ ├── events.in │ │ ├── gen_inc.awk │ │ ├── gen_msg.awk │ │ ├── gen_provider.pl │ │ ├── gen_rec.awk │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── odbc │ │ │ └── odbc.patch │ │ ├── pubdef.in │ │ ├── s_all │ │ ├── s_android │ │ ├── s_apiflags │ │ ├── s_config │ │ ├── s_crypto │ │ ├── s_cscope │ │ ├── s_csharp │ │ ├── s_csharp_const │ │ ├── s_csharp_doc │ │ ├── s_csharp_stat │ │ ├── s_csharp_swig │ │ ├── s_docs │ │ ├── s_include │ │ ├── s_java │ │ ├── s_java_const │ │ ├── s_java_stat │ │ ├── s_java_swig │ │ ├── s_javadoc │ │ ├── s_javadoc_merge │ │ ├── s_je2db │ │ ├── s_message │ │ ├── s_message_id │ │ ├── s_perm │ │ ├── s_php │ │ ├── s_readme │ │ ├── s_recover │ │ ├── s_sig │ │ ├── s_sql │ │ ├── s_sql_drivers │ │ ├── s_sql_upgrade │ │ ├── s_symlink │ │ ├── s_tags │ │ ├── s_test │ │ ├── s_validate │ │ ├── s_vxworks │ │ ├── s_windows │ │ ├── s_windows_dsp │ │ ├── s_winmsi │ │ ├── srcfiles.in │ │ ├── template │ │ │ ├── rec_btree │ │ │ ├── rec_crdel │ │ │ ├── rec_ctemp │ │ │ ├── rec_db │ │ │ ├── rec_dbreg │ │ │ ├── rec_fileops │ │ │ ├── rec_hash │ │ │ ├── rec_heap │ │ │ ├── rec_qam │ │ │ ├── rec_repmgr │ │ │ ├── rec_txn │ │ │ └── rec_utemp │ │ ├── validate │ │ │ ├── README │ │ │ ├── s_chk_build_configs │ │ │ ├── s_chk_comma │ │ │ ├── s_chk_comma.c │ │ │ ├── s_chk_copyright │ │ │ ├── s_chk_defines │ │ │ ├── s_chk_err │ │ │ ├── s_chk_ext_method_calls │ │ │ ├── s_chk_flags │ │ │ ├── s_chk_flags.c │ │ │ ├── s_chk_inclconfig │ │ │ ├── s_chk_include │ │ │ ├── s_chk_java_samples │ │ │ ├── s_chk_javafiles │ │ │ ├── s_chk_logverify │ │ │ ├── s_chk_logverify.c │ │ │ ├── s_chk_message_id │ │ │ ├── s_chk_mutex_print │ │ │ ├── s_chk_newline │ │ │ ├── s_chk_offt │ │ │ ├── s_chk_osdir │ │ │ ├── s_chk_proto │ │ │ ├── s_chk_pubdef │ │ │ ├── s_chk_runrecovery │ │ │ ├── s_chk_spell │ │ │ ├── s_chk_spell.dict │ │ │ ├── s_chk_srcfiles │ │ │ ├── s_chk_stats │ │ │ ├── s_chk_tags │ │ │ ├── s_chk_vxworks │ │ │ └── s_chk_windef │ │ ├── vx_2.0 │ │ │ ├── BerkeleyDB.wpj │ │ │ ├── BerkeleyDBsmall.wpj │ │ │ └── wpj.in │ │ ├── vx_2.2 │ │ │ ├── BerkeleyDB.wpj │ │ │ ├── BerkeleyDBsmall.wpj │ │ │ └── wpj.in │ │ ├── vx_6 │ │ │ ├── Makefile.1 │ │ │ ├── Makefile.2 │ │ │ ├── Makefile.3 │ │ │ ├── cfile │ │ │ └── cxxfile │ │ ├── vx_buildcd │ │ ├── vx_config.in │ │ ├── vx_setup │ │ │ ├── CONFIG.in │ │ │ ├── LICENSE.TXT │ │ │ ├── MESSAGES.TCL │ │ │ ├── README.in │ │ │ ├── SETUP.BMP │ │ │ ├── vx_allfile.in │ │ │ ├── vx_demofile.in │ │ │ └── vx_setup.in │ │ ├── win_config.in │ │ ├── win_exports.in │ │ ├── win_projects │ │ │ ├── ReadMe.txt │ │ │ ├── application.props.template │ │ │ ├── db.projects │ │ │ ├── db_csharp.projects │ │ │ ├── db_wince.projects │ │ │ ├── genproject.template │ │ │ ├── genproject_csharp.template │ │ │ ├── library.props.template │ │ │ ├── projects.template.xml │ │ │ ├── projects_csharp.template.xml │ │ │ ├── projects_wince.template.xml │ │ │ └── vs2010.template │ │ ├── wince_config.in │ │ └── winmsi │ │ │ ├── README │ │ │ ├── build.bat │ │ │ ├── db.wxs │ │ │ ├── fixup2010.xq │ │ │ ├── fixupCsharp.xq │ │ │ ├── genWix.py │ │ │ ├── generateEnv.xq │ │ │ ├── generateGroups.xq │ │ │ ├── generateWix.sh │ │ │ ├── links_frag.wxs │ │ │ ├── pruneComponents.xq │ │ │ ├── required_frag.wxs │ │ │ ├── s_winmsi.fcn │ │ │ ├── webicon.ico │ │ │ └── wixEnv.xml │ ├── docs │ │ ├── api_reference │ │ │ ├── C │ │ │ │ ├── BDB-C_APIReference.pdf │ │ │ │ ├── DB_MULTIPLE_INIT.html │ │ │ │ ├── DB_MULTIPLE_KEY_NEXT.html │ │ │ │ ├── DB_MULTIPLE_KEY_RESERVE_NEXT.html │ │ │ │ ├── DB_MULTIPLE_KEY_WRITE_NEXT.html │ │ │ │ ├── DB_MULTIPLE_NEXT.html │ │ │ │ ├── DB_MULTIPLE_RECNO_NEXT.html │ │ │ │ ├── DB_MULTIPLE_RECNO_RESERVE_NEXT.html │ │ │ │ ├── DB_MULTIPLE_RECNO_WRITE_INIT.html │ │ │ │ ├── DB_MULTIPLE_RECNO_WRITE_NEXT.html │ │ │ │ ├── DB_MULTIPLE_RESERVE_NEXT.html │ │ │ │ ├── DB_MULTIPLE_WRITE_INIT.html │ │ │ │ ├── DB_MULTIPLE_WRITE_NEXT.html │ │ │ │ ├── add_data_dir_parameter.html │ │ │ │ ├── apiReference.css │ │ │ │ ├── configuration_reference.html │ │ │ │ ├── db.html │ │ │ │ ├── db_archive.html │ │ │ │ ├── db_checkpoint.html │ │ │ │ ├── db_copy.html │ │ │ │ ├── db_deadlock.html │ │ │ │ ├── db_dump.html │ │ │ │ ├── db_env_set_func_close.html │ │ │ │ ├── db_env_set_func_dirfree.html │ │ │ │ ├── db_env_set_func_dirlist.html │ │ │ │ ├── db_env_set_func_exists.html │ │ │ │ ├── db_env_set_func_file_map.html │ │ │ │ ├── db_env_set_func_free.html │ │ │ │ ├── db_env_set_func_fsync.html │ │ │ │ ├── db_env_set_func_ftruncate.html │ │ │ │ ├── db_env_set_func_ioinfo.html │ │ │ │ ├── db_env_set_func_malloc.html │ │ │ │ ├── db_env_set_func_open.html │ │ │ │ ├── db_env_set_func_pread.html │ │ │ │ ├── db_env_set_func_pwrite.html │ │ │ │ ├── db_env_set_func_read.html │ │ │ │ ├── db_env_set_func_realloc.html │ │ │ │ ├── db_env_set_func_region_map.html │ │ │ │ ├── db_env_set_func_rename.html │ │ │ │ ├── db_env_set_func_seek.html │ │ │ │ ├── db_env_set_func_unlink.html │ │ │ │ ├── db_env_set_func_write.html │ │ │ │ ├── db_env_set_func_yield.html │ │ │ │ ├── db_heap_rid.html │ │ │ │ ├── db_hotbackup.html │ │ │ │ ├── db_load.html │ │ │ │ ├── db_log_verify.html │ │ │ │ ├── db_printlog.html │ │ │ │ ├── db_recover.html │ │ │ │ ├── db_replicate.html │ │ │ │ ├── db_site.html │ │ │ │ ├── db_sql_codegen.html │ │ │ │ ├── db_stat.html │ │ │ │ ├── db_tuner.html │ │ │ │ ├── db_upgrade.html │ │ │ │ ├── db_verify.html │ │ │ │ ├── dbassociate.html │ │ │ │ ├── dbassociate_foreign.html │ │ │ │ ├── dbc.html │ │ │ │ ├── dbcclose.html │ │ │ │ ├── dbccmp.html │ │ │ │ ├── dbccount.html │ │ │ │ ├── dbcdel.html │ │ │ │ ├── dbcdup.html │ │ │ │ ├── dbcget.html │ │ │ │ ├── dbcget_priority.html │ │ │ │ ├── dbchannel_close.html │ │ │ │ ├── dbchannel_send_msg.html │ │ │ │ ├── dbchannel_send_request.html │ │ │ │ ├── dbchannel_set_timeout.html │ │ │ │ ├── dbclose.html │ │ │ │ ├── dbcompact.html │ │ │ │ ├── dbcput.html │ │ │ │ ├── dbcreate.html │ │ │ │ ├── dbcset_priority.html │ │ │ │ ├── dbcursor.html │ │ │ │ ├── dbdel.html │ │ │ │ ├── dberr.html │ │ │ │ ├── dbexists.html │ │ │ │ ├── dbfd.html │ │ │ │ ├── dbget.html │ │ │ │ ├── dbget_bt_minkey.html │ │ │ │ ├── dbget_byteswapped.html │ │ │ │ ├── dbget_cachesize.html │ │ │ │ ├── dbget_create_dir.html │ │ │ │ ├── dbget_dbname.html │ │ │ │ ├── dbget_encrypt_flags.html │ │ │ │ ├── dbget_errfile.html │ │ │ │ ├── dbget_errpfx.html │ │ │ │ ├── dbget_flags.html │ │ │ │ ├── dbget_h_ffactor.html │ │ │ │ ├── dbget_h_nelem.html │ │ │ │ ├── dbget_heap_regionsize.html │ │ │ │ ├── dbget_heapsize.html │ │ │ │ ├── dbget_lk_exclusive.html │ │ │ │ ├── dbget_lorder.html │ │ │ │ ├── dbget_mpf.html │ │ │ │ ├── dbget_msgfile.html │ │ │ │ ├── dbget_multiple.html │ │ │ │ ├── dbget_open_flags.html │ │ │ │ ├── dbget_pagesize.html │ │ │ │ ├── dbget_partition_callback.html │ │ │ │ ├── dbget_partition_dirs.html │ │ │ │ ├── dbget_partition_keys.html │ │ │ │ ├── dbget_priority.html │ │ │ │ ├── dbget_q_extentsize.html │ │ │ │ ├── dbget_re_delim.html │ │ │ │ ├── dbget_re_len.html │ │ │ │ ├── dbget_re_pad.html │ │ │ │ ├── dbget_re_source.html │ │ │ │ ├── dbget_transactional.html │ │ │ │ ├── dbget_type.html │ │ │ │ ├── dbgetenv.html │ │ │ │ ├── dbjoin.html │ │ │ │ ├── dbkey_range.html │ │ │ │ ├── dbm.html │ │ │ │ ├── dbopen.html │ │ │ │ ├── dbput.html │ │ │ │ ├── dbremove.html │ │ │ │ ├── dbrename.html │ │ │ │ ├── dbset_alloc.html │ │ │ │ ├── dbset_append_recno.html │ │ │ │ ├── dbset_bt_compare.html │ │ │ │ ├── dbset_bt_compress.html │ │ │ │ ├── dbset_bt_minkey.html │ │ │ │ ├── dbset_bt_prefix.html │ │ │ │ ├── dbset_cachesize.html │ │ │ │ ├── dbset_create_dir.html │ │ │ │ ├── dbset_dup_compare.html │ │ │ │ ├── dbset_encrypt.html │ │ │ │ ├── dbset_errcall.html │ │ │ │ ├── dbset_errfile.html │ │ │ │ ├── dbset_errpfx.html │ │ │ │ ├── dbset_feedback.html │ │ │ │ ├── dbset_flags.html │ │ │ │ ├── dbset_h_compare.html │ │ │ │ ├── dbset_h_ffactor.html │ │ │ │ ├── dbset_h_hash.html │ │ │ │ ├── dbset_h_nelem.html │ │ │ │ ├── dbset_heap_regionsize.html │ │ │ │ ├── dbset_heapsize.html │ │ │ │ ├── dbset_lk_exclusive.html │ │ │ │ ├── dbset_lorder.html │ │ │ │ ├── dbset_msgcall.html │ │ │ │ ├── dbset_msgfile.html │ │ │ │ ├── dbset_pagesize.html │ │ │ │ ├── dbset_partition.html │ │ │ │ ├── dbset_partition_dirs.html │ │ │ │ ├── dbset_priority.html │ │ │ │ ├── dbset_q_extentsize.html │ │ │ │ ├── dbset_re_delim.html │ │ │ │ ├── dbset_re_len.html │ │ │ │ ├── dbset_re_pad.html │ │ │ │ ├── dbset_re_source.html │ │ │ │ ├── dbsite_close.html │ │ │ │ ├── dbsite_get_address.html │ │ │ │ ├── dbsite_get_config.html │ │ │ │ ├── dbsite_get_eid.html │ │ │ │ ├── dbsite_remove.html │ │ │ │ ├── dbsite_set_config.html │ │ │ │ ├── dbsort_multiple.html │ │ │ │ ├── dbsql.html │ │ │ │ ├── dbstat.html │ │ │ │ ├── dbstat_print.html │ │ │ │ ├── dbsync.html │ │ │ │ ├── dbt.html │ │ │ │ ├── dbtruncate.html │ │ │ │ ├── dbupgrade.html │ │ │ │ ├── dbverify.html │ │ │ │ ├── env.html │ │ │ │ ├── envadd_data_dir.html │ │ │ │ ├── envbackup.html │ │ │ │ ├── envcdsgroup_begin.html │ │ │ │ ├── envclose.html │ │ │ │ ├── envcreate.html │ │ │ │ ├── envdbbackup.html │ │ │ │ ├── envdbremove.html │ │ │ │ ├── envdbrename.html │ │ │ │ ├── enverr.html │ │ │ │ ├── envevent_notify.html │ │ │ │ ├── envfailchk.html │ │ │ │ ├── envfileid_reset.html │ │ │ │ ├── envfullversion.html │ │ │ │ ├── envget_backup_callbacks.html │ │ │ │ ├── envget_backup_config.html │ │ │ │ ├── envget_cache_max.html │ │ │ │ ├── envget_cachesize.html │ │ │ │ ├── envget_create_dir.html │ │ │ │ ├── envget_data_dirs.html │ │ │ │ ├── envget_data_len.html │ │ │ │ ├── envget_encrypt_flags.html │ │ │ │ ├── envget_errfile.html │ │ │ │ ├── envget_errpfx.html │ │ │ │ ├── envget_flags.html │ │ │ │ ├── envget_home.html │ │ │ │ ├── envget_intermediate_dir_mode.html │ │ │ │ ├── envget_lg_bsize.html │ │ │ │ ├── envget_lg_dir.html │ │ │ │ ├── envget_lg_filemode.html │ │ │ │ ├── envget_lg_max.html │ │ │ │ ├── envget_lg_regionmax.html │ │ │ │ ├── envget_lk_conflicts.html │ │ │ │ ├── envget_lk_detect.html │ │ │ │ ├── envget_lk_max_lockers.html │ │ │ │ ├── envget_lk_max_locks.html │ │ │ │ ├── envget_lk_max_objects.html │ │ │ │ ├── envget_lk_partitions.html │ │ │ │ ├── envget_lk_priority.html │ │ │ │ ├── envget_lk_tablesize.html │ │ │ │ ├── envget_memory_init.html │ │ │ │ ├── envget_memory_max.html │ │ │ │ ├── envget_metadata_dir.html │ │ │ │ ├── envget_mp_mmapsize.html │ │ │ │ ├── envget_mp_mtxcount.html │ │ │ │ ├── envget_mp_pagesize.html │ │ │ │ ├── envget_mp_tablesize.html │ │ │ │ ├── envget_msgfile.html │ │ │ │ ├── envget_open_flags.html │ │ │ │ ├── envget_shm_key.html │ │ │ │ ├── envget_thread_count.html │ │ │ │ ├── envget_timeout.html │ │ │ │ ├── envget_tmp_dir.html │ │ │ │ ├── envget_tx_max.html │ │ │ │ ├── envget_tx_timestamp.html │ │ │ │ ├── envget_verbose.html │ │ │ │ ├── envlog_get_config.html │ │ │ │ ├── envlog_set_config.html │ │ │ │ ├── envlog_verify.html │ │ │ │ ├── envlsn_reset.html │ │ │ │ ├── envopen.html │ │ │ │ ├── envremove.html │ │ │ │ ├── envset_alloc.html │ │ │ │ ├── envset_app_dispatch.html │ │ │ │ ├── envset_backup_callbacks.html │ │ │ │ ├── envset_backup_config.html │ │ │ │ ├── envset_cache_max.html │ │ │ │ ├── envset_cachesize.html │ │ │ │ ├── envset_create_dir.html │ │ │ │ ├── envset_data_dir.html │ │ │ │ ├── envset_data_len.html │ │ │ │ ├── envset_encrypt.html │ │ │ │ ├── envset_errcall.html │ │ │ │ ├── envset_errfile.html │ │ │ │ ├── envset_errpfx.html │ │ │ │ ├── envset_feedback.html │ │ │ │ ├── envset_flags.html │ │ │ │ ├── envset_intermediate_dir_mode.html │ │ │ │ ├── envset_isalive.html │ │ │ │ ├── envset_lg_bsize.html │ │ │ │ ├── envset_lg_dir.html │ │ │ │ ├── envset_lg_filemode.html │ │ │ │ ├── envset_lg_max.html │ │ │ │ ├── envset_lg_regionmax.html │ │ │ │ ├── envset_lk_conflicts.html │ │ │ │ ├── envset_lk_detect.html │ │ │ │ ├── envset_lk_max_lockers.html │ │ │ │ ├── envset_lk_max_locks.html │ │ │ │ ├── envset_lk_max_objects.html │ │ │ │ ├── envset_lk_partitions.html │ │ │ │ ├── envset_lk_priority.html │ │ │ │ ├── envset_lk_tablesize.html │ │ │ │ ├── envset_memory_init.html │ │ │ │ ├── envset_memory_max.html │ │ │ │ ├── envset_metadata_dir.html │ │ │ │ ├── envset_mp_mmapsize.html │ │ │ │ ├── envset_mp_mtxcount.html │ │ │ │ ├── envset_mp_pagesize.html │ │ │ │ ├── envset_mp_tablesize.html │ │ │ │ ├── envset_msgcall.html │ │ │ │ ├── envset_msgfile.html │ │ │ │ ├── envset_shm_key.html │ │ │ │ ├── envset_thread_count.html │ │ │ │ ├── envset_thread_id.html │ │ │ │ ├── envset_thread_id_string.html │ │ │ │ ├── envset_timeout.html │ │ │ │ ├── envset_tmp_dir.html │ │ │ │ ├── envset_tx_max.html │ │ │ │ ├── envset_tx_timestamp.html │ │ │ │ ├── envset_verbose.html │ │ │ │ ├── envstat.html │ │ │ │ ├── envstrerror.html │ │ │ │ ├── envtxn_applied.html │ │ │ │ ├── envversion.html │ │ │ │ ├── frame_index.html │ │ │ │ ├── frame_main.html │ │ │ │ ├── historic.html │ │ │ │ ├── hsearch.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── lock.html │ │ │ │ ├── lockdetect.html │ │ │ │ ├── lockget.html │ │ │ │ ├── lockid.html │ │ │ │ ├── lockid_free.html │ │ │ │ ├── lockput.html │ │ │ │ ├── lockstat.html │ │ │ │ ├── lockstat_print.html │ │ │ │ ├── lockvec.html │ │ │ │ ├── log_set_config_parameter.html │ │ │ │ ├── logarchive.html │ │ │ │ ├── logc.html │ │ │ │ ├── logcclose.html │ │ │ │ ├── logcget.html │ │ │ │ ├── logcompare.html │ │ │ │ ├── logcursor.html │ │ │ │ ├── logfile.html │ │ │ │ ├── logflush.html │ │ │ │ ├── logprintf.html │ │ │ │ ├── logput.html │ │ │ │ ├── logstat.html │ │ │ │ ├── logstat_print.html │ │ │ │ ├── lsn.html │ │ │ │ ├── memp.html │ │ │ │ ├── mempfclose.html │ │ │ │ ├── mempfcreate.html │ │ │ │ ├── mempfget.html │ │ │ │ ├── mempfopen.html │ │ │ │ ├── mempfsync.html │ │ │ │ ├── mempget_clear_len.html │ │ │ │ ├── mempget_fileid.html │ │ │ │ ├── mempget_flags.html │ │ │ │ ├── mempget_ftype.html │ │ │ │ ├── mempget_lsn_offset.html │ │ │ │ ├── mempget_maxsize.html │ │ │ │ ├── mempget_mp_max_openfd.html │ │ │ │ ├── mempget_mp_max_write.html │ │ │ │ ├── mempget_pgcookie.html │ │ │ │ ├── mempget_priority.html │ │ │ │ ├── mempput.html │ │ │ │ ├── mempregister.html │ │ │ │ ├── mempset_clear_len.html │ │ │ │ ├── mempset_fileid.html │ │ │ │ ├── mempset_flags.html │ │ │ │ ├── mempset_ftype.html │ │ │ │ ├── mempset_lsn_offset.html │ │ │ │ ├── mempset_maxsize.html │ │ │ │ ├── mempset_mp_max_openfd.html │ │ │ │ ├── mempset_mp_max_write.html │ │ │ │ ├── mempset_pgcookie.html │ │ │ │ ├── mempset_priority.html │ │ │ │ ├── mempstat.html │ │ │ │ ├── mempstat_print.html │ │ │ │ ├── mempsync.html │ │ │ │ ├── memptrickle.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── mutex.html │ │ │ │ ├── mutex_set_align_parameter.html │ │ │ │ ├── mutex_set_increment_parameter.html │ │ │ │ ├── mutex_set_max_parameter.html │ │ │ │ ├── mutex_set_tas_spins_parameter.html │ │ │ │ ├── mutexalloc.html │ │ │ │ ├── mutexfree.html │ │ │ │ ├── mutexget_align.html │ │ │ │ ├── mutexget_increment.html │ │ │ │ ├── mutexget_init.html │ │ │ │ ├── mutexget_max.html │ │ │ │ ├── mutexget_tas_spins.html │ │ │ │ ├── mutexlock.html │ │ │ │ ├── mutexset_align.html │ │ │ │ ├── mutexset_increment.html │ │ │ │ ├── mutexset_init.html │ │ │ │ ├── mutexset_max.html │ │ │ │ ├── mutexset_tas_spins.html │ │ │ │ ├── mutexstat.html │ │ │ │ ├── mutexstat_print.html │ │ │ │ ├── mutexunlock.html │ │ │ │ ├── preface.html │ │ │ │ ├── rep.html │ │ │ │ ├── rep_set_clockskew_parameter.html │ │ │ │ ├── rep_set_config_parameter.html │ │ │ │ ├── rep_set_limit_parameter.html │ │ │ │ ├── rep_set_nsites_parameter.html │ │ │ │ ├── rep_set_priority_parameter.html │ │ │ │ ├── rep_set_request_parameter.html │ │ │ │ ├── rep_set_timeout_parameter.html │ │ │ │ ├── repclockskew.html │ │ │ │ ├── repconfig.html │ │ │ │ ├── repelect.html │ │ │ │ ├── repget_clockskew.html │ │ │ │ ├── repget_config.html │ │ │ │ ├── repget_limit.html │ │ │ │ ├── repget_nsites.html │ │ │ │ ├── repget_priority.html │ │ │ │ ├── repget_request.html │ │ │ │ ├── repget_timeout.html │ │ │ │ ├── repmessage.html │ │ │ │ ├── repmgr_channel.html │ │ │ │ ├── repmgr_local_site.html │ │ │ │ ├── repmgr_msg_dispatch.html │ │ │ │ ├── repmgr_set_ack_policy_parameter.html │ │ │ │ ├── repmgr_site.html │ │ │ │ ├── repmgr_site_by_eid.html │ │ │ │ ├── repmgr_site_parameter.html │ │ │ │ ├── repmgrget_ack_policy.html │ │ │ │ ├── repmgrset_ack_policy.html │ │ │ │ ├── repmgrsite_list.html │ │ │ │ ├── repmgrstart.html │ │ │ │ ├── repmgrstat.html │ │ │ │ ├── repmgrstat_print.html │ │ │ │ ├── repnsites.html │ │ │ │ ├── reppriority.html │ │ │ │ ├── repset_limit.html │ │ │ │ ├── repset_request.html │ │ │ │ ├── repset_timeout.html │ │ │ │ ├── repstart.html │ │ │ │ ├── repstat.html │ │ │ │ ├── repstat_print.html │ │ │ │ ├── repsync.html │ │ │ │ ├── reptransport.html │ │ │ │ ├── seq.html │ │ │ │ ├── seqclose.html │ │ │ │ ├── seqcreate.html │ │ │ │ ├── seqget.html │ │ │ │ ├── seqget_cachesize.html │ │ │ │ ├── seqget_dbp.html │ │ │ │ ├── seqget_flags.html │ │ │ │ ├── seqget_key.html │ │ │ │ ├── seqget_range.html │ │ │ │ ├── seqinitial_value.html │ │ │ │ ├── seqopen.html │ │ │ │ ├── seqremove.html │ │ │ │ ├── seqset_cachesize.html │ │ │ │ ├── seqset_flags.html │ │ │ │ ├── seqset_range.html │ │ │ │ ├── seqstat.html │ │ │ │ ├── seqstat_print.html │ │ │ │ ├── set_cache_max_parameter.html │ │ │ │ ├── set_cachesize_parameter.html │ │ │ │ ├── set_create_dir_parameter.html │ │ │ │ ├── set_data_len_parameter.html │ │ │ │ ├── set_flags_parameter.html │ │ │ │ ├── set_intermediate_dir_mode_parameter.html │ │ │ │ ├── set_lg_bsize_parameter.html │ │ │ │ ├── set_lg_dir_parameter.html │ │ │ │ ├── set_lg_filemode_parameter.html │ │ │ │ ├── set_lg_max_parameter.html │ │ │ │ ├── set_lg_regionmax_parameter.html │ │ │ │ ├── set_lk_detect_parameter.html │ │ │ │ ├── set_lk_max_lockers_parameter.html │ │ │ │ ├── set_lk_max_locks_parameter.html │ │ │ │ ├── set_lk_max_objects_parameter.html │ │ │ │ ├── set_lk_partitions_parameter.html │ │ │ │ ├── set_mp_max_openfd_parameter.html │ │ │ │ ├── set_mp_max_write_parameter.html │ │ │ │ ├── set_mp_mmapsize_parameter.html │ │ │ │ ├── set_open_flags_parameter.html │ │ │ │ ├── set_shm_key_parameter.html │ │ │ │ ├── set_thread_count_parameter.html │ │ │ │ ├── set_timeout_parameter.html │ │ │ │ ├── set_tmp_dir_parameter.html │ │ │ │ ├── set_tx_max_parameter.html │ │ │ │ ├── set_verbose_parameter.html │ │ │ │ ├── setfunc.html │ │ │ │ ├── sqlite3.html │ │ │ │ ├── txn.html │ │ │ │ ├── txnabort.html │ │ │ │ ├── txnbegin.html │ │ │ │ ├── txncheckpoint.html │ │ │ │ ├── txncommit.html │ │ │ │ ├── txndiscard.html │ │ │ │ ├── txnget_name.html │ │ │ │ ├── txnget_priority.html │ │ │ │ ├── txnid.html │ │ │ │ ├── txnprepare.html │ │ │ │ ├── txnrecover.html │ │ │ │ ├── txnset_commit_token.html │ │ │ │ ├── txnset_name.html │ │ │ │ ├── txnset_priority.html │ │ │ │ ├── txnset_timeout.html │ │ │ │ ├── txnstat.html │ │ │ │ ├── txnstat_print.html │ │ │ │ └── utilities.html │ │ │ ├── CXX │ │ │ │ ├── BDB-CXX_APIReference.pdf │ │ │ │ ├── add_data_dir_parameter.html │ │ │ │ ├── apiReference.css │ │ │ │ ├── configuration_reference.html │ │ │ │ ├── db.html │ │ │ │ ├── db_archive.html │ │ │ │ ├── db_checkpoint.html │ │ │ │ ├── db_copy.html │ │ │ │ ├── db_deadlock.html │ │ │ │ ├── db_dump.html │ │ │ │ ├── db_heap_rid.html │ │ │ │ ├── db_hotbackup.html │ │ │ │ ├── db_load.html │ │ │ │ ├── db_log_verify.html │ │ │ │ ├── db_printlog.html │ │ │ │ ├── db_recover.html │ │ │ │ ├── db_replicate.html │ │ │ │ ├── db_site.html │ │ │ │ ├── db_sql_codegen.html │ │ │ │ ├── db_stat.html │ │ │ │ ├── db_tuner.html │ │ │ │ ├── db_upgrade.html │ │ │ │ ├── db_verify.html │ │ │ │ ├── dbassociate.html │ │ │ │ ├── dbassociate_foreign.html │ │ │ │ ├── dbc.html │ │ │ │ ├── dbcclose.html │ │ │ │ ├── dbccmp.html │ │ │ │ ├── dbccount.html │ │ │ │ ├── dbcdel.html │ │ │ │ ├── dbcdup.html │ │ │ │ ├── dbcget.html │ │ │ │ ├── dbcget_priority.html │ │ │ │ ├── dbchannel_close.html │ │ │ │ ├── dbchannel_send_msg.html │ │ │ │ ├── dbchannel_send_request.html │ │ │ │ ├── dbchannel_set_timeout.html │ │ │ │ ├── dbclose.html │ │ │ │ ├── dbcompact.html │ │ │ │ ├── dbcput.html │ │ │ │ ├── dbcreate.html │ │ │ │ ├── dbcset_priority.html │ │ │ │ ├── dbcursor.html │ │ │ │ ├── dbdeadlock.html │ │ │ │ ├── dbdel.html │ │ │ │ ├── dberr.html │ │ │ │ ├── dbexception.html │ │ │ │ ├── dbexists.html │ │ │ │ ├── dbfd.html │ │ │ │ ├── dbget.html │ │ │ │ ├── dbget_bt_minkey.html │ │ │ │ ├── dbget_byteswapped.html │ │ │ │ ├── dbget_cachesize.html │ │ │ │ ├── dbget_create_dir.html │ │ │ │ ├── dbget_dbname.html │ │ │ │ ├── dbget_encrypt_flags.html │ │ │ │ ├── dbget_errfile.html │ │ │ │ ├── dbget_errpfx.html │ │ │ │ ├── dbget_flags.html │ │ │ │ ├── dbget_h_ffactor.html │ │ │ │ ├── dbget_h_nelem.html │ │ │ │ ├── dbget_heap_regionsize.html │ │ │ │ ├── dbget_heapsize.html │ │ │ │ ├── dbget_lk_exclusive.html │ │ │ │ ├── dbget_lorder.html │ │ │ │ ├── dbget_mpf.html │ │ │ │ ├── dbget_msgfile.html │ │ │ │ ├── dbget_multiple.html │ │ │ │ ├── dbget_open_flags.html │ │ │ │ ├── dbget_pagesize.html │ │ │ │ ├── dbget_partition_callback.html │ │ │ │ ├── dbget_partition_dirs.html │ │ │ │ ├── dbget_partition_keys.html │ │ │ │ ├── dbget_priority.html │ │ │ │ ├── dbget_q_extentsize.html │ │ │ │ ├── dbget_re_delim.html │ │ │ │ ├── dbget_re_len.html │ │ │ │ ├── dbget_re_pad.html │ │ │ │ ├── dbget_re_source.html │ │ │ │ ├── dbget_transactional.html │ │ │ │ ├── dbget_type.html │ │ │ │ ├── dbgetenv.html │ │ │ │ ├── dbjoin.html │ │ │ │ ├── dbkey_range.html │ │ │ │ ├── dblocknotgranted.html │ │ │ │ ├── dbmemory.html │ │ │ │ ├── dbmultiplebuilder.html │ │ │ │ ├── dbmultipledatabuilder.html │ │ │ │ ├── dbmultipledataiterator.html │ │ │ │ ├── dbmultipleiterator.html │ │ │ │ ├── dbmultiplekeydatabuilder.html │ │ │ │ ├── dbmultiplekeydataiterator.html │ │ │ │ ├── dbmultiplerecnodatabuilder.html │ │ │ │ ├── dbmultiplerecnodataiterator.html │ │ │ │ ├── dbopen.html │ │ │ │ ├── dbput.html │ │ │ │ ├── dbremove.html │ │ │ │ ├── dbrename.html │ │ │ │ ├── dbrephandledead.html │ │ │ │ ├── dbrunrecovery.html │ │ │ │ ├── dbset_alloc.html │ │ │ │ ├── dbset_append_recno.html │ │ │ │ ├── dbset_bt_compare.html │ │ │ │ ├── dbset_bt_compress.html │ │ │ │ ├── dbset_bt_minkey.html │ │ │ │ ├── dbset_bt_prefix.html │ │ │ │ ├── dbset_cachesize.html │ │ │ │ ├── dbset_create_dir.html │ │ │ │ ├── dbset_dup_compare.html │ │ │ │ ├── dbset_encrypt.html │ │ │ │ ├── dbset_errcall.html │ │ │ │ ├── dbset_errfile.html │ │ │ │ ├── dbset_error_stream.html │ │ │ │ ├── dbset_errpfx.html │ │ │ │ ├── dbset_feedback.html │ │ │ │ ├── dbset_flags.html │ │ │ │ ├── dbset_h_compare.html │ │ │ │ ├── dbset_h_ffactor.html │ │ │ │ ├── dbset_h_hash.html │ │ │ │ ├── dbset_h_nelem.html │ │ │ │ ├── dbset_heap_regionsize.html │ │ │ │ ├── dbset_heapsize.html │ │ │ │ ├── dbset_lk_exclusive.html │ │ │ │ ├── dbset_lorder.html │ │ │ │ ├── dbset_message_stream.html │ │ │ │ ├── dbset_msgcall.html │ │ │ │ ├── dbset_msgfile.html │ │ │ │ ├── dbset_pagesize.html │ │ │ │ ├── dbset_partition.html │ │ │ │ ├── dbset_partition_dirs.html │ │ │ │ ├── dbset_priority.html │ │ │ │ ├── dbset_q_extentsize.html │ │ │ │ ├── dbset_re_delim.html │ │ │ │ ├── dbset_re_len.html │ │ │ │ ├── dbset_re_pad.html │ │ │ │ ├── dbset_re_source.html │ │ │ │ ├── dbsite_close.html │ │ │ │ ├── dbsite_get_address.html │ │ │ │ ├── dbsite_get_config.html │ │ │ │ ├── dbsite_get_eid.html │ │ │ │ ├── dbsite_remove.html │ │ │ │ ├── dbsite_set_config.html │ │ │ │ ├── dbsort_multiple.html │ │ │ │ ├── dbsql.html │ │ │ │ ├── dbstat.html │ │ │ │ ├── dbstat_print.html │ │ │ │ ├── dbsync.html │ │ │ │ ├── dbt.html │ │ │ │ ├── dbtruncate.html │ │ │ │ ├── dbupgrade.html │ │ │ │ ├── dbverify.html │ │ │ │ ├── env.html │ │ │ │ ├── envadd_data_dir.html │ │ │ │ ├── envbackup.html │ │ │ │ ├── envcdsgroup_begin.html │ │ │ │ ├── envclose.html │ │ │ │ ├── envcreate.html │ │ │ │ ├── envdbbackup.html │ │ │ │ ├── envdbremove.html │ │ │ │ ├── envdbrename.html │ │ │ │ ├── enverr.html │ │ │ │ ├── envevent_notify.html │ │ │ │ ├── envfailchk.html │ │ │ │ ├── envfileid_reset.html │ │ │ │ ├── envfullversion.html │ │ │ │ ├── envget_backup_callbacks.html │ │ │ │ ├── envget_backup_config.html │ │ │ │ ├── envget_cache_max.html │ │ │ │ ├── envget_cachesize.html │ │ │ │ ├── envget_create_dir.html │ │ │ │ ├── envget_data_dirs.html │ │ │ │ ├── envget_encrypt_flags.html │ │ │ │ ├── envget_errfile.html │ │ │ │ ├── envget_errpfx.html │ │ │ │ ├── envget_flags.html │ │ │ │ ├── envget_home.html │ │ │ │ ├── envget_intermediate_dir_mode.html │ │ │ │ ├── envget_lg_bsize.html │ │ │ │ ├── envget_lg_dir.html │ │ │ │ ├── envget_lg_filemode.html │ │ │ │ ├── envget_lg_max.html │ │ │ │ ├── envget_lg_regionmax.html │ │ │ │ ├── envget_lk_conflicts.html │ │ │ │ ├── envget_lk_detect.html │ │ │ │ ├── envget_lk_max_lockers.html │ │ │ │ ├── envget_lk_max_locks.html │ │ │ │ ├── envget_lk_max_objects.html │ │ │ │ ├── envget_lk_partitions.html │ │ │ │ ├── envget_lk_priority.html │ │ │ │ ├── envget_lk_tablesize.html │ │ │ │ ├── envget_memory_init.html │ │ │ │ ├── envget_memory_max.html │ │ │ │ ├── envget_metadata_dir.html │ │ │ │ ├── envget_mp_mmapsize.html │ │ │ │ ├── envget_mp_mtxcount.html │ │ │ │ ├── envget_mp_pagesize.html │ │ │ │ ├── envget_mp_tablesize.html │ │ │ │ ├── envget_msgfile.html │ │ │ │ ├── envget_open_flags.html │ │ │ │ ├── envget_shm_key.html │ │ │ │ ├── envget_thread_count.html │ │ │ │ ├── envget_timeout.html │ │ │ │ ├── envget_tmp_dir.html │ │ │ │ ├── envget_tx_max.html │ │ │ │ ├── envget_tx_timestamp.html │ │ │ │ ├── envget_verbose.html │ │ │ │ ├── envlog_get_config.html │ │ │ │ ├── envlog_set_config.html │ │ │ │ ├── envlog_verify.html │ │ │ │ ├── envlsn_reset.html │ │ │ │ ├── envopen.html │ │ │ │ ├── envremove.html │ │ │ │ ├── envset_alloc.html │ │ │ │ ├── envset_app_dispatch.html │ │ │ │ ├── envset_backup_callbacks.html │ │ │ │ ├── envset_backup_config.html │ │ │ │ ├── envset_cache_max.html │ │ │ │ ├── envset_cachesize.html │ │ │ │ ├── envset_create_dir.html │ │ │ │ ├── envset_data_dir.html │ │ │ │ ├── envset_encrypt.html │ │ │ │ ├── envset_errcall.html │ │ │ │ ├── envset_errfile.html │ │ │ │ ├── envset_error_stream.html │ │ │ │ ├── envset_errpfx.html │ │ │ │ ├── envset_feedback.html │ │ │ │ ├── envset_flags.html │ │ │ │ ├── envset_intermediate_dir_mode.html │ │ │ │ ├── envset_isalive.html │ │ │ │ ├── envset_lg_bsize.html │ │ │ │ ├── envset_lg_dir.html │ │ │ │ ├── envset_lg_filemode.html │ │ │ │ ├── envset_lg_max.html │ │ │ │ ├── envset_lg_regionmax.html │ │ │ │ ├── envset_lk_conflicts.html │ │ │ │ ├── envset_lk_detect.html │ │ │ │ ├── envset_lk_max_lockers.html │ │ │ │ ├── envset_lk_max_locks.html │ │ │ │ ├── envset_lk_max_objects.html │ │ │ │ ├── envset_lk_partitions.html │ │ │ │ ├── envset_lk_priority.html │ │ │ │ ├── envset_lk_tablesize.html │ │ │ │ ├── envset_memory_init.html │ │ │ │ ├── envset_memory_max.html │ │ │ │ ├── envset_message_stream.html │ │ │ │ ├── envset_metadata_dir.html │ │ │ │ ├── envset_mp_mmapsize.html │ │ │ │ ├── envset_mp_mtxcount.html │ │ │ │ ├── envset_mp_pagesize.html │ │ │ │ ├── envset_mp_tablesize.html │ │ │ │ ├── envset_msgcall.html │ │ │ │ ├── envset_msgfile.html │ │ │ │ ├── envset_shm_key.html │ │ │ │ ├── envset_thread_count.html │ │ │ │ ├── envset_thread_id.html │ │ │ │ ├── envset_thread_id_string.html │ │ │ │ ├── envset_timeout.html │ │ │ │ ├── envset_tmp_dir.html │ │ │ │ ├── envset_tx_max.html │ │ │ │ ├── envset_tx_timestamp.html │ │ │ │ ├── envset_verbose.html │ │ │ │ ├── envstat.html │ │ │ │ ├── envstrerror.html │ │ │ │ ├── envtxn_applied.html │ │ │ │ ├── envversion.html │ │ │ │ ├── frame_index.html │ │ │ │ ├── frame_main.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── lock.html │ │ │ │ ├── lockdetect.html │ │ │ │ ├── lockget.html │ │ │ │ ├── lockid.html │ │ │ │ ├── lockid_free.html │ │ │ │ ├── lockput.html │ │ │ │ ├── lockstat.html │ │ │ │ ├── lockstat_print.html │ │ │ │ ├── lockvec.html │ │ │ │ ├── log_set_config_parameter.html │ │ │ │ ├── logarchive.html │ │ │ │ ├── logc.html │ │ │ │ ├── logcclose.html │ │ │ │ ├── logcget.html │ │ │ │ ├── logcompare.html │ │ │ │ ├── logcursor.html │ │ │ │ ├── logfile.html │ │ │ │ ├── logflush.html │ │ │ │ ├── logprintf.html │ │ │ │ ├── logput.html │ │ │ │ ├── logstat.html │ │ │ │ ├── logstat_print.html │ │ │ │ ├── lsn.html │ │ │ │ ├── memp.html │ │ │ │ ├── mempfclose.html │ │ │ │ ├── mempfcreate.html │ │ │ │ ├── mempfget.html │ │ │ │ ├── mempfopen.html │ │ │ │ ├── mempfsync.html │ │ │ │ ├── mempget_clear_len.html │ │ │ │ ├── mempget_fileid.html │ │ │ │ ├── mempget_flags.html │ │ │ │ ├── mempget_ftype.html │ │ │ │ ├── mempget_lsn_offset.html │ │ │ │ ├── mempget_maxsize.html │ │ │ │ ├── mempget_mp_max_openfd.html │ │ │ │ ├── mempget_mp_max_write.html │ │ │ │ ├── mempget_pgcookie.html │ │ │ │ ├── mempget_priority.html │ │ │ │ ├── mempput.html │ │ │ │ ├── mempregister.html │ │ │ │ ├── mempset_clear_len.html │ │ │ │ ├── mempset_fileid.html │ │ │ │ ├── mempset_flags.html │ │ │ │ ├── mempset_ftype.html │ │ │ │ ├── mempset_lsn_offset.html │ │ │ │ ├── mempset_maxsize.html │ │ │ │ ├── mempset_mp_max_openfd.html │ │ │ │ ├── mempset_mp_max_write.html │ │ │ │ ├── mempset_pgcookie.html │ │ │ │ ├── mempset_priority.html │ │ │ │ ├── mempstat.html │ │ │ │ ├── mempstat_print.html │ │ │ │ ├── mempsync.html │ │ │ │ ├── memptrickle.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── mutex.html │ │ │ │ ├── mutex_set_align_parameter.html │ │ │ │ ├── mutex_set_increment_parameter.html │ │ │ │ ├── mutex_set_max_parameter.html │ │ │ │ ├── mutex_set_tas_spins_parameter.html │ │ │ │ ├── mutexalloc.html │ │ │ │ ├── mutexfree.html │ │ │ │ ├── mutexget_align.html │ │ │ │ ├── mutexget_increment.html │ │ │ │ ├── mutexget_init.html │ │ │ │ ├── mutexget_max.html │ │ │ │ ├── mutexget_tas_spins.html │ │ │ │ ├── mutexlock.html │ │ │ │ ├── mutexset_align.html │ │ │ │ ├── mutexset_increment.html │ │ │ │ ├── mutexset_init.html │ │ │ │ ├── mutexset_max.html │ │ │ │ ├── mutexset_tas_spins.html │ │ │ │ ├── mutexstat.html │ │ │ │ ├── mutexstat_print.html │ │ │ │ ├── mutexunlock.html │ │ │ │ ├── preface.html │ │ │ │ ├── rep.html │ │ │ │ ├── rep_set_clockskew_parameter.html │ │ │ │ ├── rep_set_config_parameter.html │ │ │ │ ├── rep_set_limit_parameter.html │ │ │ │ ├── rep_set_nsites_parameter.html │ │ │ │ ├── rep_set_priority_parameter.html │ │ │ │ ├── rep_set_request_parameter.html │ │ │ │ ├── rep_set_timeout_parameter.html │ │ │ │ ├── repclockskew.html │ │ │ │ ├── repconfig.html │ │ │ │ ├── repelect.html │ │ │ │ ├── repget_clockskew.html │ │ │ │ ├── repget_config.html │ │ │ │ ├── repget_limit.html │ │ │ │ ├── repget_nsites.html │ │ │ │ ├── repget_priority.html │ │ │ │ ├── repget_request.html │ │ │ │ ├── repget_timeout.html │ │ │ │ ├── repmessage.html │ │ │ │ ├── repmgr_channel.html │ │ │ │ ├── repmgr_local_site.html │ │ │ │ ├── repmgr_msg_dispatch.html │ │ │ │ ├── repmgr_set_ack_policy_parameter.html │ │ │ │ ├── repmgr_site.html │ │ │ │ ├── repmgr_site_by_eid.html │ │ │ │ ├── repmgr_site_parameter.html │ │ │ │ ├── repmgrget_ack_policy.html │ │ │ │ ├── repmgrset_ack_policy.html │ │ │ │ ├── repmgrsite_list.html │ │ │ │ ├── repmgrstart.html │ │ │ │ ├── repmgrstat.html │ │ │ │ ├── repmgrstat_print.html │ │ │ │ ├── repnsites.html │ │ │ │ ├── reppriority.html │ │ │ │ ├── repset_limit.html │ │ │ │ ├── repset_request.html │ │ │ │ ├── repset_timeout.html │ │ │ │ ├── repstart.html │ │ │ │ ├── repstat.html │ │ │ │ ├── repstat_print.html │ │ │ │ ├── repsync.html │ │ │ │ ├── reptransport.html │ │ │ │ ├── seq.html │ │ │ │ ├── seqclose.html │ │ │ │ ├── seqcreate.html │ │ │ │ ├── seqget.html │ │ │ │ ├── seqget_cachesize.html │ │ │ │ ├── seqget_dbp.html │ │ │ │ ├── seqget_flags.html │ │ │ │ ├── seqget_key.html │ │ │ │ ├── seqget_range.html │ │ │ │ ├── seqinitial_value.html │ │ │ │ ├── seqopen.html │ │ │ │ ├── seqremove.html │ │ │ │ ├── seqset_cachesize.html │ │ │ │ ├── seqset_flags.html │ │ │ │ ├── seqset_range.html │ │ │ │ ├── seqstat.html │ │ │ │ ├── seqstat_print.html │ │ │ │ ├── set_cache_max_parameter.html │ │ │ │ ├── set_cachesize_parameter.html │ │ │ │ ├── set_create_dir_parameter.html │ │ │ │ ├── set_data_len_parameter.html │ │ │ │ ├── set_flags_parameter.html │ │ │ │ ├── set_intermediate_dir_mode_parameter.html │ │ │ │ ├── set_lg_bsize_parameter.html │ │ │ │ ├── set_lg_dir_parameter.html │ │ │ │ ├── set_lg_filemode_parameter.html │ │ │ │ ├── set_lg_max_parameter.html │ │ │ │ ├── set_lg_regionmax_parameter.html │ │ │ │ ├── set_lk_detect_parameter.html │ │ │ │ ├── set_lk_max_lockers_parameter.html │ │ │ │ ├── set_lk_max_locks_parameter.html │ │ │ │ ├── set_lk_max_objects_parameter.html │ │ │ │ ├── set_lk_partitions_parameter.html │ │ │ │ ├── set_mp_max_openfd_parameter.html │ │ │ │ ├── set_mp_max_write_parameter.html │ │ │ │ ├── set_mp_mmapsize_parameter.html │ │ │ │ ├── set_open_flags_parameter.html │ │ │ │ ├── set_shm_key_parameter.html │ │ │ │ ├── set_thread_count_parameter.html │ │ │ │ ├── set_timeout_parameter.html │ │ │ │ ├── set_tmp_dir_parameter.html │ │ │ │ ├── set_tx_max_parameter.html │ │ │ │ ├── set_verbose_parameter.html │ │ │ │ ├── sqlite3.html │ │ │ │ ├── txn.html │ │ │ │ ├── txnabort.html │ │ │ │ ├── txnbegin.html │ │ │ │ ├── txncheckpoint.html │ │ │ │ ├── txncommit.html │ │ │ │ ├── txndiscard.html │ │ │ │ ├── txnget_name.html │ │ │ │ ├── txnget_priority.html │ │ │ │ ├── txnid.html │ │ │ │ ├── txnprepare.html │ │ │ │ ├── txnrecover.html │ │ │ │ ├── txnset_commit_token.html │ │ │ │ ├── txnset_name.html │ │ │ │ ├── txnset_priority.html │ │ │ │ ├── txnset_timeout.html │ │ │ │ ├── txnstat.html │ │ │ │ ├── txnstat_print.html │ │ │ │ └── utilities.html │ │ │ ├── STL │ │ │ │ ├── BDB-STL_APIReference.pdf │ │ │ │ ├── BulkRetrievalOption.html │ │ │ │ ├── DbstlDbt.html │ │ │ │ ├── DbstlElemTraits.html │ │ │ │ ├── DbstlException.html │ │ │ │ ├── ElementHolder.html │ │ │ │ ├── ElementRef.html │ │ │ │ ├── Element_wrappers.html │ │ │ │ ├── Exception_classes_group.html │ │ │ │ ├── FailedAssertionException.html │ │ │ │ ├── InvalidArgumentException.html │ │ │ │ ├── InvalidCursorException.html │ │ │ │ ├── InvalidDbtException.html │ │ │ │ ├── InvalidFunctionCall.html │ │ │ │ ├── InvalidIteratorException.html │ │ │ │ ├── NoSuchKeyException.html │ │ │ │ ├── NotEnoughMemoryException.html │ │ │ │ ├── NotSupportedException.html │ │ │ │ ├── ReadModifyWriteOption.html │ │ │ │ ├── apiReference.css │ │ │ │ ├── db_base_iterator.html │ │ │ │ ├── db_container.html │ │ │ │ ├── db_map.html │ │ │ │ ├── db_map_base_iterator.html │ │ │ │ ├── db_map_iterator.html │ │ │ │ ├── db_map_iterators.html │ │ │ │ ├── db_multimap.html │ │ │ │ ├── db_multiset.html │ │ │ │ ├── db_reverse_iterator.html │ │ │ │ ├── db_set.html │ │ │ │ ├── db_set_base_iterator.html │ │ │ │ ├── db_set_iterator.html │ │ │ │ ├── db_vector.html │ │ │ │ ├── db_vector_base_iterator.html │ │ │ │ ├── db_vector_iterator.html │ │ │ │ ├── db_vector_iterators.html │ │ │ │ ├── dbset_iterators.html │ │ │ │ ├── dbstl_containers.html │ │ │ │ ├── dbstl_global_functions.html │ │ │ │ ├── dbstl_helper_classes.html │ │ │ │ ├── dbstl_iterators.html │ │ │ │ ├── frame_index.html │ │ │ │ ├── frame_main.html │ │ │ │ ├── index.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── preface.html │ │ │ │ ├── stlBulkRetrievalOptionbulk_buf_size.html │ │ │ │ ├── stlBulkRetrievalOptionbulk_retrieval.html │ │ │ │ ├── stlBulkRetrievalOptionno_bulk_retrieval.html │ │ │ │ ├── stlBulkRetrievalOptionoperator_assign.html │ │ │ │ ├── stlBulkRetrievalOptionoperator_eq.html │ │ │ │ ├── stlDbstlDbtdstr_DbstlDbt.html │ │ │ │ ├── stlDbstlDbtoperator_assign.html │ │ │ │ ├── stlDbstlElemTraitsDbstlElemTraits.html │ │ │ │ ├── stlDbstlElemTraitscompare.html │ │ │ │ ├── stlDbstlElemTraitscopy.html │ │ │ │ ├── stlDbstlElemTraitsdstr_DbstlElemTraits.html │ │ │ │ ├── stlDbstlElemTraitseof.html │ │ │ │ ├── stlDbstlElemTraitseq.html │ │ │ │ ├── stlDbstlElemTraitseq_int_type.html │ │ │ │ ├── stlDbstlElemTraitsfind.html │ │ │ │ ├── stlDbstlElemTraitsget_assign_function.html │ │ │ │ ├── stlDbstlElemTraitsget_compare_function.html │ │ │ │ ├── stlDbstlElemTraitsget_copy_function.html │ │ │ │ ├── stlDbstlElemTraitsget_restore_function.html │ │ │ │ ├── stlDbstlElemTraitsget_sequence_compare_function.html │ │ │ │ ├── stlDbstlElemTraitsget_sequence_copy_function.html │ │ │ │ ├── stlDbstlElemTraitsget_sequence_len_function.html │ │ │ │ ├── stlDbstlElemTraitsget_sequence_n_compare_function.html │ │ │ │ ├── stlDbstlElemTraitsget_size_function.html │ │ │ │ ├── stlDbstlElemTraitsinstance.html │ │ │ │ ├── stlDbstlElemTraitslength.html │ │ │ │ ├── stlDbstlElemTraitslt.html │ │ │ │ ├── stlDbstlElemTraitsmove.html │ │ │ │ ├── stlDbstlElemTraitsnot_eof.html │ │ │ │ ├── stlDbstlElemTraitsset_assign_function.html │ │ │ │ ├── stlDbstlElemTraitsset_compare_function.html │ │ │ │ ├── stlDbstlElemTraitsset_copy_function.html │ │ │ │ ├── stlDbstlElemTraitsset_restore_function.html │ │ │ │ ├── stlDbstlElemTraitsset_sequence_compare_function.html │ │ │ │ ├── stlDbstlElemTraitsset_sequence_copy_function.html │ │ │ │ ├── stlDbstlElemTraitsset_sequence_len_function.html │ │ │ │ ├── stlDbstlElemTraitsset_sequence_n_compare_function.html │ │ │ │ ├── stlDbstlElemTraitsset_size_function.html │ │ │ │ ├── stlDbstlElemTraitsto_char_type.html │ │ │ │ ├── stlDbstlElemTraitsto_int_type.html │ │ │ │ ├── stlDbstlExceptiondstr_DbstlException.html │ │ │ │ ├── stlDbstlExceptionoperator_assign.html │ │ │ │ ├── stlElementHolder_DB_STL_StoreElement.html │ │ │ │ ├── stlElementHolder_DB_STL_value.html │ │ │ │ ├── stlElementHolderdstr_ElementHolder.html │ │ │ │ ├── stlElementHolderoperator__aa.html │ │ │ │ ├── stlElementHolderoperator__ma.html │ │ │ │ ├── stlElementHolderoperator_assign.html │ │ │ │ ├── stlElementHolderoperator_da.html │ │ │ │ ├── stlElementHolderoperator_decr.html │ │ │ │ ├── stlElementHolderoperator_gt_ge.html │ │ │ │ ├── stlElementHolderoperator_ia.html │ │ │ │ ├── stlElementHolderoperator_incr.html │ │ │ │ ├── stlElementHolderoperator_lt_le.html │ │ │ │ ├── stlElementHolderoperator_modasg.html │ │ │ │ ├── stlElementHolderoperator_oa.html │ │ │ │ ├── stlElementHolderoperator_ptype.html │ │ │ │ ├── stlElementHolderoperator_sa.html │ │ │ │ ├── stlElementHolderoperator_xa.html │ │ │ │ ├── stlElementRefElementRef.html │ │ │ │ ├── stlElementRef_DB_STL_StoreElement.html │ │ │ │ ├── stlElementRef_DB_STL_value.html │ │ │ │ ├── stlElementRefoperator_assign.html │ │ │ │ ├── stlFailedAssertionExceptionFailedAssertionException.html │ │ │ │ ├── stlFailedAssertionExceptiondstr_FailedAssertionException.html │ │ │ │ ├── stlReadModifyWriteOptionno_read_modify_write.html │ │ │ │ ├── stlReadModifyWriteOptionoperator_eq.html │ │ │ │ ├── stlReadModifyWriteOptionread_modify_write.html │ │ │ │ ├── stldb_base_iteratorclose_cursor.html │ │ │ │ ├── stldb_base_iteratordb_base_iterator.html │ │ │ │ ├── stldb_base_iteratordstr_db_base_iterator.html │ │ │ │ ├── stldb_base_iteratorget_bulk_bufsize.html │ │ │ │ ├── stldb_base_iteratorget_bulk_retrieval.html │ │ │ │ ├── stldb_base_iteratoris_directdb_get.html │ │ │ │ ├── stldb_base_iteratoris_rmw.html │ │ │ │ ├── stldb_base_iteratoroperator_assign.html │ │ │ │ ├── stldb_base_iteratorset_bulk_buffer.html │ │ │ │ ├── stldb_containerdb_container.html │ │ │ │ ├── stldb_containerdstr_db_container.html │ │ │ │ ├── stldb_containerget_commit_flags.html │ │ │ │ ├── stldb_containerget_cursor_open_flags.html │ │ │ │ ├── stldb_containerget_db_env_handle.html │ │ │ │ ├── stldb_containerget_db_handle.html │ │ │ │ ├── stldb_containerget_db_set_flags.html │ │ │ │ ├── stldb_containerget_txn_begin_flags.html │ │ │ │ ├── stldb_containerset_all_flags.html │ │ │ │ ├── stldb_containerset_commit_flags.html │ │ │ │ ├── stldb_containerset_cursor_open_flags.html │ │ │ │ ├── stldb_containerset_db_handle.html │ │ │ │ ├── stldb_containerset_txn_begin_flags.html │ │ │ │ ├── stldb_map_base_iteratorclose_cursor.html │ │ │ │ ├── stldb_map_base_iteratordstr_db_map_base_iterator.html │ │ │ │ ├── stldb_map_base_iteratorget_bulk_bufsize.html │ │ │ │ ├── stldb_map_base_iteratormove_to.html │ │ │ │ ├── stldb_map_base_iteratoroperator__star.html │ │ │ │ ├── stldb_map_base_iteratoroperator_arrow.html │ │ │ │ ├── stldb_map_base_iteratoroperator_assign.html │ │ │ │ ├── stldb_map_base_iteratoroperator_decr.html │ │ │ │ ├── stldb_map_base_iteratoroperator_eq.html │ │ │ │ ├── stldb_map_base_iteratoroperator_incr.html │ │ │ │ ├── stldb_map_base_iteratoroperator_ueq.html │ │ │ │ ├── stldb_map_base_iteratorrefresh.html │ │ │ │ ├── stldb_map_base_iteratorset_bulk_buffer.html │ │ │ │ ├── stldb_map_iteratordstr_db_map_iterator.html │ │ │ │ ├── stldb_map_iteratoroperator__star.html │ │ │ │ ├── stldb_map_iteratoroperator_arrow.html │ │ │ │ ├── stldb_map_iteratoroperator_assign.html │ │ │ │ ├── stldb_map_iteratoroperator_decr.html │ │ │ │ ├── stldb_map_iteratoroperator_incr.html │ │ │ │ ├── stldb_map_iteratorrefresh.html │ │ │ │ ├── stldb_mapbegin.html │ │ │ │ ├── stldb_mapbucket_count.html │ │ │ │ ├── stldb_mapclear.html │ │ │ │ ├── stldb_mapcount.html │ │ │ │ ├── stldb_mapdstr_db_map.html │ │ │ │ ├── stldb_mapempty.html │ │ │ │ ├── stldb_mapend.html │ │ │ │ ├── stldb_mapequal_range.html │ │ │ │ ├── stldb_maperase.html │ │ │ │ ├── stldb_mapfind.html │ │ │ │ ├── stldb_maphash_funct.html │ │ │ │ ├── stldb_mapinsert.html │ │ │ │ ├── stldb_mapis_hash.html │ │ │ │ ├── stldb_mapkey_comp.html │ │ │ │ ├── stldb_mapkey_eq.html │ │ │ │ ├── stldb_maplower_bound.html │ │ │ │ ├── stldb_mapmax_size.html │ │ │ │ ├── stldb_mapoperator_assign.html │ │ │ │ ├── stldb_mapoperator_eq.html │ │ │ │ ├── stldb_mapoperator_sqbrk.html │ │ │ │ ├── stldb_mapoperator_ueq.html │ │ │ │ ├── stldb_maprbegin.html │ │ │ │ ├── stldb_maprend.html │ │ │ │ ├── stldb_mapsize.html │ │ │ │ ├── stldb_mapswap.html │ │ │ │ ├── stldb_mapupper_bound.html │ │ │ │ ├── stldb_mapvalue_comp.html │ │ │ │ ├── stldb_multimapcount.html │ │ │ │ ├── stldb_multimapdb_multimap.html │ │ │ │ ├── stldb_multimapdstr_db_multimap.html │ │ │ │ ├── stldb_multimapequal_range.html │ │ │ │ ├── stldb_multimapequal_range_N.html │ │ │ │ ├── stldb_multimaperase.html │ │ │ │ ├── stldb_multimapoperator_assign.html │ │ │ │ ├── stldb_multimapoperator_eq.html │ │ │ │ ├── stldb_multimapoperator_ueq.html │ │ │ │ ├── stldb_multimapswap.html │ │ │ │ ├── stldb_multimapupper_bound.html │ │ │ │ ├── stldb_multisetdstr_db_multiset.html │ │ │ │ ├── stldb_multiseterase.html │ │ │ │ ├── stldb_multisetinsert.html │ │ │ │ ├── stldb_multisetoperator_assign.html │ │ │ │ ├── stldb_multisetoperator_eq.html │ │ │ │ ├── stldb_multisetoperator_ueq.html │ │ │ │ ├── stldb_multisetswap.html │ │ │ │ ├── stldb_reverse_iteratordb_reverse_iterator.html │ │ │ │ ├── stldb_reverse_iteratoroperator_add.html │ │ │ │ ├── stldb_reverse_iteratoroperator_assign.html │ │ │ │ ├── stldb_reverse_iteratoroperator_decr.html │ │ │ │ ├── stldb_reverse_iteratoroperator_ge.html │ │ │ │ ├── stldb_reverse_iteratoroperator_gt.html │ │ │ │ ├── stldb_reverse_iteratoroperator_ia.html │ │ │ │ ├── stldb_reverse_iteratoroperator_le.html │ │ │ │ ├── stldb_reverse_iteratoroperator_lt.html │ │ │ │ ├── stldb_reverse_iteratoroperator_sa.html │ │ │ │ ├── stldb_reverse_iteratoroperator_sqbrk.html │ │ │ │ ├── stldb_reverse_iteratoroperator_sub.html │ │ │ │ ├── stldb_set_base_iteratordb_set_base_iterator.html │ │ │ │ ├── stldb_set_base_iteratoroperator__star.html │ │ │ │ ├── stldb_set_base_iteratoroperator_arrow.html │ │ │ │ ├── stldb_set_base_iteratoroperator_decr.html │ │ │ │ ├── stldb_set_base_iteratoroperator_incr.html │ │ │ │ ├── stldb_set_base_iteratorrefresh.html │ │ │ │ ├── stldb_set_iteratordb_set_iterator.html │ │ │ │ ├── stldb_set_iteratoroperator__star.html │ │ │ │ ├── stldb_set_iteratoroperator_arrow.html │ │ │ │ ├── stldb_set_iteratoroperator_decr.html │ │ │ │ ├── stldb_set_iteratoroperator_incr.html │ │ │ │ ├── stldb_set_iteratorrefresh.html │ │ │ │ ├── stldb_setdstr_db_set.html │ │ │ │ ├── stldb_setinsert.html │ │ │ │ ├── stldb_setoperator_assign.html │ │ │ │ ├── stldb_setoperator_eq.html │ │ │ │ ├── stldb_setoperator_ueq.html │ │ │ │ ├── stldb_setswap.html │ │ │ │ ├── stldb_setvalue_comp.html │ │ │ │ ├── stldb_vector_base_iteratorclose_cursor.html │ │ │ │ ├── stldb_vector_base_iteratordstr_db_vector_base_iterator.html │ │ │ │ ├── stldb_vector_base_iteratorget_bulk_bufsize.html │ │ │ │ ├── stldb_vector_base_iteratorget_current_index.html │ │ │ │ ├── stldb_vector_base_iteratormove_to.html │ │ │ │ ├── stldb_vector_base_iteratoroperator__star.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_add.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_arrow.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_assign.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_decr.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_eq.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_ge.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_gt.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_ia.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_incr.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_le.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_lt.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_sa.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_sqbrk.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_sub.html │ │ │ │ ├── stldb_vector_base_iteratoroperator_ueq.html │ │ │ │ ├── stldb_vector_base_iteratorrefresh.html │ │ │ │ ├── stldb_vector_base_iteratorset_bulk_buffer.html │ │ │ │ ├── stldb_vector_iteratordstr_db_vector_iterator.html │ │ │ │ ├── stldb_vector_iteratoroperator__star.html │ │ │ │ ├── stldb_vector_iteratoroperator_add.html │ │ │ │ ├── stldb_vector_iteratoroperator_arrow.html │ │ │ │ ├── stldb_vector_iteratoroperator_assign.html │ │ │ │ ├── stldb_vector_iteratoroperator_decr.html │ │ │ │ ├── stldb_vector_iteratoroperator_ia.html │ │ │ │ ├── stldb_vector_iteratoroperator_incr.html │ │ │ │ ├── stldb_vector_iteratoroperator_sa.html │ │ │ │ ├── stldb_vector_iteratoroperator_sqbrk.html │ │ │ │ ├── stldb_vector_iteratoroperator_sub.html │ │ │ │ ├── stldb_vector_iteratorrefresh.html │ │ │ │ ├── stldb_vectorassign.html │ │ │ │ ├── stldb_vectorat.html │ │ │ │ ├── stldb_vectorback.html │ │ │ │ ├── stldb_vectorcapacity.html │ │ │ │ ├── stldb_vectorclear.html │ │ │ │ ├── stldb_vectordb_vector.html │ │ │ │ ├── stldb_vectordstr_db_vector.html │ │ │ │ ├── stldb_vectorempty.html │ │ │ │ ├── stldb_vectorend.html │ │ │ │ ├── stldb_vectorerase.html │ │ │ │ ├── stldb_vectorfront.html │ │ │ │ ├── stldb_vectorinsert.html │ │ │ │ ├── stldb_vectormax_size.html │ │ │ │ ├── stldb_vectormerge.html │ │ │ │ ├── stldb_vectoroperator_assign.html │ │ │ │ ├── stldb_vectoroperator_eq.html │ │ │ │ ├── stldb_vectoroperator_lt.html │ │ │ │ ├── stldb_vectoroperator_sqbrk.html │ │ │ │ ├── stldb_vectoroperator_ueq.html │ │ │ │ ├── stldb_vectorpop_back.html │ │ │ │ ├── stldb_vectorpop_front.html │ │ │ │ ├── stldb_vectorpush_back.html │ │ │ │ ├── stldb_vectorpush_front.html │ │ │ │ ├── stldb_vectorrbegin.html │ │ │ │ ├── stldb_vectorremove.html │ │ │ │ ├── stldb_vectorremove_if.html │ │ │ │ ├── stldb_vectorrend.html │ │ │ │ ├── stldb_vectorreserve.html │ │ │ │ ├── stldb_vectorresize.html │ │ │ │ ├── stldb_vectorreverse.html │ │ │ │ ├── stldb_vectorsize.html │ │ │ │ ├── stldb_vectorsort.html │ │ │ │ ├── stldb_vectorsplice.html │ │ │ │ ├── stldb_vectorswap.html │ │ │ │ ├── stldb_vectorunique.html │ │ │ │ ├── stldbstl_global_functionsabort_txn.html │ │ │ │ ├── stldbstl_global_functionsalloc_mutex.html │ │ │ │ ├── stldbstl_global_functionsbegin_txn.html │ │ │ │ ├── stldbstl_global_functionsclose_all_db_envs.html │ │ │ │ ├── stldbstl_global_functionsclose_all_dbs.html │ │ │ │ ├── stldbstl_global_functionsclose_db_cursors.html │ │ │ │ ├── stldbstl_global_functionsclose_db_env.html │ │ │ │ ├── stldbstl_global_functionscommit_txn.html │ │ │ │ ├── stldbstl_global_functionscurrent_txn.html │ │ │ │ ├── stldbstl_global_functionsdbstl_exit.html │ │ │ │ ├── stldbstl_global_functionsdbstl_startup.html │ │ │ │ ├── stldbstl_global_functionsdbstl_thread_exit.html │ │ │ │ ├── stldbstl_global_functionsfree_mutex.html │ │ │ │ ├── stldbstl_global_functionslock_mutex.html │ │ │ │ ├── stldbstl_global_functionsopen_db.html │ │ │ │ ├── stldbstl_global_functionsopen_env.html │ │ │ │ ├── stldbstl_global_functionsoperator_eq.html │ │ │ │ ├── stldbstl_global_functionsregister_db.html │ │ │ │ ├── stldbstl_global_functionsregister_db_env.html │ │ │ │ ├── stldbstl_global_functionsset_current_txn_handle.html │ │ │ │ ├── stldbstl_global_functionsset_global_dbfile_suffix_number.html │ │ │ │ └── stldbstl_global_functionsunlock_mutex.html │ │ │ └── TCL │ │ │ │ ├── BDB-TCL_APIReference.pdf │ │ │ │ ├── apiReference.css │ │ │ │ ├── db_close.html │ │ │ │ ├── db_count.html │ │ │ │ ├── db_cursor.html │ │ │ │ ├── db_del.html │ │ │ │ ├── db_get.html │ │ │ │ ├── db_get_join.html │ │ │ │ ├── db_get_type.html │ │ │ │ ├── db_is_byteswapped.html │ │ │ │ ├── db_join.html │ │ │ │ ├── db_open.html │ │ │ │ ├── db_put.html │ │ │ │ ├── db_remove.html │ │ │ │ ├── db_rename.html │ │ │ │ ├── db_stat.html │ │ │ │ ├── db_sync.html │ │ │ │ ├── db_truncate.html │ │ │ │ ├── dbc_close.html │ │ │ │ ├── dbc_cmp.html │ │ │ │ ├── dbc_del.html │ │ │ │ ├── dbc_dup.html │ │ │ │ ├── dbc_get.html │ │ │ │ ├── dbc_put.html │ │ │ │ ├── env_close.html │ │ │ │ ├── env_dbremove.html │ │ │ │ ├── env_dbrename.html │ │ │ │ ├── env_open.html │ │ │ │ ├── env_remove.html │ │ │ │ ├── frame_index.html │ │ │ │ ├── frame_main.html │ │ │ │ ├── index.html │ │ │ │ ├── preface.html │ │ │ │ ├── tclapi.html │ │ │ │ ├── txn.html │ │ │ │ ├── txn_abort.html │ │ │ │ ├── txn_checkpoint.html │ │ │ │ ├── txn_commit.html │ │ │ │ └── version.html │ │ ├── articles │ │ │ ├── inmemory │ │ │ │ └── C │ │ │ │ │ ├── InMemoryDBApplication.pdf │ │ │ │ │ ├── gettingStarted.css │ │ │ │ │ └── index.html │ │ │ └── mssgtxt │ │ │ │ ├── DBMessageTextReference.pdf │ │ │ │ ├── gettingStarted.css │ │ │ │ └── index.html │ │ ├── bdb-sql │ │ │ ├── BDB-SQL-Guide.pdf │ │ │ ├── accessing_bdb_sql_databases.title.html │ │ │ ├── addedpragmas.html │ │ │ ├── admin.html │ │ │ ├── bdb-concepts.html │ │ │ ├── bfile-c.html │ │ │ ├── bfile-extension.html │ │ │ ├── bfile-sql.html │ │ │ ├── buildinstall.html │ │ │ ├── changedpragmas.html │ │ │ ├── datamigration.html │ │ │ ├── dbfeatures.html │ │ │ ├── dbsqlbasics.html │ │ │ ├── gettingStarted.css │ │ │ ├── index.html │ │ │ ├── journaldirectory.html │ │ │ ├── lockhandling.html │ │ │ ├── lockingnotes.html │ │ │ ├── miscdiff.html │ │ │ ├── moreinfo.html │ │ │ ├── mvcc.html │ │ │ ├── normal-sql.html │ │ │ ├── preface.html │ │ │ ├── rep_usageexamples.html │ │ │ ├── reppragma.html │ │ │ ├── repstatistics.html │ │ │ ├── selectpage_size.html │ │ │ ├── sequencesupport.html │ │ │ ├── sql_encryption.html │ │ │ ├── sqlrep.html │ │ │ ├── sync.html │ │ │ └── unsupportedpragmas.html │ │ ├── collections │ │ │ └── tutorial │ │ │ │ ├── BasicProgram.html │ │ │ │ ├── BerkeleyDB-Java-Collections.pdf │ │ │ │ ├── Entity.html │ │ │ │ ├── SerializableEntity.html │ │ │ │ ├── SerializedObjectStorage.html │ │ │ │ ├── Summary.html │ │ │ │ ├── Tuple.html │ │ │ │ ├── UsingCollectionsAPI.html │ │ │ │ ├── UsingSecondaries.html │ │ │ │ ├── UsingStoredCollections.html │ │ │ │ ├── addingdatabaseitems.html │ │ │ │ ├── collectionOverview.html │ │ │ │ ├── collectionswithentities.html │ │ │ │ ├── createbindingscollections.html │ │ │ │ ├── creatingentitybindings.html │ │ │ │ ├── developing.html │ │ │ │ ├── entitieswithcollections.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── handlingexceptions.html │ │ │ │ ├── implementingmain.html │ │ │ │ ├── index.html │ │ │ │ ├── indexedcollections.html │ │ │ │ ├── intro.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── openclasscatalog.html │ │ │ │ ├── opendatabases.html │ │ │ │ ├── opendbenvironment.html │ │ │ │ ├── openingforeignkeys.html │ │ │ │ ├── preface.html │ │ │ │ ├── removingredundantvalueclasses.html │ │ │ │ ├── retrievingbyindexkey.html │ │ │ │ ├── retrievingdatabaseitems.html │ │ │ │ ├── sortedcollections.html │ │ │ │ ├── transientfieldsinbinding.html │ │ │ │ ├── tuple-serialentitybindings.html │ │ │ │ ├── tuplekeybindings.html │ │ │ │ ├── tupleswithkeycreators.html │ │ │ │ ├── tutorialintroduction.html │ │ │ │ └── usingtransactions.html │ │ ├── csharp │ │ │ ├── BerkeleyDB.chm │ │ │ ├── CloseSearch.png │ │ │ ├── CollapseAll.bmp │ │ │ ├── Collapsed.gif │ │ │ ├── ExpandAll.bmp │ │ │ ├── Expanded.gif │ │ │ ├── FillNode.aspx │ │ │ ├── Index.aspx │ │ │ ├── Index.gif │ │ │ ├── Index.html │ │ │ ├── Item.gif │ │ │ ├── LoadIndexKeywords.aspx │ │ │ ├── Search.gif │ │ │ ├── SearchHelp.aspx │ │ │ ├── Splitter.gif │ │ │ ├── SyncTOC.gif │ │ │ ├── TOC.css │ │ │ ├── TOC.js │ │ │ ├── Web.Config │ │ │ ├── WebKI.xml │ │ │ ├── WebTOC.xml │ │ │ ├── fti │ │ │ │ ├── FTI_100.bin │ │ │ │ ├── FTI_101.bin │ │ │ │ ├── FTI_102.bin │ │ │ │ ├── FTI_103.bin │ │ │ │ ├── FTI_104.bin │ │ │ │ ├── FTI_105.bin │ │ │ │ ├── FTI_106.bin │ │ │ │ ├── FTI_107.bin │ │ │ │ ├── FTI_108.bin │ │ │ │ ├── FTI_109.bin │ │ │ │ ├── FTI_110.bin │ │ │ │ ├── FTI_111.bin │ │ │ │ ├── FTI_112.bin │ │ │ │ ├── FTI_113.bin │ │ │ │ ├── FTI_114.bin │ │ │ │ ├── FTI_115.bin │ │ │ │ ├── FTI_116.bin │ │ │ │ ├── FTI_117.bin │ │ │ │ ├── FTI_118.bin │ │ │ │ ├── FTI_119.bin │ │ │ │ ├── FTI_120.bin │ │ │ │ ├── FTI_121.bin │ │ │ │ ├── FTI_122.bin │ │ │ │ ├── FTI_97.bin │ │ │ │ ├── FTI_98.bin │ │ │ │ ├── FTI_99.bin │ │ │ │ └── FTI_Files.bin │ │ │ ├── html │ │ │ │ ├── AllMembers_T_BerkeleyDB_AckPolicy.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ActiveTransaction.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BTreeCursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BTreeDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BTreeDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BTreeStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BackupOptions.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BadSecondaryException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BaseCursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_BaseDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ByteOrder.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_CacheInfo.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_CachePriority.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_CompactConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_CompactData.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_Cursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_CursorConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_Database.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DatabaseEntry.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DatabaseEnvironment.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DatabaseEnvironmentConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DatabaseException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DatabaseType.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DbChannel.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DbSite.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DbSiteConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DbThreadID.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DeadlockException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_DeadlockPolicy.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ErrorCodes.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ForeignConflictException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_FullLogBufferException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HashCursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HashDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HashDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HashStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HeapDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HeapDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HeapFullException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HeapRecordId.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_HeapStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_IBackup.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_JoinCursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_KeyEmptyException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_KeyExistException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_KeyRange.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LSN.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LeaseExpiredException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LockNotGrantedException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LockStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LockingConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LockingInfo.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LogConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LogStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_LogVerifyConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MPoolConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MPoolFileStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MPoolStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MultipleDatabaseEntry.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MultipleKeyDatabaseEntry.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MutexConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_MutexStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_NotFoundException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_OldVersionException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_PageNotFoundException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_PreparedTransaction.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_QueueDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_QueueDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_QueueStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RecnoCursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RecnoDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RecnoDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RecnoStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RepMgrSite.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RepMgrStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RepProcMsgResult.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ReplicationConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ReplicationHostAddress.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_ReplicationStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_RunRecoveryException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryBTreeDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryCursor.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryHashDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryQueueDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryRecnoDatabase.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_Sequence.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SequenceConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_SequenceStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_Transaction.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_TransactionConfig.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_TransactionStats.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_VerboseMessages.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_VerificationException.htm │ │ │ │ ├── AllMembers_T_BerkeleyDB_VersionMismatchException.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_ALL.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_ALL_AVAILABLE.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_ALL_PEERS.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_NONE.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_ONE.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_ONE_PEER.htm │ │ │ │ ├── F_BerkeleyDB_AckPolicy_QUORUM.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_BTreeCompare.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_BTreePrefixCompare.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_DuplicateCompare.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_Duplicates.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_NoReverseSplitting.htm │ │ │ │ ├── F_BerkeleyDB_BTreeDatabaseConfig_UseRecordNumbers.htm │ │ │ │ ├── F_BerkeleyDB_BackupOptions_Clean.htm │ │ │ │ ├── F_BerkeleyDB_BackupOptions_Creation.htm │ │ │ │ ├── F_BerkeleyDB_BackupOptions_Files.htm │ │ │ │ ├── F_BerkeleyDB_BackupOptions_NoLogs.htm │ │ │ │ ├── F_BerkeleyDB_BackupOptions_SingleDir.htm │ │ │ │ ├── F_BerkeleyDB_BackupOptions_Update.htm │ │ │ │ ├── F_BerkeleyDB_ByteOrder_BIG_ENDIAN.htm │ │ │ │ ├── F_BerkeleyDB_ByteOrder_LITTLE_ENDIAN.htm │ │ │ │ ├── F_BerkeleyDB_ByteOrder_MACHINE.htm │ │ │ │ ├── F_BerkeleyDB_CacheInfo_Bytes.htm │ │ │ │ ├── F_BerkeleyDB_CacheInfo_Gigabytes.htm │ │ │ │ ├── F_BerkeleyDB_CacheInfo_NCaches.htm │ │ │ │ ├── F_BerkeleyDB_CachePriority_DEFAULT.htm │ │ │ │ ├── F_BerkeleyDB_CachePriority_HIGH.htm │ │ │ │ ├── F_BerkeleyDB_CachePriority_LOW.htm │ │ │ │ ├── F_BerkeleyDB_CachePriority_VERY_HIGH.htm │ │ │ │ ├── F_BerkeleyDB_CachePriority_VERY_LOW.htm │ │ │ │ ├── F_BerkeleyDB_CompactConfig_TruncatePages.htm │ │ │ │ ├── F_BerkeleyDB_CompactConfig_returnEnd.htm │ │ │ │ ├── F_BerkeleyDB_CompactConfig_start.htm │ │ │ │ ├── F_BerkeleyDB_CompactConfig_stop.htm │ │ │ │ ├── F_BerkeleyDB_CursorConfig_IsolationDegree.htm │ │ │ │ ├── F_BerkeleyDB_CursorConfig_Priority.htm │ │ │ │ ├── F_BerkeleyDB_CursorConfig_SnapshotIsolation.htm │ │ │ │ ├── F_BerkeleyDB_CursorConfig_WriteCursor.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_AutoCommit.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_ByteOrder.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_CacheSize.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_DoChecksum.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_Env.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_ErrorFeedback.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_ErrorPrefix.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_Feedback.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_FreeThreaded.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_NoMMap.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_NoWaitDbExclusiveLock.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_NonDurableTxns.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_Priority.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_ReadOnly.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_ReadUncommitted.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_Truncate.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseConfig_UseMVCC.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_AutoCommit.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_CDB_ALLDB.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Create.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_CreationDir.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_DataDirs.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_ErrorFeedback.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_ErrorPrefix.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_EventNotify.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Feedback.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_ForceFlush.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_FreeThreaded.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_HotbackupInProgress.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_InitRegions.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_IntermediateDirMode.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_LockSystemCfg.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Lockdown.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_LogSystemCfg.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_MPoolSystemCfg.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_MetadataDir.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_MutexSystemCfg.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_NoBuffer.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_NoLocking.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_NoMMap.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_NoPanic.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Overwrite.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Private.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Register.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_RepSystemCfg.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_RunFatalRecovery.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_RunRecovery.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_SetThreadID.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_SystemMemory.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_TempDir.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_ThreadIsAlive.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_ThreadName.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_TimeNotGranted.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_TxnNoSync.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_TxnNoWait.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_TxnSnapshot.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_TxnWriteNoSync.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseCDB.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseEnvironmentVars.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseLocking.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseLogging.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseMPool.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseMVCC.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseReplication.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_UseTxns.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_Verbosity.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseEnvironmentConfig_YieldCPU.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseException_ErrorCode.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseType_BTREE.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseType_HASH.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseType_HEAP.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseType_QUEUE.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseType_RECNO.htm │ │ │ │ ├── F_BerkeleyDB_DatabaseType_UNKNOWN.htm │ │ │ │ ├── F_BerkeleyDB_DbSiteConfig_Host.htm │ │ │ │ ├── F_BerkeleyDB_DbSiteConfig_Port.htm │ │ │ │ ├── F_BerkeleyDB_DbThreadID_processID.htm │ │ │ │ ├── F_BerkeleyDB_DbThreadID_threadID.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_DEFAULT.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_EXPIRE.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_MAX_LOCKS.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_MAX_WRITE.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_MIN_LOCKS.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_MIN_WRITE.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_OLDEST.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_RANDOM.htm │ │ │ │ ├── F_BerkeleyDB_DeadlockPolicy_YOUNGEST.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_BUFFER_SMALL.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_DONOTINDEX.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_FOREIGN_CONFLICT.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_HEAP_FULL.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_KEYEMPTY.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_KEYEXIST.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_LOCK_DEADLOCK.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_LOCK_NOTGRANTED.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_LOG_BUFFER_FULL.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_NOSERVER.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_NOTFOUND.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_OLD_VERSION.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_PAGE_NOTFOUND.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_DUPMASTER.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_HANDLE_DEAD.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_HOLDELECTION.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_IGNORE.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_ISPERM.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_JOIN_FAILURE.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_LEASE_EXPIRED.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_LOCKOUT.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_NEWSITE.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_NOTPERM.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_REP_UNAVAIL.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_RUNRECOVERY.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_SECONDARY_BAD.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_VERIFY_BAD.htm │ │ │ │ ├── F_BerkeleyDB_ErrorCodes_DB_VERSION_MISMATCH.htm │ │ │ │ ├── F_BerkeleyDB_HashDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_HashDatabaseConfig_DuplicateCompare.htm │ │ │ │ ├── F_BerkeleyDB_HashDatabaseConfig_Duplicates.htm │ │ │ │ ├── F_BerkeleyDB_HashDatabaseConfig_HashComparison.htm │ │ │ │ ├── F_BerkeleyDB_HashDatabaseConfig_HashFunction.htm │ │ │ │ ├── F_BerkeleyDB_HeapDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_LSN_LogFileNumber.htm │ │ │ │ ├── F_BerkeleyDB_LSN_Offset.htm │ │ │ │ ├── F_BerkeleyDB_LockingConfig_DeadlockResolution.htm │ │ │ │ ├── F_BerkeleyDB_LockingInfo_IsolationDegree.htm │ │ │ │ ├── F_BerkeleyDB_LockingInfo_ReadModifyWrite.htm │ │ │ │ ├── F_BerkeleyDB_LogConfig_AutoRemove.htm │ │ │ │ ├── F_BerkeleyDB_LogConfig_Dir.htm │ │ │ │ ├── F_BerkeleyDB_LogConfig_ForceSync.htm │ │ │ │ ├── F_BerkeleyDB_LogConfig_InMemory.htm │ │ │ │ ├── F_BerkeleyDB_LogConfig_NoBuffer.htm │ │ │ │ ├── F_BerkeleyDB_LogConfig_ZeroOnCreate.htm │ │ │ │ ├── F_BerkeleyDB_MPoolConfig_CacheSize.htm │ │ │ │ ├── F_BerkeleyDB_MPoolConfig_MaxCacheSize.htm │ │ │ │ ├── F_BerkeleyDB_QueueDatabaseConfig_Append.htm │ │ │ │ ├── F_BerkeleyDB_QueueDatabaseConfig_ConsumeInOrder.htm │ │ │ │ ├── F_BerkeleyDB_QueueDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_RecnoDatabaseConfig_Append.htm │ │ │ │ ├── F_BerkeleyDB_RecnoDatabaseConfig_BackingFile.htm │ │ │ │ ├── F_BerkeleyDB_RecnoDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_RecnoDatabaseConfig_Renumber.htm │ │ │ │ ├── F_BerkeleyDB_RecnoDatabaseConfig_Snapshot.htm │ │ │ │ ├── F_BerkeleyDB_RepMgrSite_Address.htm │ │ │ │ ├── F_BerkeleyDB_RepMgrSite_EId.htm │ │ │ │ ├── F_BerkeleyDB_RepMgrSite_isConnected.htm │ │ │ │ ├── F_BerkeleyDB_RepMgrSite_isPeer.htm │ │ │ │ ├── F_BerkeleyDB_RepProcMsgResult_Result.htm │ │ │ │ ├── F_BerkeleyDB_RepProcMsgResult_RetLsn.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_AutoInit.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_BulkTransfer.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_DelayClientSync.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_Elections.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_InMemory.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_NoBlocking.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_RepMgrAckPolicy.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_RepmgrSitesConfig.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_Strict2Site.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_Transport.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationConfig_UseMasterLeases.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationHostAddress_Host.htm │ │ │ │ ├── F_BerkeleyDB_ReplicationHostAddress_Port.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_Compare.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_DuplicateCompare.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_Duplicates.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_NoReverseSplitting.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_PrefixCompare.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryBTreeDatabaseConfig_UseRecordNumbers.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryDatabaseConfig_ImmutableKey.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryDatabaseConfig_Populate.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryHashDatabaseConfig_Compare.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryHashDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryHashDatabaseConfig_DuplicateCompare.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryHashDatabaseConfig_Duplicates.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryHashDatabaseConfig_HashFunction.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryQueueDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryRecnoDatabaseConfig_BackingFile.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryRecnoDatabaseConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryRecnoDatabaseConfig_Renumber.htm │ │ │ │ ├── F_BerkeleyDB_SecondaryRecnoDatabaseConfig_Snapshot.htm │ │ │ │ ├── F_BerkeleyDB_SequenceConfig_BackingDatabase.htm │ │ │ │ ├── F_BerkeleyDB_SequenceConfig_Creation.htm │ │ │ │ ├── F_BerkeleyDB_SequenceConfig_FreeThreaded.htm │ │ │ │ ├── F_BerkeleyDB_SequenceConfig_Wrap.htm │ │ │ │ ├── F_BerkeleyDB_SequenceConfig_key.htm │ │ │ │ ├── F_BerkeleyDB_TransactionConfig_Bulk.htm │ │ │ │ ├── F_BerkeleyDB_TransactionConfig_IsolationDegree.htm │ │ │ │ ├── F_BerkeleyDB_TransactionConfig_NoWait.htm │ │ │ │ ├── F_BerkeleyDB_TransactionConfig_Snapshot.htm │ │ │ │ ├── F_BerkeleyDB_TransactionConfig_SyncAction.htm │ │ │ │ ├── F_BerkeleyDB_Transaction_GlobalIdLength.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_AllFileOps.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_Backup.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_Deadlock.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_FileOps.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_Recovery.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_Register.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_RepMgrConnectionFailure.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_RepMgrMisc.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_Replication.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationElection.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationLease.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationMessages.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationMisc.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationSync.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationSystemInfo.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_ReplicationTest.htm │ │ │ │ ├── F_BerkeleyDB_VerboseMessages_WaitsForTable.htm │ │ │ │ ├── Fields_T_BerkeleyDB_AckPolicy.htm │ │ │ │ ├── Fields_T_BerkeleyDB_BTreeDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_BackupOptions.htm │ │ │ │ ├── Fields_T_BerkeleyDB_BadSecondaryException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_ByteOrder.htm │ │ │ │ ├── Fields_T_BerkeleyDB_CacheInfo.htm │ │ │ │ ├── Fields_T_BerkeleyDB_CachePriority.htm │ │ │ │ ├── Fields_T_BerkeleyDB_CompactConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_CursorConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DatabaseEnvironmentConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DatabaseException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DatabaseType.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DbSiteConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DbThreadID.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DeadlockException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_DeadlockPolicy.htm │ │ │ │ ├── Fields_T_BerkeleyDB_ErrorCodes.htm │ │ │ │ ├── Fields_T_BerkeleyDB_ForeignConflictException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_FullLogBufferException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_HashDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_HeapDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_HeapFullException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_KeyEmptyException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_KeyExistException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_LSN.htm │ │ │ │ ├── Fields_T_BerkeleyDB_LeaseExpiredException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_LockNotGrantedException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_LockingConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_LockingInfo.htm │ │ │ │ ├── Fields_T_BerkeleyDB_LogConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_MPoolConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_NotFoundException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_OldVersionException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_PageNotFoundException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_QueueDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_RecnoDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_RepMgrSite.htm │ │ │ │ ├── Fields_T_BerkeleyDB_RepProcMsgResult.htm │ │ │ │ ├── Fields_T_BerkeleyDB_ReplicationConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_ReplicationHostAddress.htm │ │ │ │ ├── Fields_T_BerkeleyDB_RunRecoveryException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_SecondaryDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_SequenceConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_Transaction.htm │ │ │ │ ├── Fields_T_BerkeleyDB_TransactionConfig.htm │ │ │ │ ├── Fields_T_BerkeleyDB_VerboseMessages.htm │ │ │ │ ├── Fields_T_BerkeleyDB_VerificationException.htm │ │ │ │ ├── Fields_T_BerkeleyDB_VersionMismatchException.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Add.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_AddUnique.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Duplicate.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Insert.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Move.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultiple.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_MoveMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Move_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Recno.htm │ │ │ │ ├── M_BerkeleyDB_BTreeCursor_Recno_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabaseConfig_SetCompression.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabaseConfig_SetCompression_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Compact.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Compact_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Cursor.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Cursor_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Cursor_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Cursor_3.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_FastStats.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_FastStats_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_FastStats_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Get.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_GetMultiple.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_GetMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_GetMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_GetMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Get_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Get_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_KeyRange.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_KeyRange_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_PutNoDuplicate.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_PutNoDuplicate_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Stats.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Stats_1.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_Stats_2.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_TruncateUnusedPages.htm │ │ │ │ ├── M_BerkeleyDB_BTreeDatabase_TruncateUnusedPages_1.htm │ │ │ │ ├── M_BerkeleyDB_BackupOptions__ctor.htm │ │ │ │ ├── M_BerkeleyDB_BadSecondaryException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_BaseCursor_Close.htm │ │ │ │ ├── M_BerkeleyDB_BaseCursor_Compare.htm │ │ │ │ ├── M_BerkeleyDB_BaseCursor_Count.htm │ │ │ │ ├── M_BerkeleyDB_BaseCursor_Delete.htm │ │ │ │ ├── M_BerkeleyDB_BaseCursor_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_BaseCursor_GetEnumerator.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Close.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Close_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Cursor.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Cursor_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Cursor_2.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Cursor_3.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Delete.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Delete_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Exists.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Exists_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Exists_2.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Get.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_GetBoth.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_GetBoth_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_GetBoth_2.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Get_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Get_2.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Get_3.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Get_4.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Get_5.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_PrintFastStats.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_PrintFastStats_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_PrintStats.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_PrintStats_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Remove.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Remove_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Remove_2.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Remove_3.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Rename.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Rename_1.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Rename_2.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Rename_3.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Sync.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Truncate.htm │ │ │ │ ├── M_BerkeleyDB_BaseDatabase_Truncate_1.htm │ │ │ │ ├── M_BerkeleyDB_ByteOrder_FromConst.htm │ │ │ │ ├── M_BerkeleyDB_CacheInfo__ctor.htm │ │ │ │ ├── M_BerkeleyDB_CompactConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_CursorConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Add.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Delete.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Duplicate.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_GetEnumerator.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Move.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirst.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirstMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirst_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirst_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveFirst_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveLast.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveLast_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveLast_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveLast_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_4.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_5.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_6.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultipleKey_7.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_4.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_5.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_6.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveMultiple_7.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNext.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicate.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicate_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicate_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextDuplicate_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUnique.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUniqueMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUnique_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUnique_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNextUnique_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNext_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNext_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MoveNext_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrev.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevDuplicate.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevDuplicate_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevDuplicate_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevDuplicate_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevUnique.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevUnique_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevUnique_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrevUnique_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrev_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrev_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_MovePrev_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Move_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Move_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Move_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Move_4.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Move_5.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Overwrite.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Refresh.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultipleKey.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultipleKey_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultipleKey_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultipleKey_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_RefreshMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Refresh_1.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Refresh_2.htm │ │ │ │ ├── M_BerkeleyDB_Cursor_Refresh_3.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseConfig_SetEncryption.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEntry_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEntry__ctor.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEntry__ctor_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEntry__ctor_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEntry__ctor_3.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironmentConfig_SetEncryption.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironmentConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_ArchivableDatabaseFiles.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_ArchivableLogFiles.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Backup.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_BackupDatabase.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_BeginCDSGroup.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_BeginTransaction.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_BeginTransaction_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_BeginTransaction_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Checkpoint.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Checkpoint_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Close.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_CloseForceSync.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_DetectDeadlocks.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_FailCheck.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_IsTransactionApplied.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LockingSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LockingSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LogFile.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LogFiles.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LogFlush.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LogFlush_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LogVerify.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LogWrite.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LoggingSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_LoggingSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_MPoolSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_MPoolSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_MutexSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_MutexSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Open.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Panic.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintLoggingSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintLoggingSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintMutexSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintMutexSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintRepMgrSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintRepMgrSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintReplicationSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintReplicationSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintSubsystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintSubsystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintTransactionSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_PrintTransactionSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Recover.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RegionSetMemoryLimit.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Remove.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RemoveDB.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RemoveDB_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RemoveDB_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RemoveDB_3.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RemoveUnusedLogFiles.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_Remove_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RenameDB.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RenameDB_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RenameDB_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RenameDB_3.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepHoldElection.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepHoldElection_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepHoldElection_2.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrChannel.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrSite.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrSiteConfig.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrSite_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrStartClient.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrStartClient_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrStartMaster.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepMgrSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepProcessMessage.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepSetClockskew.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepSetRetransmissionRequest.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepSetTransmitLimit.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepSetTransport.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepStartClient.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepStartClient_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepStartMaster.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepStartMaster_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_RepSync.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_ReplicationSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_ReplicationSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_ResetFileID.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_ResetLSN.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_SetMaxSequentialWrites.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_SyncMemPool.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_SyncMemPool_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_TransactionSystemStats.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_TransactionSystemStats_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_TrickleCleanMemPool.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_WriteToLog.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseEnvironment_WriteToLog_1.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseException_ThrowException.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_DatabaseType_ToString.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetBothMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetBothMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetBothMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetBothMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetMultiple.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetMultiple_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetMultiple_2.htm │ │ │ │ ├── M_BerkeleyDB_Database_GetMultiple_3.htm │ │ │ │ ├── M_BerkeleyDB_Database_Join.htm │ │ │ │ ├── M_BerkeleyDB_Database_Open.htm │ │ │ │ ├── M_BerkeleyDB_Database_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_Database_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_Database_Put.htm │ │ │ │ ├── M_BerkeleyDB_Database_PutNoOverwrite.htm │ │ │ │ ├── M_BerkeleyDB_Database_PutNoOverwrite_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_PutNoOverwrite_2.htm │ │ │ │ ├── M_BerkeleyDB_Database_PutNoOverwrite_3.htm │ │ │ │ ├── M_BerkeleyDB_Database_Put_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_Put_2.htm │ │ │ │ ├── M_BerkeleyDB_Database_Put_3.htm │ │ │ │ ├── M_BerkeleyDB_Database_Salvage.htm │ │ │ │ ├── M_BerkeleyDB_Database_Salvage_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_Salvage_2.htm │ │ │ │ ├── M_BerkeleyDB_Database_Salvage_3.htm │ │ │ │ ├── M_BerkeleyDB_Database_Salvage_4.htm │ │ │ │ ├── M_BerkeleyDB_Database_Salvage_5.htm │ │ │ │ ├── M_BerkeleyDB_Database_Upgrade.htm │ │ │ │ ├── M_BerkeleyDB_Database_Upgrade_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_Verify.htm │ │ │ │ ├── M_BerkeleyDB_Database_Verify_1.htm │ │ │ │ ├── M_BerkeleyDB_Database_Verify_2.htm │ │ │ │ ├── M_BerkeleyDB_DbChannel_Close.htm │ │ │ │ ├── M_BerkeleyDB_DbChannel_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_DbChannel_SendMessage.htm │ │ │ │ ├── M_BerkeleyDB_DbChannel_SendRequest.htm │ │ │ │ ├── M_BerkeleyDB_DbChannel_SendRequest_1.htm │ │ │ │ ├── M_BerkeleyDB_DbSiteConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_DbSite_Close.htm │ │ │ │ ├── M_BerkeleyDB_DbSite_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_DbSite_Remove.htm │ │ │ │ ├── M_BerkeleyDB_DbThreadID__ctor.htm │ │ │ │ ├── M_BerkeleyDB_DeadlockException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_ErrorCodes__ctor.htm │ │ │ │ ├── M_BerkeleyDB_ForeignConflictException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_FullLogBufferException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_HashCursor_Add.htm │ │ │ │ ├── M_BerkeleyDB_HashCursor_AddUnique.htm │ │ │ │ ├── M_BerkeleyDB_HashCursor_Duplicate.htm │ │ │ │ ├── M_BerkeleyDB_HashCursor_Insert.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Compact.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Compact_1.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Cursor.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Cursor_1.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Cursor_2.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Cursor_3.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_FastStats.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_FastStats_1.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_FastStats_2.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_PutNoDuplicate.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_PutNoDuplicate_1.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Stats.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Stats_1.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_Stats_2.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_TruncateUnusedPages.htm │ │ │ │ ├── M_BerkeleyDB_HashDatabase_TruncateUnusedPages_1.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabaseConfig_MaxSize.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Append.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Append_1.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_FastStats.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_FastStats_1.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_FastStats_2.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Stats.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Stats_1.htm │ │ │ │ ├── M_BerkeleyDB_HeapDatabase_Stats_2.htm │ │ │ │ ├── M_BerkeleyDB_HeapFullException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_HeapRecordId__ctor.htm │ │ │ │ ├── M_BerkeleyDB_HeapRecordId_fromArray.htm │ │ │ │ ├── M_BerkeleyDB_HeapRecordId_fromArray_1.htm │ │ │ │ ├── M_BerkeleyDB_HeapRecordId_toArray.htm │ │ │ │ ├── M_BerkeleyDB_HeapRecordId_toArray_1.htm │ │ │ │ ├── M_BerkeleyDB_IBackup_Close.htm │ │ │ │ ├── M_BerkeleyDB_IBackup_Open.htm │ │ │ │ ├── M_BerkeleyDB_IBackup_Write.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_Close.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_GetEnumerator.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_MoveNext.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_MoveNextItem.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_MoveNextItem_1.htm │ │ │ │ ├── M_BerkeleyDB_JoinCursor_MoveNext_1.htm │ │ │ │ ├── M_BerkeleyDB_KeyEmptyException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_KeyExistException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LSN_Compare.htm │ │ │ │ ├── M_BerkeleyDB_LSN__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LeaseExpiredException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LockNotGrantedException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LockingConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LockingInfo__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LogConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_LogVerifyConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_MPoolConfig_SetMaxSequentialWrites.htm │ │ │ │ ├── M_BerkeleyDB_MPoolConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_MultipleDatabaseEntry_GetEnumerator.htm │ │ │ │ ├── M_BerkeleyDB_MultipleDatabaseEntry__ctor.htm │ │ │ │ ├── M_BerkeleyDB_MultipleDatabaseEntry__ctor_1.htm │ │ │ │ ├── M_BerkeleyDB_MultipleDatabaseEntry__ctor_2.htm │ │ │ │ ├── M_BerkeleyDB_MultipleKeyDatabaseEntry_GetEnumerator.htm │ │ │ │ ├── M_BerkeleyDB_MultipleKeyDatabaseEntry__ctor.htm │ │ │ │ ├── M_BerkeleyDB_MultipleKeyDatabaseEntry__ctor_1.htm │ │ │ │ ├── M_BerkeleyDB_MutexConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_NotFoundException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_OldVersionException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_PageNotFoundException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Append.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Append_1.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Consume.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Consume_1.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Consume_2.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_FastStats.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_FastStats_1.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_FastStats_2.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Stats.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Stats_1.htm │ │ │ │ ├── M_BerkeleyDB_QueueDatabase_Stats_2.htm │ │ │ │ ├── M_BerkeleyDB_RecnoCursor_Duplicate.htm │ │ │ │ ├── M_BerkeleyDB_RecnoCursor_Insert.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Append.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Append_1.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Compact.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Compact_1.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Cursor.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Cursor_1.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Cursor_2.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Cursor_3.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_FastStats.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_FastStats_1.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_FastStats_2.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Stats.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Stats_1.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_Stats_2.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_TruncateUnusedPages.htm │ │ │ │ ├── M_BerkeleyDB_RecnoDatabase_TruncateUnusedPages_1.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationConfig_Clockskew.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationConfig_RetransmissionRequest.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationConfig_TransmitLimit.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationHostAddress__ctor.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationHostAddress__ctor_1.htm │ │ │ │ ├── M_BerkeleyDB_ReplicationHostAddress__ctor_2.htm │ │ │ │ ├── M_BerkeleyDB_RunRecoveryException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryBTreeDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryBTreeDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryBTreeDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryBTreeDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryBTreeDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Delete.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Duplicate.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_GetEnumerator.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Move.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveFirst.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveFirst_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveFirst_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveFirst_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveLast.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveLast_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveLast_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveLast_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNext.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextUnique.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextUnique_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextUnique_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNextUnique_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNext_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNext_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MoveNext_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrev.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevUnique.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevUnique_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevUnique_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrevUnique_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrev_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrev_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_MovePrev_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Move_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Move_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Move_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Move_4.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Move_5.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Refresh.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Refresh_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Refresh_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryCursor_Refresh_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabaseConfig_SetForeignKeyConstraint.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabaseConfig_SetForeignKeyConstraint_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_SecondaryCursor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_SecondaryCursor_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_SecondaryCursor_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryDatabase_SecondaryCursor_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryHashDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryHashDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryHashDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryHashDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryHashDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryQueueDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryQueueDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryQueueDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryRecnoDatabaseConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryRecnoDatabase_Open.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryRecnoDatabase_Open_1.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryRecnoDatabase_Open_2.htm │ │ │ │ ├── M_BerkeleyDB_SecondaryRecnoDatabase_Open_3.htm │ │ │ │ ├── M_BerkeleyDB_SequenceConfig_SetRange.htm │ │ │ │ ├── M_BerkeleyDB_SequenceConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Close.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Dispose.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Get.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Get_1.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Get_2.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_PrintStats.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_PrintStats_1.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Remove.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Remove_1.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Remove_2.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Stats.htm │ │ │ │ ├── M_BerkeleyDB_Sequence_Stats_1.htm │ │ │ │ ├── M_BerkeleyDB_Sequence__ctor.htm │ │ │ │ ├── M_BerkeleyDB_Sequence__ctor_1.htm │ │ │ │ ├── M_BerkeleyDB_TransactionConfig__ctor.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_Abort.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_Commit.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_Commit_1.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_Discard.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_Prepare.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_SetLockTimeout.htm │ │ │ │ ├── M_BerkeleyDB_Transaction_SetTxnTimeout.htm │ │ │ │ ├── M_BerkeleyDB_VerboseMessages__ctor.htm │ │ │ │ ├── M_BerkeleyDB_VerificationException__ctor.htm │ │ │ │ ├── M_BerkeleyDB_VersionMismatchException__ctor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_AckPolicy.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ActiveTransaction.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BTreeCursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BTreeDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BTreeDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BTreeStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BackupOptions.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BadSecondaryException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BaseCursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_BaseDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ByteOrder.htm │ │ │ │ ├── Methods_T_BerkeleyDB_CacheInfo.htm │ │ │ │ ├── Methods_T_BerkeleyDB_CachePriority.htm │ │ │ │ ├── Methods_T_BerkeleyDB_CompactConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_CompactData.htm │ │ │ │ ├── Methods_T_BerkeleyDB_Cursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_CursorConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_Database.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DatabaseEntry.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DatabaseEnvironment.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DatabaseEnvironmentConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DatabaseException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DatabaseType.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DbChannel.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DbSite.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DbSiteConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DbThreadID.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DeadlockException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_DeadlockPolicy.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ErrorCodes.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ForeignConflictException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_FullLogBufferException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HashCursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HashDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HashDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HashStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HeapDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HeapDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HeapFullException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HeapRecordId.htm │ │ │ │ ├── Methods_T_BerkeleyDB_HeapStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_IBackup.htm │ │ │ │ ├── Methods_T_BerkeleyDB_JoinCursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_KeyEmptyException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_KeyExistException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_KeyRange.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LSN.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LeaseExpiredException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LockNotGrantedException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LockStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LockingConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LockingInfo.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LogConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LogStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_LogVerifyConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MPoolConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MPoolFileStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MPoolStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MultipleDatabaseEntry.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MultipleKeyDatabaseEntry.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MutexConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_MutexStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_NotFoundException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_OldVersionException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_PageNotFoundException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_PreparedTransaction.htm │ │ │ │ ├── Methods_T_BerkeleyDB_QueueDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_QueueDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_QueueStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RecnoCursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RecnoDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RecnoDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RecnoStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RepMgrSite.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RepMgrStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RepProcMsgResult.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ReplicationConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ReplicationHostAddress.htm │ │ │ │ ├── Methods_T_BerkeleyDB_ReplicationStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_RunRecoveryException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryBTreeDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryCursor.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryHashDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryQueueDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryRecnoDatabase.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_Sequence.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SequenceConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_SequenceStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_Transaction.htm │ │ │ │ ├── Methods_T_BerkeleyDB_TransactionConfig.htm │ │ │ │ ├── Methods_T_BerkeleyDB_TransactionStats.htm │ │ │ │ ├── Methods_T_BerkeleyDB_VerboseMessages.htm │ │ │ │ ├── Methods_T_BerkeleyDB_VerificationException.htm │ │ │ │ ├── Methods_T_BerkeleyDB_VersionMismatchException.htm │ │ │ │ ├── N_BerkeleyDB.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_Add.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_Move.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveFirst.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveFirstMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveFirstMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveLast.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNext.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextDuplicateMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextDuplicateMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextUniqueMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MoveNextUniqueMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MovePrev.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MovePrevDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_MovePrevUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_Recno.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_Refresh.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_RefreshMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeCursor_RefreshMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabaseConfig_SetCompression.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Compact.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_FastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_GetBothMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_GetMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_KeyRange.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Put.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_PutNoDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_PutNoOverwrite.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Stats.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_BTreeDatabase_TruncateUnusedPages.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Remove.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Rename.htm │ │ │ │ ├── Overload_BerkeleyDB_BaseDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_Move.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveFirst.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveFirstMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveFirstMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveLast.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNext.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextDuplicateMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextUniqueMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MovePrev.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MovePrevDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_MovePrevUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_Refresh.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_RefreshMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Cursor_RefreshMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEntry__ctor.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_BeginTransaction.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_Checkpoint.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_LockingSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_LogFlush.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_LoggingSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_MPoolSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_MutexSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintLoggingSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintMutexSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintRepMgrSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintReplicationSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintSubsystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_PrintTransactionSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_Remove.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RemoveDB.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RenameDB.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RepHoldElection.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RepMgrSite.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RepMgrStartClient.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RepMgrSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RepStartClient.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_RepStartMaster.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_ReplicationSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_SyncMemPool.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_TransactionSystemStats.htm │ │ │ │ ├── Overload_BerkeleyDB_DatabaseEnvironment_WriteToLog.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_GetBothMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_GetMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Put.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_PutNoOverwrite.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Salvage.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Upgrade.htm │ │ │ │ ├── Overload_BerkeleyDB_Database_Verify.htm │ │ │ │ ├── Overload_BerkeleyDB_DbChannel_SendRequest.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_Add.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_Move.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveFirst.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveFirstMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveFirstMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveLast.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNext.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextDuplicateMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextDuplicateMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextUniqueMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MoveNextUniqueMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MovePrev.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MovePrevDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_MovePrevUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_Refresh.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_RefreshMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashCursor_RefreshMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Compact.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_FastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_GetBothMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_GetMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Put.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_PutNoDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_PutNoOverwrite.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Stats.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_HashDatabase_TruncateUnusedPages.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Append.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_FastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_GetBothMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_GetMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Put.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_PutNoOverwrite.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Stats.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapRecordId_fromArray.htm │ │ │ │ ├── Overload_BerkeleyDB_HeapRecordId_toArray.htm │ │ │ │ ├── Overload_BerkeleyDB_JoinCursor_MoveNext.htm │ │ │ │ ├── Overload_BerkeleyDB_JoinCursor_MoveNextItem.htm │ │ │ │ ├── Overload_BerkeleyDB_MultipleDatabaseEntry__ctor.htm │ │ │ │ ├── Overload_BerkeleyDB_MultipleKeyDatabaseEntry__ctor.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Append.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Consume.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_FastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_GetBothMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_GetMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Put.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_PutNoOverwrite.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Stats.htm │ │ │ │ ├── Overload_BerkeleyDB_QueueDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_Move.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveFirst.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveFirstMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveFirstMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveLast.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNext.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextDuplicateMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextDuplicateMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextUniqueMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MoveNextUniqueMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MovePrev.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MovePrevDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_MovePrevUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_Refresh.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_RefreshMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoCursor_RefreshMultipleKey.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Append.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Compact.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_FastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_GetBothMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_GetMultiple.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Put.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_PutNoOverwrite.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Stats.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_RecnoDatabase_TruncateUnusedPages.htm │ │ │ │ ├── Overload_BerkeleyDB_ReplicationHostAddress__ctor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabaseConfig_SetForeignKeyConstraint.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_SecondaryCursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryBTreeDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_Move.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MoveFirst.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MoveLast.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MoveNext.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MoveNextDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MoveNextUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MovePrev.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MovePrevDuplicate.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_MovePrevUnique.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryCursor_Refresh.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabaseConfig_SetForeignKeyConstraint.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_SecondaryCursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabaseConfig_SetForeignKeyConstraint.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_SecondaryCursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryHashDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabaseConfig_SetForeignKeyConstraint.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_SecondaryCursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryQueueDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabaseConfig_SetForeignKeyConstraint.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Close.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Cursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Delete.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Exists.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_GetBoth.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Open.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_PrintFastStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_SecondaryCursor.htm │ │ │ │ ├── Overload_BerkeleyDB_SecondaryRecnoDatabase_Truncate.htm │ │ │ │ ├── Overload_BerkeleyDB_Sequence_Get.htm │ │ │ │ ├── Overload_BerkeleyDB_Sequence_PrintStats.htm │ │ │ │ ├── Overload_BerkeleyDB_Sequence_Remove.htm │ │ │ │ ├── Overload_BerkeleyDB_Sequence_Stats.htm │ │ │ │ ├── Overload_BerkeleyDB_Sequence__ctor.htm │ │ │ │ ├── Overload_BerkeleyDB_Transaction_Commit.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_Begun.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_BufferCopiesInCache.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_GlobalID.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_ID.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_Name.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_ParentID.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_Priority.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_ProcessID.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_SnapshotReads.htm │ │ │ │ ├── P_BerkeleyDB_ActiveTransaction_ThreadID.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabaseConfig_Compress.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabaseConfig_Decompress.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabaseConfig_MinKeysPerPage.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_Compare.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_Compress.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_Decompress.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_DupCompare.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_Duplicates.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_MinKeysPerPage.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_PrefixCompare.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_RecordNumbers.htm │ │ │ │ ├── P_BerkeleyDB_BTreeDatabase_ReverseSplit.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_DuplicatePages.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_DuplicatePagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_EmptyPages.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_FreePages.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_InternalPages.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_InternalPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_LeafPages.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_LeafPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_Levels.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_MagicNumber.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_MetadataFlags.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_MinKey.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_OverflowPages.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_OverflowPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_Version.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_nData.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_nKeys.htm │ │ │ │ ├── P_BerkeleyDB_BTreeStats_nPages.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_AutoCommit.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_CacheSize.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Creation.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_DatabaseName.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_DoChecksum.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_EncryptAlgorithm.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Encrypted.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Endianness.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_ErrorFeedback.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_ErrorPrefix.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Feedback.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_FileName.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_FreeThreaded.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_HasMultiple.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_InHostOrder.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_NoMMap.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_NoWaitDbExclusiveLock.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_NonDurableTxns.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Pagesize.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Priority.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_ReadOnly.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_ReadUncommitted.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Transactional.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Truncated.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_Type.htm │ │ │ │ ├── P_BerkeleyDB_BaseDatabase_UseMVCC.htm │ │ │ │ ├── P_BerkeleyDB_CompactConfig_FillPercentage.htm │ │ │ │ ├── P_BerkeleyDB_CompactConfig_Pages.htm │ │ │ │ ├── P_BerkeleyDB_CompactConfig_Timeout.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_Deadlocks.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_EmptyBuckets.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_End.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_Levels.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_PagesExamined.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_PagesFreed.htm │ │ │ │ ├── P_BerkeleyDB_CompactData_PagesTruncated.htm │ │ │ │ ├── P_BerkeleyDB_Cursor_Current.htm │ │ │ │ ├── P_BerkeleyDB_Cursor_CurrentMultiple.htm │ │ │ │ ├── P_BerkeleyDB_Cursor_CurrentMultipleKey.htm │ │ │ │ ├── P_BerkeleyDB_Cursor_Priority.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseConfig_EncryptAlgorithm.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseConfig_Encrypted.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseConfig_EncryptionPassword.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseConfig_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEntry_Data.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEntry_Partial.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEntry_PartialLen.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEntry_PartialOffset.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEntry_ReadOnly.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_EncryptAlgorithm.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_EncryptionPassword.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_InitThreadCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_InitTxnCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_LockTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_MaxTransactions.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_ThreadCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_TxnTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironmentConfig_TxnTimestamp.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_AutoCommit.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_BackupBufferSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_BackupHandler.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_BackupReadCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_BackupReadSleepDuration.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_BackupWriteDirect.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_CDB_ALLDB.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_CacheSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Create.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_DataDirs.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_DeadlockResolution.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_EncryptAlgorithm.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_ErrorFeedback.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_ErrorPrefix.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_EventNotify.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Feedback.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_ForceFlush.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_FreeThreaded.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Home.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_HotbackupInProgress.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitLockCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitLockObjectCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitLockerCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitLogIdCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitMutexes.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitRegions.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitThreadCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_InitTxnCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_IntermediateDirMode.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LockConflictMatrix.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LockPartitions.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LockTableSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LockTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Lockdown.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogAutoRemove.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogBufferSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogDir.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogFileMode.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogForceSync.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogInMemory.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogNoBuffer.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogRegionSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_LogZeroOnCreate.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MMapSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxCacheSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxLockers.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxLocks.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxLogFileSize.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxMutexes.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxObjects.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxOpenFiles.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxSequentialWrites.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MaxTransactions.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MetadataDir.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MutexAlignment.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_MutexIncrement.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_NoBuffer.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_NoLocking.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_NoMMap.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_NoPanic.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_NumTestAndSetSpins.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Overwrite.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Private.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RegionMemoryLimitBytes.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RegionMemoryLimitGBytes.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Register.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepAckTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepAutoInit.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepBulkTransfer.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepCheckpointDelay.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepClockskewFast.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepClockskewSlow.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepConnectionRetry.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepDelayClientSync.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepElectionRetry.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepElectionTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepFullElectionTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepHeartbeatMonitor.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepHeartbeatSend.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepInMemory.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepLeaseTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepMessageDispatch.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepMgrAckPolicy.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepMgrLocalSite.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepMgrRemoteSites.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepMgrRunElections.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepNSites.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepNoBlocking.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepPriority.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepRetransmissionRequestMax.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepRetransmissionRequestMin.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepStrict2Site.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepTransmitLimitBytes.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepTransmitLimitGBytes.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepTransport.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RepUseMasterLeases.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RunFatalRecovery.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_RunRecovery.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_SequentialWritePause.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_SetThreadID.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_SetThreadName.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_SystemMemory.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TempDir.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_ThreadCount.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_ThreadIsAlive.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TimeNotGranted.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TxnNoSync.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TxnNoWait.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TxnSnapshot.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TxnTimeout.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TxnTimestamp.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_TxnWriteNoSync.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UseEnvironmentVars.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UseMVCC.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UsingCDB.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UsingLocking.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UsingLogging.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UsingMPool.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UsingReplication.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_UsingTxns.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_Verbosity.htm │ │ │ │ ├── P_BerkeleyDB_DatabaseEnvironment_YieldCPU.htm │ │ │ │ ├── P_BerkeleyDB_DbChannel_Timeout.htm │ │ │ │ ├── P_BerkeleyDB_DbSiteConfig_GroupCreator.htm │ │ │ │ ├── P_BerkeleyDB_DbSiteConfig_Helper.htm │ │ │ │ ├── P_BerkeleyDB_DbSiteConfig_Legacy.htm │ │ │ │ ├── P_BerkeleyDB_DbSiteConfig_LocalSite.htm │ │ │ │ ├── P_BerkeleyDB_DbSiteConfig_Peer.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_Address.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_EId.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_GroupCreator.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_Helper.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_Legacy.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_LocalSite.htm │ │ │ │ ├── P_BerkeleyDB_DbSite_Peer.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabaseConfig_FillFactor.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabaseConfig_TableSize.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabase_Compare.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabase_DupCompare.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabase_Duplicates.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabase_FillFactor.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabase_HashFunction.htm │ │ │ │ ├── P_BerkeleyDB_HashDatabase_TableSize.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_BigPages.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_BigPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_BucketPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_DuplicatePages.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_DuplicatePagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_FillFactor.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_FreePages.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_MagicNumber.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_MetadataFlags.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_OverflowPages.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_OverflowPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_Version.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_nData.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_nHashBuckets.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_nKeys.htm │ │ │ │ ├── P_BerkeleyDB_HashStats_nPages.htm │ │ │ │ ├── P_BerkeleyDB_HeapDatabaseConfig_MaxSizeBytes.htm │ │ │ │ ├── P_BerkeleyDB_HeapDatabaseConfig_MaxSizeGBytes.htm │ │ │ │ ├── P_BerkeleyDB_HeapDatabaseConfig_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_HeapDatabase_MaxSizeBytes.htm │ │ │ │ ├── P_BerkeleyDB_HeapDatabase_MaxSizeGBytes.htm │ │ │ │ ├── P_BerkeleyDB_HeapDatabase_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_HeapRecordId_Index.htm │ │ │ │ ├── P_BerkeleyDB_HeapRecordId_PageNumber.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_MagicNumber.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_MetadataFlags.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_Version.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_nPages.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_nRecords.htm │ │ │ │ ├── P_BerkeleyDB_HeapStats_nRegions.htm │ │ │ │ ├── P_BerkeleyDB_JoinCursor_Current.htm │ │ │ │ ├── P_BerkeleyDB_KeyRange_Equal.htm │ │ │ │ ├── P_BerkeleyDB_KeyRange_Greater.htm │ │ │ │ ├── P_BerkeleyDB_KeyRange_Less.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_AllocatedLockers.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_AllocatedLocks.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_AllocatedObjects.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_InitLockers.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_InitLocks.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_InitObjects.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LastAllocatedLockerID.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockConflictsNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockConflictsWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockDeadlocks.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockDowngrades.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockModes.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockPuts.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockRequests.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockSteals.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockTimeoutLength.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockTimeouts.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockUpgrades.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockerNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_LockerWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_Lockers.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_Locks.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxBucketLength.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxLockSteals.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxLockers.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxLockersInTable.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxLocks.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxLocksInBucket.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxLocksInTable.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxObjectSteals.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxObjects.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxObjectsInBucket.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxObjectsInTable.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxPartitionLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxPartitionLockWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_MaxUnusedID.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_ObjectNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_ObjectSteals.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_ObjectWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_Objects.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_PartitionLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_PartitionLockWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_RegionNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_RegionWait.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_TableSize.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_TxnTimeoutLength.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_TxnTimeouts.htm │ │ │ │ ├── P_BerkeleyDB_LockStats_nPartitions.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_Conflicts.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_InitLockCount.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_InitLockObjectCount.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_InitLockerCount.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_MaxLockers.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_MaxLocks.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_MaxObjects.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_Partitions.htm │ │ │ │ ├── P_BerkeleyDB_LockingConfig_TableSize.htm │ │ │ │ ├── P_BerkeleyDB_LogConfig_BufferSize.htm │ │ │ │ ├── P_BerkeleyDB_LogConfig_FileMode.htm │ │ │ │ ├── P_BerkeleyDB_LogConfig_InitLogIdCount.htm │ │ │ │ ├── P_BerkeleyDB_LogConfig_MaxFileSize.htm │ │ │ │ ├── P_BerkeleyDB_LogConfig_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_BufferSize.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_Bytes.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_BytesSinceCheckpoint.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_CurrentFile.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_CurrentOffset.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_DiskFileNumber.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_DiskOffset.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_FileId.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_FileSize.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_InitFileId.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_MBytes.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_MBytesSinceCheckpoint.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_MagicNumber.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_MaxCommitsPerFlush.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_MaxFileId.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_MinCommitsPerFlush.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_OverflowWrites.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_PermissionsMode.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_Reads.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_Records.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_RegionLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_RegionLockWait.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_Syncs.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_Version.htm │ │ │ │ ├── P_BerkeleyDB_LogStats_Writes.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_CacheSize.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_ContinueAfterFail.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_DbFile.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_DbName.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_EndLsn.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_EndTime.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_EnvHome.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_StartLsn.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_StartTime.htm │ │ │ │ ├── P_BerkeleyDB_LogVerifyConfig_Verbose.htm │ │ │ │ ├── P_BerkeleyDB_MPoolConfig_MMapSize.htm │ │ │ │ ├── P_BerkeleyDB_MPoolConfig_MaxOpenFiles.htm │ │ │ │ ├── P_BerkeleyDB_MPoolConfig_MaxSequentialWrites.htm │ │ │ │ ├── P_BerkeleyDB_MPoolConfig_SequentialWritePause.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_BackupSpins.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_FileName.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_MappedPages.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_PagesCreatedInCache.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_PagesInCache.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_PagesNotInCache.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_PagesRead.htm │ │ │ │ ├── P_BerkeleyDB_MPoolFileStats_PagesWritten.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_BlockedOperations.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_BucketsCheckedDuringAlloc.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_CacheRegions.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_CacheSettings.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_CleanPages.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_CleanPagesEvicted.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_DirtyPages.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_DirtyPagesEvicted.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_Files.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_FrozenBuffers.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_FrozenBuffersFreed.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_HashBucketMutexes.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_HashBuckets.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_HashChainSearches.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_HashEntriesSearched.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_HashLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_HashLockWait.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_LongestHashChainSearch.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MappedPages.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxBucketsCheckedDuringAlloc.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxBufferWrites.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxBufferWritesSleep.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxHashLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxHashLockWait.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxMMapSize.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxOpenFileDescriptors.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_MaxPagesCheckedDuringAlloc.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PageAllocations.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_Pages.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesCheckedDuringAlloc.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesCreatedInCache.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesInCache.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesNotInCache.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesRead.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesTrickled.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_PagesWritten.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_RegionLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_RegionLockWait.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_RegionMax.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_SyncInterrupted.htm │ │ │ │ ├── P_BerkeleyDB_MPoolStats_ThawedBuffers.htm │ │ │ │ ├── P_BerkeleyDB_MultipleDatabaseEntry_Recno.htm │ │ │ │ ├── P_BerkeleyDB_MultipleKeyDatabaseEntry_Recno.htm │ │ │ │ ├── P_BerkeleyDB_MutexConfig_Alignment.htm │ │ │ │ ├── P_BerkeleyDB_MutexConfig_Increment.htm │ │ │ │ ├── P_BerkeleyDB_MutexConfig_InitMutexes.htm │ │ │ │ ├── P_BerkeleyDB_MutexConfig_MaxMutexes.htm │ │ │ │ ├── P_BerkeleyDB_MutexConfig_NumTestAndSetSpins.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_Alignment.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_Available.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_Count.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_InUse.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_InitCount.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_Max.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_MaxInUse.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_RegionMax.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_RegionNoWait.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_RegionWait.htm │ │ │ │ ├── P_BerkeleyDB_MutexStats_TASSpins.htm │ │ │ │ ├── P_BerkeleyDB_PreparedTransaction_GlobalID.htm │ │ │ │ ├── P_BerkeleyDB_PreparedTransaction_Txn.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabaseConfig_ExtentSize.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabaseConfig_Length.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabaseConfig_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabase_ExtentSize.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabase_InOrder.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabase_Length.htm │ │ │ │ ├── P_BerkeleyDB_QueueDatabase_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_DataPages.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_DataPagesBytesFree.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_FirstRecordNumber.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_MagicNumber.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_MetadataFlags.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_NextRecordNumber.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_PagesPerExtent.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_RecordLength.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_RecordPadByte.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_Version.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_nData.htm │ │ │ │ ├── P_BerkeleyDB_QueueStats_nKeys.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabaseConfig_Delimiter.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabaseConfig_Length.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabaseConfig_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_AppendCallback.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_RecordDelimiter.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_RecordLength.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_RecordPad.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_Renumber.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_Snapshot.htm │ │ │ │ ├── P_BerkeleyDB_RecnoDatabase_SourceFile.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_DuplicatePages.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_DuplicatePagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_EmptyPages.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_FreePages.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_InternalPages.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_InternalPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_LeafPages.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_LeafPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_Levels.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_MagicNumber.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_MetadataFlags.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_MinKey.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_OverflowPages.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_OverflowPagesFreeBytes.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_PageSize.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_RecordLength.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_RecordPadByte.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_Version.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_nData.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_nKeys.htm │ │ │ │ ├── P_BerkeleyDB_RecnoStats_nPages.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_DroppedConnections.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_DroppedMessages.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_ElectionThreads.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_FailedConnections.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_FailedMessages.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_MaxElectionThreads.htm │ │ │ │ ├── P_BerkeleyDB_RepMgrStats_QueuedMessages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_AckTimeout.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_CheckpointDelay.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_ClockskewFast.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_ClockskewSlow.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_ConnectionRetry.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_ElectionRetry.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_ElectionTimeout.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_FullElectionTimeout.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_HeartbeatMonitor.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_HeartbeatSend.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_LeaseTimeout.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_NSites.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_Priority.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_RetransmissionRequestMax.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_RetransmissionRequestMin.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_TransmitLimitBytes.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationConfig_TransmitLimitGBytes.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_AppliedTransactions.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_AwaitedLSN.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_AwaitedPage.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_BadGenerationMessages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_BulkBufferFills.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_BulkBufferOverflows.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_BulkBufferTransfers.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_BulkRecordsStored.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ClientServiceRequests.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ClientServiceRequestsMissing.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ClientStartupComplete.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_CurrentElectionGenerationNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_CurrentGenerationNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_CurrentQueuedLogRecords.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_CurrentWinner.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_CurrentWinnerMaxLSN.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_DupMasters.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_DuplicateLogRecords.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_DuplicatePages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionDataGeneration.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionGenerationNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionPriority.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionStatus.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionTiebreaker.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionTimeSec.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionTimeUSec.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_Elections.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ElectionsWon.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_EnvID.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_EnvPriority.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_FailedMessageSends.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ForcedRerequests.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_IgnoredMessages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_LeaseCheckedMissesNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_LeaseCheckedNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_LeaseCheckedRefreshNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_LeaseSentNumber.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MasterChanges.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MasterEnvID.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MaxLeaseSec.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MaxLeaseUSec.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MaxPermanentLSN.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MaxQueuedLogRecords.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MessagesSent.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MissedLogRecords.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_MissedPages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_NewSiteMessages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_NextLSN.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_NextPage.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_Outdated.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_QueuedLogRecords.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ReceivedLogRecords.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ReceivedMessages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_ReceivedPages.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_RegisteredSites.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_RegisteredSitesNeeded.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_Sites.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_StartSyncMessagesDelayed.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_Status.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_Throttled.htm │ │ │ │ ├── P_BerkeleyDB_ReplicationStats_Votes.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabaseConfig_MinKeysPerPage.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_Compare.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_DupCompare.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_Duplicates.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_MinKeysPerPage.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_PrefixCompare.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_RecordNumbers.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryBTreeDatabase_ReverseSplit.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryCursor_Current.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabaseConfig_ForeignKeyDatabase.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabaseConfig_ForeignKeyNullfier.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabaseConfig_KeyGen.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabaseConfig_OnForeignKeyDelete.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabaseConfig_Primary.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabase_KeyGen.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryDatabase_Nullifier.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabaseConfig_FillFactor.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabaseConfig_TableSize.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabase_Compare.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabase_DupCompare.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabase_Duplicates.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabase_FillFactor.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabase_HashFunction.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryHashDatabase_TableSize.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryQueueDatabaseConfig_ExtentSize.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryQueueDatabaseConfig_Length.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryQueueDatabaseConfig_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryQueueDatabase_ExtentSize.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryQueueDatabase_Length.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryQueueDatabase_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabaseConfig_Delimiter.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabaseConfig_Length.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabaseConfig_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabase_BackingFile.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabase_Delimiter.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabase_Length.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabase_PadByte.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabase_Renumber.htm │ │ │ │ ├── P_BerkeleyDB_SecondaryRecnoDatabase_Snapshot.htm │ │ │ │ ├── P_BerkeleyDB_SequenceConfig_CacheSize.htm │ │ │ │ ├── P_BerkeleyDB_SequenceConfig_Decrement.htm │ │ │ │ ├── P_BerkeleyDB_SequenceConfig_Increment.htm │ │ │ │ ├── P_BerkeleyDB_SequenceConfig_InitialValue.htm │ │ │ │ ├── P_BerkeleyDB_SequenceConfig_Max.htm │ │ │ │ ├── P_BerkeleyDB_SequenceConfig_Min.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_CacheSize.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_CachedValue.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_Flags.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_LastCachedValue.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_LockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_LockWait.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_Max.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_Min.htm │ │ │ │ ├── P_BerkeleyDB_SequenceStats_StoredValue.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_BackingDatabase.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Cachesize.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Decrement.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Increment.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Key.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Max.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Min.htm │ │ │ │ ├── P_BerkeleyDB_Sequence_Wrap.htm │ │ │ │ ├── P_BerkeleyDB_TransactionConfig_InitTransactionCount.htm │ │ │ │ ├── P_BerkeleyDB_TransactionConfig_LockTimeout.htm │ │ │ │ ├── P_BerkeleyDB_TransactionConfig_Name.htm │ │ │ │ ├── P_BerkeleyDB_TransactionConfig_TxnTimeout.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Aborted.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Active.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Begun.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Committed.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_InitTxns.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_LastCheckpoint.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_LastCheckpointTime.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_LastID.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_MaxActive.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_MaxSnapshot.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_MaxTransactions.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_RegionLockNoWait.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_RegionLockWait.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_RegionSize.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Restored.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Snapshot.htm │ │ │ │ ├── P_BerkeleyDB_TransactionStats_Transactions.htm │ │ │ │ ├── P_BerkeleyDB_Transaction_CommitToken.htm │ │ │ │ ├── P_BerkeleyDB_Transaction_Id.htm │ │ │ │ ├── P_BerkeleyDB_Transaction_Name.htm │ │ │ │ ├── P_BerkeleyDB_Transaction_Priority.htm │ │ │ │ ├── Properties_T_BerkeleyDB_ActiveTransaction.htm │ │ │ │ ├── Properties_T_BerkeleyDB_BTreeCursor.htm │ │ │ │ ├── Properties_T_BerkeleyDB_BTreeDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_BTreeDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_BTreeStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_BadSecondaryException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_BaseDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_CompactConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_CompactData.htm │ │ │ │ ├── Properties_T_BerkeleyDB_Cursor.htm │ │ │ │ ├── Properties_T_BerkeleyDB_Database.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DatabaseEntry.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DatabaseEnvironment.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DatabaseEnvironmentConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DatabaseException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DbChannel.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DbSite.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DbSiteConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_DeadlockException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_ForeignConflictException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_FullLogBufferException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HashCursor.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HashDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HashDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HashStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HeapDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HeapDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HeapFullException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HeapRecordId.htm │ │ │ │ ├── Properties_T_BerkeleyDB_HeapStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_JoinCursor.htm │ │ │ │ ├── Properties_T_BerkeleyDB_KeyEmptyException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_KeyExistException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_KeyRange.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LeaseExpiredException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LockNotGrantedException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LockStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LockingConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LogConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LogStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_LogVerifyConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MPoolConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MPoolFileStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MPoolStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MultipleDatabaseEntry.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MultipleKeyDatabaseEntry.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MutexConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_MutexStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_NotFoundException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_OldVersionException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_PageNotFoundException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_PreparedTransaction.htm │ │ │ │ ├── Properties_T_BerkeleyDB_QueueDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_QueueDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_QueueStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_RecnoCursor.htm │ │ │ │ ├── Properties_T_BerkeleyDB_RecnoDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_RecnoDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_RecnoStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_RepMgrStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_ReplicationConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_ReplicationStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_RunRecoveryException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryBTreeDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryCursor.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryHashDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryQueueDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryRecnoDatabase.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_Sequence.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SequenceConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_SequenceStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_Transaction.htm │ │ │ │ ├── Properties_T_BerkeleyDB_TransactionConfig.htm │ │ │ │ ├── Properties_T_BerkeleyDB_TransactionStats.htm │ │ │ │ ├── Properties_T_BerkeleyDB_VerificationException.htm │ │ │ │ ├── Properties_T_BerkeleyDB_VersionMismatchException.htm │ │ │ │ ├── T_BerkeleyDB_AckPolicy.htm │ │ │ │ ├── T_BerkeleyDB_ActiveTransaction.htm │ │ │ │ ├── T_BerkeleyDB_AppendRecordDelegate.htm │ │ │ │ ├── T_BerkeleyDB_BTreeCompressDelegate.htm │ │ │ │ ├── T_BerkeleyDB_BTreeCursor.htm │ │ │ │ ├── T_BerkeleyDB_BTreeDatabase.htm │ │ │ │ ├── T_BerkeleyDB_BTreeDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_BTreeDecompressDelegate.htm │ │ │ │ ├── T_BerkeleyDB_BTreeStats.htm │ │ │ │ ├── T_BerkeleyDB_BackupOptions.htm │ │ │ │ ├── T_BerkeleyDB_BadSecondaryException.htm │ │ │ │ ├── T_BerkeleyDB_BaseCursor.htm │ │ │ │ ├── T_BerkeleyDB_BaseDatabase.htm │ │ │ │ ├── T_BerkeleyDB_ByteOrder.htm │ │ │ │ ├── T_BerkeleyDB_CacheInfo.htm │ │ │ │ ├── T_BerkeleyDB_CachePriority.htm │ │ │ │ ├── T_BerkeleyDB_CompactConfig.htm │ │ │ │ ├── T_BerkeleyDB_CompactData.htm │ │ │ │ ├── T_BerkeleyDB_CreatePolicy.htm │ │ │ │ ├── T_BerkeleyDB_Cursor.htm │ │ │ │ ├── T_BerkeleyDB_CursorConfig.htm │ │ │ │ ├── T_BerkeleyDB_Cursor_InsertLocation.htm │ │ │ │ ├── T_BerkeleyDB_Database.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseEntry.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseEnvironment.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseEnvironmentConfig.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseException.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseFeedbackDelegate.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseFeedbackEvent.htm │ │ │ │ ├── T_BerkeleyDB_DatabaseType.htm │ │ │ │ ├── T_BerkeleyDB_Database_VerifyOperation.htm │ │ │ │ ├── T_BerkeleyDB_DbChannel.htm │ │ │ │ ├── T_BerkeleyDB_DbSite.htm │ │ │ │ ├── T_BerkeleyDB_DbSiteConfig.htm │ │ │ │ ├── T_BerkeleyDB_DbThreadID.htm │ │ │ │ ├── T_BerkeleyDB_DeadlockException.htm │ │ │ │ ├── T_BerkeleyDB_DeadlockPolicy.htm │ │ │ │ ├── T_BerkeleyDB_DuplicatesPolicy.htm │ │ │ │ ├── T_BerkeleyDB_EncryptionAlgorithm.htm │ │ │ │ ├── T_BerkeleyDB_EntryComparisonDelegate.htm │ │ │ │ ├── T_BerkeleyDB_EntryPrefixComparisonDelegate.htm │ │ │ │ ├── T_BerkeleyDB_EnvironmentFeedbackDelegate.htm │ │ │ │ ├── T_BerkeleyDB_EnvironmentFeedbackEvent.htm │ │ │ │ ├── T_BerkeleyDB_EnvironmentID.htm │ │ │ │ ├── T_BerkeleyDB_ErrorCodes.htm │ │ │ │ ├── T_BerkeleyDB_ErrorFeedbackDelegate.htm │ │ │ │ ├── T_BerkeleyDB_EventNotifyDelegate.htm │ │ │ │ ├── T_BerkeleyDB_ForeignConflictException.htm │ │ │ │ ├── T_BerkeleyDB_ForeignKeyDeleteAction.htm │ │ │ │ ├── T_BerkeleyDB_ForeignKeyNullifyDelegate.htm │ │ │ │ ├── T_BerkeleyDB_FullLogBufferException.htm │ │ │ │ ├── T_BerkeleyDB_HashCursor.htm │ │ │ │ ├── T_BerkeleyDB_HashDatabase.htm │ │ │ │ ├── T_BerkeleyDB_HashDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_HashFunctionDelegate.htm │ │ │ │ ├── T_BerkeleyDB_HashStats.htm │ │ │ │ ├── T_BerkeleyDB_HeapDatabase.htm │ │ │ │ ├── T_BerkeleyDB_HeapDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_HeapFullException.htm │ │ │ │ ├── T_BerkeleyDB_HeapRecordId.htm │ │ │ │ ├── T_BerkeleyDB_HeapStats.htm │ │ │ │ ├── T_BerkeleyDB_IBackup.htm │ │ │ │ ├── T_BerkeleyDB_Isolation.htm │ │ │ │ ├── T_BerkeleyDB_JoinCursor.htm │ │ │ │ ├── T_BerkeleyDB_KeyEmptyException.htm │ │ │ │ ├── T_BerkeleyDB_KeyExistException.htm │ │ │ │ ├── T_BerkeleyDB_KeyRange.htm │ │ │ │ ├── T_BerkeleyDB_LSN.htm │ │ │ │ ├── T_BerkeleyDB_LeaseExpiredException.htm │ │ │ │ ├── T_BerkeleyDB_LockNotGrantedException.htm │ │ │ │ ├── T_BerkeleyDB_LockStats.htm │ │ │ │ ├── T_BerkeleyDB_LockingConfig.htm │ │ │ │ ├── T_BerkeleyDB_LockingInfo.htm │ │ │ │ ├── T_BerkeleyDB_LogConfig.htm │ │ │ │ ├── T_BerkeleyDB_LogStats.htm │ │ │ │ ├── T_BerkeleyDB_LogVerifyConfig.htm │ │ │ │ ├── T_BerkeleyDB_MPoolConfig.htm │ │ │ │ ├── T_BerkeleyDB_MPoolFileStats.htm │ │ │ │ ├── T_BerkeleyDB_MPoolStats.htm │ │ │ │ ├── T_BerkeleyDB_MessageDispatchDelegate.htm │ │ │ │ ├── T_BerkeleyDB_MultipleDatabaseEntry.htm │ │ │ │ ├── T_BerkeleyDB_MultipleKeyDatabaseEntry.htm │ │ │ │ ├── T_BerkeleyDB_MutexConfig.htm │ │ │ │ ├── T_BerkeleyDB_MutexStats.htm │ │ │ │ ├── T_BerkeleyDB_NotFoundException.htm │ │ │ │ ├── T_BerkeleyDB_NotificationEvent.htm │ │ │ │ ├── T_BerkeleyDB_OldVersionException.htm │ │ │ │ ├── T_BerkeleyDB_PageNotFoundException.htm │ │ │ │ ├── T_BerkeleyDB_PreparedTransaction.htm │ │ │ │ ├── T_BerkeleyDB_QueueDatabase.htm │ │ │ │ ├── T_BerkeleyDB_QueueDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_QueueStats.htm │ │ │ │ ├── T_BerkeleyDB_RecnoCursor.htm │ │ │ │ ├── T_BerkeleyDB_RecnoDatabase.htm │ │ │ │ ├── T_BerkeleyDB_RecnoDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_RecnoStats.htm │ │ │ │ ├── T_BerkeleyDB_RepMgrSite.htm │ │ │ │ ├── T_BerkeleyDB_RepMgrStats.htm │ │ │ │ ├── T_BerkeleyDB_RepProcMsgResult.htm │ │ │ │ ├── T_BerkeleyDB_RepProcMsgResult_ProcMsgResult.htm │ │ │ │ ├── T_BerkeleyDB_ReplicationConfig.htm │ │ │ │ ├── T_BerkeleyDB_ReplicationHostAddress.htm │ │ │ │ ├── T_BerkeleyDB_ReplicationStats.htm │ │ │ │ ├── T_BerkeleyDB_ReplicationTransportDelegate.htm │ │ │ │ ├── T_BerkeleyDB_RunRecoveryException.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryBTreeDatabase.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryCursor.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryDatabase.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryHashDatabase.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryHashDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryKeyGenDelegate.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryQueueDatabase.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryRecnoDatabase.htm │ │ │ │ ├── T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm │ │ │ │ ├── T_BerkeleyDB_Sequence.htm │ │ │ │ ├── T_BerkeleyDB_SequenceConfig.htm │ │ │ │ ├── T_BerkeleyDB_SequenceStats.htm │ │ │ │ ├── T_BerkeleyDB_SetThreadIDDelegate.htm │ │ │ │ ├── T_BerkeleyDB_SetThreadNameDelegate.htm │ │ │ │ ├── T_BerkeleyDB_ThreadIsAliveDelegate.htm │ │ │ │ ├── T_BerkeleyDB_Transaction.htm │ │ │ │ ├── T_BerkeleyDB_TransactionAppliedStatus.htm │ │ │ │ ├── T_BerkeleyDB_TransactionConfig.htm │ │ │ │ ├── T_BerkeleyDB_TransactionConfig_LogFlush.htm │ │ │ │ ├── T_BerkeleyDB_TransactionStats.htm │ │ │ │ ├── T_BerkeleyDB_VerboseMessages.htm │ │ │ │ ├── T_BerkeleyDB_VerificationException.htm │ │ │ │ └── T_BerkeleyDB_VersionMismatchException.htm │ │ │ ├── icons │ │ │ │ ├── CFW.gif │ │ │ │ ├── Caution.gif │ │ │ │ ├── CopyCode_h.gif │ │ │ │ ├── LastChild.gif │ │ │ │ ├── adm.gif │ │ │ │ ├── adm_arch.gif │ │ │ │ ├── adm_dev.gif │ │ │ │ ├── adm_dev_arch.gif │ │ │ │ ├── alert_caution.gif │ │ │ │ ├── alert_note.gif │ │ │ │ ├── alert_security.gif │ │ │ │ ├── arch.gif │ │ │ │ ├── big_adm.gif │ │ │ │ ├── big_arch.gif │ │ │ │ ├── big_dev.gif │ │ │ │ ├── big_kw.gif │ │ │ │ ├── box.gif │ │ │ │ ├── collall.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── collapse_all.gif │ │ │ │ ├── copycode.gif │ │ │ │ ├── copycodeHighlight.gif │ │ │ │ ├── dev.gif │ │ │ │ ├── dev_arch.gif │ │ │ │ ├── dropdown.gif │ │ │ │ ├── dropdownHover.gif │ │ │ │ ├── drpdown.gif │ │ │ │ ├── drpdown_orange.gif │ │ │ │ ├── drpdown_orange_up.gif │ │ │ │ ├── drpup.gif │ │ │ │ ├── exp.gif │ │ │ │ ├── expall.gif │ │ │ │ ├── expand_all.gif │ │ │ │ ├── filter1a.gif │ │ │ │ ├── filter1c.gif │ │ │ │ ├── footer.gif │ │ │ │ ├── gradient.gif │ │ │ │ ├── greencheck.gif │ │ │ │ ├── greychck.gif │ │ │ │ ├── header_prev_next.jpg │ │ │ │ ├── header_sql_tutorial_blank.jpg │ │ │ │ ├── header_sql_tutorial_logo.GIF │ │ │ │ ├── kw.gif │ │ │ │ ├── kw_adm.gif │ │ │ │ ├── kw_adm_arch.gif │ │ │ │ ├── kw_adm_dev.gif │ │ │ │ ├── kw_adm_dev_arch.gif │ │ │ │ ├── kw_arch.gif │ │ │ │ ├── kw_dev.gif │ │ │ │ ├── kw_dev_arch.gif │ │ │ │ ├── load.gif │ │ │ │ ├── load_hover.gif │ │ │ │ ├── note.gif │ │ │ │ ├── pencil.GIF │ │ │ │ ├── privclass.gif │ │ │ │ ├── privdelegate.gif │ │ │ │ ├── privenum.gif │ │ │ │ ├── privenumeration.gif │ │ │ │ ├── privevent.gif │ │ │ │ ├── privextension.gif │ │ │ │ ├── privfield.gif │ │ │ │ ├── privinterface.gif │ │ │ │ ├── privmethod.gif │ │ │ │ ├── privproperty.gif │ │ │ │ ├── privstructure.gif │ │ │ │ ├── protclass.gif │ │ │ │ ├── protdelegate.gif │ │ │ │ ├── protenum.gif │ │ │ │ ├── protenumeration.gif │ │ │ │ ├── protevent.gif │ │ │ │ ├── protextension.gif │ │ │ │ ├── protfield.gif │ │ │ │ ├── protinterface.gif │ │ │ │ ├── protmethod.gif │ │ │ │ ├── protoperator.gif │ │ │ │ ├── protproperty.gif │ │ │ │ ├── protstructure.gif │ │ │ │ ├── pubclass.gif │ │ │ │ ├── pubdelegate.gif │ │ │ │ ├── pubenum.gif │ │ │ │ ├── pubenumeration.gif │ │ │ │ ├── pubevent.gif │ │ │ │ ├── pubextension.gif │ │ │ │ ├── pubfield.gif │ │ │ │ ├── pubinterface.gif │ │ │ │ ├── pubmethod.gif │ │ │ │ ├── puboperator.gif │ │ │ │ ├── pubproperty.gif │ │ │ │ ├── pubstructure.gif │ │ │ │ ├── requirements1a.gif │ │ │ │ ├── requirements1c.gif │ │ │ │ ├── save.gif │ │ │ │ ├── save_hover.gif │ │ │ │ ├── security.gif │ │ │ │ ├── seealso1a.gif │ │ │ │ ├── seealso1c.gif │ │ │ │ ├── static.gif │ │ │ │ └── xna.gif │ │ │ ├── scripts │ │ │ │ ├── CheckboxMenu.js │ │ │ │ ├── CommonUtilities.js │ │ │ │ ├── Dropdown.js │ │ │ │ ├── EventUtilities.js │ │ │ │ ├── SplitScreen.js │ │ │ │ ├── highlight.js │ │ │ │ ├── script_feedBack.js │ │ │ │ └── script_manifold.js │ │ │ └── styles │ │ │ │ ├── Presentation.css │ │ │ │ ├── Whidbey │ │ │ │ └── presentation.css │ │ │ │ └── highlight.css │ │ ├── gsg │ │ │ ├── C │ │ │ │ ├── BerkeleyDB-Core-C-GSG.pdf │ │ │ │ ├── CoreCursorUsage.html │ │ │ │ ├── CoreDBAdmin.html │ │ │ │ ├── CoreDbUsage.html │ │ │ │ ├── CoreEnvUsage.html │ │ │ │ ├── Cursors.html │ │ │ │ ├── DBEntry.html │ │ │ │ ├── DBOpenFlags.html │ │ │ │ ├── DbUsage.html │ │ │ │ ├── DeleteEntryWCursor.html │ │ │ │ ├── Positioning.html │ │ │ │ ├── PutEntryWCursor.html │ │ │ │ ├── ReplacingEntryWCursor.html │ │ │ │ ├── accessmethods.html │ │ │ │ ├── btree.html │ │ │ │ ├── cachesize.html │ │ │ │ ├── concepts.html │ │ │ │ ├── coredbclose.html │ │ │ │ ├── coreindexusage.html │ │ │ │ ├── cstructs.html │ │ │ │ ├── databaseLimits.html │ │ │ │ ├── databases.html │ │ │ │ ├── dbErrorReporting.html │ │ │ │ ├── dbconfig.html │ │ │ │ ├── environments.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── gettingit.html │ │ │ │ ├── index.html │ │ │ │ ├── indexes.html │ │ │ │ ├── introduction.html │ │ │ │ ├── joins.html │ │ │ │ ├── keyCreator.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── preface.html │ │ │ │ ├── readSecondary.html │ │ │ │ ├── returns.html │ │ │ │ ├── secondaryCursor.html │ │ │ │ ├── secondaryDelete.html │ │ │ │ └── usingDbt.html │ │ │ ├── CXX │ │ │ │ ├── BerkeleyDB-Core-Cxx-GSG.pdf │ │ │ │ ├── CoreCursorUsage.html │ │ │ │ ├── CoreDBAdmin.html │ │ │ │ ├── CoreDbCXXUsage.html │ │ │ │ ├── CoreEnvUsage.html │ │ │ │ ├── Cursors.html │ │ │ │ ├── DBEntry.html │ │ │ │ ├── DBOpenFlags.html │ │ │ │ ├── DbCXXUsage.html │ │ │ │ ├── DeleteEntryWCursor.html │ │ │ │ ├── Positioning.html │ │ │ │ ├── PutEntryWCursor.html │ │ │ │ ├── ReplacingEntryWCursor.html │ │ │ │ ├── accessmethods.html │ │ │ │ ├── btree.html │ │ │ │ ├── cachesize.html │ │ │ │ ├── concepts.html │ │ │ │ ├── coreExceptions.html │ │ │ │ ├── coredbclose.html │ │ │ │ ├── coreindexusage.html │ │ │ │ ├── databaseLimits.html │ │ │ │ ├── databases.html │ │ │ │ ├── dbErrorReporting.html │ │ │ │ ├── dbconfig.html │ │ │ │ ├── environments.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── gettingit.html │ │ │ │ ├── index.html │ │ │ │ ├── indexes.html │ │ │ │ ├── introduction.html │ │ │ │ ├── joins.html │ │ │ │ ├── keyCreator.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── preface.html │ │ │ │ ├── readSecondary.html │ │ │ │ ├── returns.html │ │ │ │ ├── secondaryCursor.html │ │ │ │ ├── secondaryDelete.html │ │ │ │ └── usingDbt.html │ │ │ └── JAVA │ │ │ │ ├── BerkeleyDB-Core-JAVA-GSG.pdf │ │ │ │ ├── CoreEnvUsage.html │ │ │ │ ├── CoreJavaUsage.html │ │ │ │ ├── Cursors.html │ │ │ │ ├── DBAdmin.html │ │ │ │ ├── DBEntry.html │ │ │ │ ├── DeleteEntryWCursor.html │ │ │ │ ├── Env.html │ │ │ │ ├── EnvClose.html │ │ │ │ ├── EnvProps.html │ │ │ │ ├── Positioning.html │ │ │ │ ├── PutEntryWCursor.html │ │ │ │ ├── ReplacingEntryWCursor.html │ │ │ │ ├── accessmethods.html │ │ │ │ ├── baseapi.html │ │ │ │ ├── bindAPI.html │ │ │ │ ├── btree.html │ │ │ │ ├── cachesize.html │ │ │ │ ├── coreExceptions.html │ │ │ │ ├── coredbclose.html │ │ │ │ ├── cursorJavaUsage.html │ │ │ │ ├── dataaccessorclass.html │ │ │ │ ├── databaseLimits.html │ │ │ │ ├── databases.html │ │ │ │ ├── dbErrorReporting.html │ │ │ │ ├── dbconfig.html │ │ │ │ ├── dbprops.html │ │ │ │ ├── dbtJavaUsage.html │ │ │ │ ├── dpl.html │ │ │ │ ├── dpl_delete.html │ │ │ │ ├── dpl_entityjoin.html │ │ │ │ ├── dpl_example.html │ │ │ │ ├── dpl_exampledatabaseput.html │ │ │ │ ├── dpl_exampleinventoryread.html │ │ │ │ ├── dpl_replace.html │ │ │ │ ├── dplindexcreate.html │ │ │ │ ├── getmultiple.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── gettingit.html │ │ │ │ ├── index.html │ │ │ │ ├── indexes.html │ │ │ │ ├── introduction.html │ │ │ │ ├── inventoryclass.html │ │ │ │ ├── javadplconcepts.html │ │ │ │ ├── javaindexusage.html │ │ │ │ ├── joins.html │ │ │ │ ├── keyCreator.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── mydbenv-persist.html │ │ │ │ ├── persist_access.html │ │ │ │ ├── persist_first.html │ │ │ │ ├── persist_index.html │ │ │ │ ├── persistobject.html │ │ │ │ ├── preface.html │ │ │ │ ├── readSecondary.html │ │ │ │ ├── returns.html │ │ │ │ ├── saveret.html │ │ │ │ ├── secondaryCursor.html │ │ │ │ ├── secondaryDelete.html │ │ │ │ ├── secondaryProps.html │ │ │ │ ├── simpleda.html │ │ │ │ ├── simpleget.html │ │ │ │ ├── simpleput.html │ │ │ │ └── usingDbt.html │ │ ├── gsg_db_rep │ │ │ ├── C │ │ │ │ ├── Replication-C-GSG.pdf │ │ │ │ ├── addfeatures.html │ │ │ │ ├── apioverview.html │ │ │ │ ├── autoinit.html │ │ │ │ ├── bulk.html │ │ │ │ ├── c2ctransfer.html │ │ │ │ ├── elections.html │ │ │ │ ├── electiontimes.html │ │ │ │ ├── exampledoloop.html │ │ │ │ ├── fmwrkconnectretry.html │ │ │ │ ├── fwrkmasterreplica.html │ │ │ │ ├── fwrkpermmessage.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── heartbeats.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── manageblock.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── permmessages.html │ │ │ │ ├── preface.html │ │ │ │ ├── processingloop.html │ │ │ │ ├── rep_init_code.html │ │ │ │ ├── repadvantage.html │ │ │ │ ├── repapp.html │ │ │ │ ├── repmgr_init_example_c.html │ │ │ │ ├── rywc.html │ │ │ │ ├── simpleprogramlisting.html │ │ │ │ └── txnapp.html │ │ │ ├── CXX │ │ │ │ ├── Replication-CXX-GSG.pdf │ │ │ │ ├── addfeatures.html │ │ │ │ ├── apioverview.html │ │ │ │ ├── autoinit.html │ │ │ │ ├── bulk.html │ │ │ │ ├── c2ctransfer.html │ │ │ │ ├── elections.html │ │ │ │ ├── electiontimes.html │ │ │ │ ├── exampledoloop.html │ │ │ │ ├── fmwrkconnectretry.html │ │ │ │ ├── fwrkmasterreplica.html │ │ │ │ ├── fwrkpermmessage.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── heartbeats.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── manageblock.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── permmessages.html │ │ │ │ ├── preface.html │ │ │ │ ├── processingloop.html │ │ │ │ ├── rep_init_code.html │ │ │ │ ├── repadvantage.html │ │ │ │ ├── repapp.html │ │ │ │ ├── repmgr_init_example_c.html │ │ │ │ ├── rywc.html │ │ │ │ ├── simpleprogramlisting.html │ │ │ │ └── txnapp.html │ │ │ └── JAVA │ │ │ │ ├── Replication-JAVA-GSG.pdf │ │ │ │ ├── addfeatures.html │ │ │ │ ├── apioverview.html │ │ │ │ ├── autoinit.html │ │ │ │ ├── bulk.html │ │ │ │ ├── c2ctransfer.html │ │ │ │ ├── elections.html │ │ │ │ ├── electiontimes.html │ │ │ │ ├── exampledoloop.html │ │ │ │ ├── fmwrkconnectretry.html │ │ │ │ ├── fwrkmasterreplica.html │ │ │ │ ├── fwrkpermmessage.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── heartbeats.html │ │ │ │ ├── index.html │ │ │ │ ├── introduction.html │ │ │ │ ├── manageblock.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── permmessages.html │ │ │ │ ├── preface.html │ │ │ │ ├── processingloop.html │ │ │ │ ├── repadvantage.html │ │ │ │ ├── repapp.html │ │ │ │ ├── repmgr_init_example_c.html │ │ │ │ ├── rywc.html │ │ │ │ ├── simpleprogramlisting.html │ │ │ │ └── txnapp.html │ │ ├── gsg_txn │ │ │ ├── C │ │ │ │ ├── BerkeleyDB-Core-C-Txn.pdf │ │ │ │ ├── abortresults.html │ │ │ │ ├── apireq.html │ │ │ │ ├── architectrecovery.html │ │ │ │ ├── autocommit.html │ │ │ │ ├── backuprestore.html │ │ │ │ ├── blocking_deadlocks.html │ │ │ │ ├── deadlock.jpg │ │ │ │ ├── enabletxn.html │ │ │ │ ├── envopen.html │ │ │ │ ├── exclusivelock.html │ │ │ │ ├── filemanagement.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── hotfailover.html │ │ │ │ ├── index.html │ │ │ │ ├── inmem_txnexample_c.html │ │ │ │ ├── introduction.html │ │ │ │ ├── isolation.html │ │ │ │ ├── lockingsubsystem.html │ │ │ │ ├── logconfig.html │ │ │ │ ├── logfileremoval.html │ │ │ │ ├── maxtxns.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── multithread-intro.html │ │ │ │ ├── nestedtxn.html │ │ │ │ ├── nodurabletxn.html │ │ │ │ ├── perftune-intro.html │ │ │ │ ├── preface.html │ │ │ │ ├── readblock.jpg │ │ │ │ ├── readmodifywrite.html │ │ │ │ ├── recovery-intro.html │ │ │ │ ├── recovery.html │ │ │ │ ├── reversesplit.html │ │ │ │ ├── rwlocks1-pdf.jpg │ │ │ │ ├── rwlocks1.jpg │ │ │ │ ├── simplelock-pdf.jpg │ │ │ │ ├── simplelock.jpg │ │ │ │ ├── sysfailure.html │ │ │ │ ├── txn_ccursor.html │ │ │ │ ├── txnconcurrency.html │ │ │ │ ├── txncursor.html │ │ │ │ ├── txnexample_c.html │ │ │ │ ├── txnindices.html │ │ │ │ ├── txnnowait.html │ │ │ │ ├── usingtxns.html │ │ │ │ ├── wrapup.html │ │ │ │ └── writeblock.jpg │ │ │ ├── CXX │ │ │ │ ├── BerkeleyDB-Core-Cxx-Txn.pdf │ │ │ │ ├── abortresults.html │ │ │ │ ├── apireq.html │ │ │ │ ├── architectrecovery.html │ │ │ │ ├── autocommit.html │ │ │ │ ├── backuprestore.html │ │ │ │ ├── blocking_deadlocks.html │ │ │ │ ├── deadlock.jpg │ │ │ │ ├── enabletxn.html │ │ │ │ ├── envopen.html │ │ │ │ ├── exclusivelock.html │ │ │ │ ├── filemanagement.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── hotfailover.html │ │ │ │ ├── index.html │ │ │ │ ├── inmem_txnexample_c.html │ │ │ │ ├── introduction.html │ │ │ │ ├── isolation.html │ │ │ │ ├── lockingsubsystem.html │ │ │ │ ├── logconfig.html │ │ │ │ ├── logfileremoval.html │ │ │ │ ├── maxtxns.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── multithread-intro.html │ │ │ │ ├── nestedtxn.html │ │ │ │ ├── nodurabletxn.html │ │ │ │ ├── perftune-intro.html │ │ │ │ ├── preface.html │ │ │ │ ├── readblock.jpg │ │ │ │ ├── readmodifywrite.html │ │ │ │ ├── recovery-intro.html │ │ │ │ ├── recovery.html │ │ │ │ ├── reversesplit.html │ │ │ │ ├── rwlocks1-pdf.jpg │ │ │ │ ├── rwlocks1.jpg │ │ │ │ ├── simplelock-pdf.jpg │ │ │ │ ├── simplelock.jpg │ │ │ │ ├── sysfailure.html │ │ │ │ ├── txn_ccursor.html │ │ │ │ ├── txnconcurrency.html │ │ │ │ ├── txncursor.html │ │ │ │ ├── txnexample_c.html │ │ │ │ ├── txnindices.html │ │ │ │ ├── txnnowait.html │ │ │ │ ├── usingtxns.html │ │ │ │ ├── wrapup.html │ │ │ │ └── writeblock.jpg │ │ │ └── JAVA │ │ │ │ ├── BerkeleyDB-Core-JAVA-Txn.pdf │ │ │ │ ├── abortresults.html │ │ │ │ ├── apireq.html │ │ │ │ ├── architectrecovery.html │ │ │ │ ├── autocommit.html │ │ │ │ ├── backuprestore.html │ │ │ │ ├── blocking_deadlocks.html │ │ │ │ ├── deadlock.jpg │ │ │ │ ├── enabletxn.html │ │ │ │ ├── envopen.html │ │ │ │ ├── exclusivelock.html │ │ │ │ ├── filemanagement.html │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── hotfailover.html │ │ │ │ ├── index.html │ │ │ │ ├── inmem_txnexample_java.html │ │ │ │ ├── introduction.html │ │ │ │ ├── isolation.html │ │ │ │ ├── lockingsubsystem.html │ │ │ │ ├── logconfig.html │ │ │ │ ├── logfileremoval.html │ │ │ │ ├── maxtxns.html │ │ │ │ ├── moreinfo.html │ │ │ │ ├── multithread-intro.html │ │ │ │ ├── nestedtxn.html │ │ │ │ ├── nodurabletxn.html │ │ │ │ ├── perftune-intro.html │ │ │ │ ├── preface.html │ │ │ │ ├── readblock.jpg │ │ │ │ ├── readmodifywrite.html │ │ │ │ ├── recovery-intro.html │ │ │ │ ├── recovery.html │ │ │ │ ├── reversesplit.html │ │ │ │ ├── rwlocks1-pdf.jpg │ │ │ │ ├── rwlocks1.jpg │ │ │ │ ├── simplelock-pdf.jpg │ │ │ │ ├── simplelock.jpg │ │ │ │ ├── sysfailure.html │ │ │ │ ├── txn_ccursor.html │ │ │ │ ├── txnconcurrency.html │ │ │ │ ├── txncursor.html │ │ │ │ ├── txnexample_dpl.html │ │ │ │ ├── txnexample_java.html │ │ │ │ ├── txnindices.html │ │ │ │ ├── txnnowait.html │ │ │ │ ├── usingtxns.html │ │ │ │ ├── wrapup.html │ │ │ │ └── writeblock.jpg │ │ ├── index.html │ │ ├── installation │ │ │ ├── BDB_Installation.pdf │ │ │ ├── arch_bigpic.gif │ │ │ ├── arch_smallpic.gif │ │ │ ├── build_android_config.html │ │ │ ├── build_android_intro.html │ │ │ ├── build_android_jdbc.html │ │ │ ├── build_unix.html │ │ │ ├── build_unix_aix.html │ │ │ ├── build_unix_conf.html │ │ │ ├── build_unix_db_nosync.html │ │ │ ├── build_unix_encrypt.html │ │ │ ├── build_unix_flags.html │ │ │ ├── build_unix_freebsd.html │ │ │ ├── build_unix_install.html │ │ │ ├── build_unix_iphone.html │ │ │ ├── build_unix_irix.html │ │ │ ├── build_unix_linux.html │ │ │ ├── build_unix_macosx.html │ │ │ ├── build_unix_notes.html │ │ │ ├── build_unix_qnx.html │ │ │ ├── build_unix_sco.html │ │ │ ├── build_unix_shlib.html │ │ │ ├── build_unix_small.html │ │ │ ├── build_unix_solaris.html │ │ │ ├── build_unix_sql.html │ │ │ ├── build_unix_stacksize.html │ │ │ ├── build_unix_sunos.html │ │ │ ├── build_unix_test.html │ │ │ ├── build_vxworks.html │ │ │ ├── build_vxworks_faq.html │ │ │ ├── build_vxworks_notes.html │ │ │ ├── build_win.html │ │ │ ├── build_win_csharp.html │ │ │ ├── build_win_faq.html │ │ │ ├── build_win_java.html │ │ │ ├── build_win_notes.html │ │ │ ├── build_win_small.html │ │ │ ├── build_win_sql.html │ │ │ ├── build_win_tcl.html │ │ │ ├── build_win_test.html │ │ │ ├── build_wince.html │ │ │ ├── build_wince_faq.html │ │ │ ├── build_wince_notes.html │ │ │ ├── ch01s02.html │ │ │ ├── changelog_4_8.html │ │ │ ├── changelog_5_0.html │ │ │ ├── changelog_5_1.html │ │ │ ├── changelog_5_2.html │ │ │ ├── changelog_5_3.html │ │ │ ├── cross_compile_unix.html │ │ │ ├── debug.html │ │ │ ├── debug_compile.html │ │ │ ├── debug_printlog.html │ │ │ ├── debug_runtime.html │ │ │ ├── gettingStarted.css │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── install_multiple.html │ │ │ ├── introduction.html │ │ │ ├── moreinfo.html │ │ │ ├── preface.html │ │ │ ├── test.html │ │ │ ├── test_faq.html │ │ │ ├── upgrade_11gr2_51_dpl_recompile.html │ │ │ ├── upgrade_11gr2_51_mod_db4_unsupp.html │ │ │ ├── upgrade_11gr2_51_sqlite_ver.html │ │ │ ├── upgrade_11gr2_51_src_reorg.html │ │ │ ├── upgrade_11gr2_52_bit_cmp_win.html │ │ │ ├── upgrade_11gr2_52_dyn_env.html │ │ │ ├── upgrade_11gr2_52_excl_txn_sql.html │ │ │ ├── upgrade_11gr2_52_grp_mbr.html │ │ │ ├── upgrade_11gr2_52_heap.html │ │ │ ├── upgrade_11gr2_52_hot_backup.html │ │ │ ├── upgrade_11gr2_52_mvcc_sql.html │ │ │ ├── upgrade_11gr2_52_rep_2site_strict.html │ │ │ ├── upgrade_11gr2_52_rep_dbt_readonly.html │ │ │ ├── upgrade_11gr2_52_rep_sql.html │ │ │ ├── upgrade_11gr2_52_repmgr_channels.html │ │ │ ├── upgrade_11gr2_52_seq_sql.html │ │ │ ├── upgrade_11gr2_52_sqlite_ver.html │ │ │ ├── upgrade_11gr2_52_xa.html │ │ │ ├── upgrade_11gr2_53_build_windows.html │ │ │ ├── upgrade_11gr2_53_conn_status.html │ │ │ ├── upgrade_11gr2_53_excl.html │ │ │ ├── upgrade_11gr2_53_heap_regionsize.html │ │ │ ├── upgrade_11gr2_53_hotbackup.html │ │ │ ├── upgrade_11gr2_53_jdbc.html │ │ │ ├── upgrade_11gr2_53_meta_dir.html │ │ │ ├── upgrade_11gr2_53_sql_build.html │ │ │ ├── upgrade_11gr2_53_sql_pragma.html │ │ │ ├── upgrade_11gr2_53_sql_rep.html │ │ │ ├── upgrade_11gr2_53_xa_mvcc.html │ │ │ ├── upgrade_11gr2_autoinit.html │ │ │ ├── upgrade_11gr2_dbsqlcodegen.html │ │ │ ├── upgrade_11gr2_remsupp.html │ │ │ ├── upgrade_11gr2_repmgr.html │ │ │ ├── upgrade_11gr2_toc.html │ │ │ ├── upgrade_4_8_disk.html │ │ │ ├── upgrade_4_8_dpl.html │ │ │ ├── upgrade_4_8_fcntl.html │ │ │ ├── upgrade_4_8_mpool.html │ │ │ ├── upgrade_4_8_toc.html │ │ │ ├── upgrade_51_toc.html │ │ │ ├── upgrade_52_toc.html │ │ │ ├── upgrade_53_toc.html │ │ │ ├── win_additional_options.html │ │ │ ├── win_build64.html │ │ │ ├── win_build_cxx.html │ │ │ ├── win_build_cygwin.html │ │ │ ├── win_build_dist_dll.html │ │ │ └── win_build_stl.html │ │ ├── java │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── com │ │ │ │ └── sleepycat │ │ │ │ │ ├── bind │ │ │ │ │ ├── ByteArrayBinding.html │ │ │ │ │ ├── EntityBinding.html │ │ │ │ │ ├── EntryBinding.html │ │ │ │ │ ├── RecordNumberBinding.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── ByteArrayBinding.html │ │ │ │ │ │ ├── EntityBinding.html │ │ │ │ │ │ ├── EntryBinding.html │ │ │ │ │ │ └── RecordNumberBinding.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ ├── serial │ │ │ │ │ │ ├── ClassCatalog.html │ │ │ │ │ │ ├── SerialBase.html │ │ │ │ │ │ ├── SerialBinding.html │ │ │ │ │ │ ├── SerialInput.html │ │ │ │ │ │ ├── SerialOutput.html │ │ │ │ │ │ ├── SerialSerialBinding.html │ │ │ │ │ │ ├── SerialSerialKeyCreator.html │ │ │ │ │ │ ├── StoredClassCatalog.html │ │ │ │ │ │ ├── TupleSerialBinding.html │ │ │ │ │ │ ├── TupleSerialKeyCreator.html │ │ │ │ │ │ ├── TupleSerialMarshalledBinding.html │ │ │ │ │ │ ├── TupleSerialMarshalledKeyCreator.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ClassCatalog.html │ │ │ │ │ │ │ ├── SerialBase.html │ │ │ │ │ │ │ ├── SerialBinding.html │ │ │ │ │ │ │ ├── SerialInput.html │ │ │ │ │ │ │ ├── SerialOutput.html │ │ │ │ │ │ │ ├── SerialSerialBinding.html │ │ │ │ │ │ │ ├── SerialSerialKeyCreator.html │ │ │ │ │ │ │ ├── StoredClassCatalog.html │ │ │ │ │ │ │ ├── TupleSerialBinding.html │ │ │ │ │ │ │ ├── TupleSerialKeyCreator.html │ │ │ │ │ │ │ ├── TupleSerialMarshalledBinding.html │ │ │ │ │ │ │ └── TupleSerialMarshalledKeyCreator.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ └── tuple │ │ │ │ │ │ ├── BigDecimalBinding.html │ │ │ │ │ │ ├── BigIntegerBinding.html │ │ │ │ │ │ ├── BooleanBinding.html │ │ │ │ │ │ ├── ByteBinding.html │ │ │ │ │ │ ├── CharacterBinding.html │ │ │ │ │ │ ├── DoubleBinding.html │ │ │ │ │ │ ├── FloatBinding.html │ │ │ │ │ │ ├── IntegerBinding.html │ │ │ │ │ │ ├── LongBinding.html │ │ │ │ │ │ ├── MarshalledTupleEntry.html │ │ │ │ │ │ ├── MarshalledTupleKeyEntity.html │ │ │ │ │ │ ├── PackedIntegerBinding.html │ │ │ │ │ │ ├── PackedLongBinding.html │ │ │ │ │ │ ├── ShortBinding.html │ │ │ │ │ │ ├── SortedBigDecimalBinding.html │ │ │ │ │ │ ├── SortedDoubleBinding.html │ │ │ │ │ │ ├── SortedFloatBinding.html │ │ │ │ │ │ ├── SortedPackedIntegerBinding.html │ │ │ │ │ │ ├── SortedPackedLongBinding.html │ │ │ │ │ │ ├── StringBinding.html │ │ │ │ │ │ ├── TupleBase.html │ │ │ │ │ │ ├── TupleBinding.html │ │ │ │ │ │ ├── TupleInput.html │ │ │ │ │ │ ├── TupleInputBinding.html │ │ │ │ │ │ ├── TupleMarshalledBinding.html │ │ │ │ │ │ ├── TupleOutput.html │ │ │ │ │ │ ├── TupleTupleBinding.html │ │ │ │ │ │ ├── TupleTupleKeyCreator.html │ │ │ │ │ │ ├── TupleTupleMarshalledBinding.html │ │ │ │ │ │ ├── TupleTupleMarshalledKeyCreator.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── BigDecimalBinding.html │ │ │ │ │ │ ├── BigIntegerBinding.html │ │ │ │ │ │ ├── BooleanBinding.html │ │ │ │ │ │ ├── ByteBinding.html │ │ │ │ │ │ ├── CharacterBinding.html │ │ │ │ │ │ ├── DoubleBinding.html │ │ │ │ │ │ ├── FloatBinding.html │ │ │ │ │ │ ├── IntegerBinding.html │ │ │ │ │ │ ├── LongBinding.html │ │ │ │ │ │ ├── MarshalledTupleEntry.html │ │ │ │ │ │ ├── MarshalledTupleKeyEntity.html │ │ │ │ │ │ ├── PackedIntegerBinding.html │ │ │ │ │ │ ├── PackedLongBinding.html │ │ │ │ │ │ ├── ShortBinding.html │ │ │ │ │ │ ├── SortedBigDecimalBinding.html │ │ │ │ │ │ ├── SortedDoubleBinding.html │ │ │ │ │ │ ├── SortedFloatBinding.html │ │ │ │ │ │ ├── SortedPackedIntegerBinding.html │ │ │ │ │ │ ├── SortedPackedLongBinding.html │ │ │ │ │ │ ├── StringBinding.html │ │ │ │ │ │ ├── TupleBase.html │ │ │ │ │ │ ├── TupleBinding.html │ │ │ │ │ │ ├── TupleInput.html │ │ │ │ │ │ ├── TupleInputBinding.html │ │ │ │ │ │ ├── TupleMarshalledBinding.html │ │ │ │ │ │ ├── TupleOutput.html │ │ │ │ │ │ ├── TupleTupleBinding.html │ │ │ │ │ │ ├── TupleTupleKeyCreator.html │ │ │ │ │ │ ├── TupleTupleMarshalledBinding.html │ │ │ │ │ │ └── TupleTupleMarshalledKeyCreator.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── collections │ │ │ │ │ ├── CurrentTransaction.html │ │ │ │ │ ├── MapEntryParameter.html │ │ │ │ │ ├── PrimaryKeyAssigner.html │ │ │ │ │ ├── StoredCollection.html │ │ │ │ │ ├── StoredCollections.html │ │ │ │ │ ├── StoredContainer.html │ │ │ │ │ ├── StoredEntrySet.html │ │ │ │ │ ├── StoredIterator.html │ │ │ │ │ ├── StoredKeySet.html │ │ │ │ │ ├── StoredList.html │ │ │ │ │ ├── StoredMap.html │ │ │ │ │ ├── StoredSortedEntrySet.html │ │ │ │ │ ├── StoredSortedKeySet.html │ │ │ │ │ ├── StoredSortedMap.html │ │ │ │ │ ├── StoredSortedValueSet.html │ │ │ │ │ ├── StoredValueSet.html │ │ │ │ │ ├── TransactionRunner.html │ │ │ │ │ ├── TransactionWorker.html │ │ │ │ │ ├── TupleSerialFactory.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CurrentTransaction.html │ │ │ │ │ │ ├── MapEntryParameter.html │ │ │ │ │ │ ├── PrimaryKeyAssigner.html │ │ │ │ │ │ ├── StoredCollection.html │ │ │ │ │ │ ├── StoredCollections.html │ │ │ │ │ │ ├── StoredContainer.html │ │ │ │ │ │ ├── StoredEntrySet.html │ │ │ │ │ │ ├── StoredIterator.html │ │ │ │ │ │ ├── StoredKeySet.html │ │ │ │ │ │ ├── StoredList.html │ │ │ │ │ │ ├── StoredMap.html │ │ │ │ │ │ ├── StoredSortedEntrySet.html │ │ │ │ │ │ ├── StoredSortedKeySet.html │ │ │ │ │ │ ├── StoredSortedMap.html │ │ │ │ │ │ ├── StoredSortedValueSet.html │ │ │ │ │ │ ├── StoredValueSet.html │ │ │ │ │ │ ├── TransactionRunner.html │ │ │ │ │ │ ├── TransactionWorker.html │ │ │ │ │ │ └── TupleSerialFactory.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── db │ │ │ │ │ ├── BackupHandler.html │ │ │ │ │ ├── BackupOptions.html │ │ │ │ │ ├── BtreeCompressor.html │ │ │ │ │ ├── BtreePrefixCalculator.html │ │ │ │ │ ├── BtreeStats.html │ │ │ │ │ ├── CacheFile.html │ │ │ │ │ ├── CacheFilePriority.html │ │ │ │ │ ├── CacheFileStats.html │ │ │ │ │ ├── CacheStats.html │ │ │ │ │ ├── CheckpointConfig.html │ │ │ │ │ ├── CompactConfig.html │ │ │ │ │ ├── CompactStats.html │ │ │ │ │ ├── Cursor.html │ │ │ │ │ ├── CursorConfig.html │ │ │ │ │ ├── Database.html │ │ │ │ │ ├── DatabaseConfig.html │ │ │ │ │ ├── DatabaseEntry.html │ │ │ │ │ ├── DatabaseException.html │ │ │ │ │ ├── DatabaseStats.html │ │ │ │ │ ├── DatabaseType.html │ │ │ │ │ ├── DeadlockException.html │ │ │ │ │ ├── Environment.html │ │ │ │ │ ├── EnvironmentConfig.html │ │ │ │ │ ├── ErrorHandler.html │ │ │ │ │ ├── EventHandler.html │ │ │ │ │ ├── EventHandlerAdapter.html │ │ │ │ │ ├── FeedbackHandler.html │ │ │ │ │ ├── ForeignKeyDeleteAction.html │ │ │ │ │ ├── ForeignKeyNullifier.html │ │ │ │ │ ├── ForeignMultiKeyNullifier.html │ │ │ │ │ ├── HashStats.html │ │ │ │ │ ├── Hasher.html │ │ │ │ │ ├── HeapFullException.html │ │ │ │ │ ├── HeapRecordId.html │ │ │ │ │ ├── HeapStats.html │ │ │ │ │ ├── JoinConfig.html │ │ │ │ │ ├── JoinCursor.html │ │ │ │ │ ├── KeyRange.html │ │ │ │ │ ├── Lock.html │ │ │ │ │ ├── LockDetectMode.html │ │ │ │ │ ├── LockMode.html │ │ │ │ │ ├── LockNotGrantedException.html │ │ │ │ │ ├── LockOperation.html │ │ │ │ │ ├── LockRequest.html │ │ │ │ │ ├── LockRequestMode.html │ │ │ │ │ ├── LockStats.html │ │ │ │ │ ├── LogCursor.html │ │ │ │ │ ├── LogRecordHandler.html │ │ │ │ │ ├── LogSequenceNumber.html │ │ │ │ │ ├── LogStats.html │ │ │ │ │ ├── LogVerifyConfig.html │ │ │ │ │ ├── MemoryException.html │ │ │ │ │ ├── MessageHandler.html │ │ │ │ │ ├── MultipleDataEntry.html │ │ │ │ │ ├── MultipleEntry.html │ │ │ │ │ ├── MultipleKeyDataEntry.html │ │ │ │ │ ├── MultipleKeyNIODataEntry.html │ │ │ │ │ ├── MultipleNIODataEntry.html │ │ │ │ │ ├── MultipleRecnoDataEntry.html │ │ │ │ │ ├── MultipleRecnoNIODataEntry.html │ │ │ │ │ ├── MutexStats.html │ │ │ │ │ ├── OperationStatus.html │ │ │ │ │ ├── PanicHandler.html │ │ │ │ │ ├── PartitionHandler.html │ │ │ │ │ ├── PreparedTransaction.html │ │ │ │ │ ├── QueueStats.html │ │ │ │ │ ├── RecordNumberAppender.html │ │ │ │ │ ├── RecoveryOperation.html │ │ │ │ │ ├── RegionResourceType.html │ │ │ │ │ ├── ReplicationChannel.html │ │ │ │ │ ├── ReplicationConfig.html │ │ │ │ │ ├── ReplicationDuplicateMasterException.html │ │ │ │ │ ├── ReplicationHandleDeadException.html │ │ │ │ │ ├── ReplicationHoldElectionException.html │ │ │ │ │ ├── ReplicationHostAddress.html │ │ │ │ │ ├── ReplicationJoinFailureException.html │ │ │ │ │ ├── ReplicationLeaseExpiredException.html │ │ │ │ │ ├── ReplicationLockoutException.html │ │ │ │ │ ├── ReplicationManagerAckPolicy.html │ │ │ │ │ ├── ReplicationManagerConnectionStatus.html │ │ │ │ │ ├── ReplicationManagerMessageDispatch.html │ │ │ │ │ ├── ReplicationManagerSite.html │ │ │ │ │ ├── ReplicationManagerSiteConfig.html │ │ │ │ │ ├── ReplicationManagerSiteInfo.html │ │ │ │ │ ├── ReplicationManagerStartPolicy.html │ │ │ │ │ ├── ReplicationManagerStats.html │ │ │ │ │ ├── ReplicationSiteUnavailableException.html │ │ │ │ │ ├── ReplicationStats.html │ │ │ │ │ ├── ReplicationStatus.html │ │ │ │ │ ├── ReplicationTimeoutType.html │ │ │ │ │ ├── ReplicationTransport.html │ │ │ │ │ ├── RunRecoveryException.html │ │ │ │ │ ├── SecondaryConfig.html │ │ │ │ │ ├── SecondaryCursor.html │ │ │ │ │ ├── SecondaryDatabase.html │ │ │ │ │ ├── SecondaryKeyCreator.html │ │ │ │ │ ├── SecondaryMultiKeyCreator.html │ │ │ │ │ ├── Sequence.html │ │ │ │ │ ├── SequenceConfig.html │ │ │ │ │ ├── SequenceStats.html │ │ │ │ │ ├── StatsConfig.html │ │ │ │ │ ├── Transaction.html │ │ │ │ │ ├── TransactionConfig.html │ │ │ │ │ ├── TransactionStats.Active.html │ │ │ │ │ ├── TransactionStats.html │ │ │ │ │ ├── TransactionStatus.html │ │ │ │ │ ├── VerboseConfig.html │ │ │ │ │ ├── VerifyConfig.html │ │ │ │ │ ├── VersionMismatchException.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── BackupHandler.html │ │ │ │ │ │ ├── BackupOptions.html │ │ │ │ │ │ ├── BtreeCompressor.html │ │ │ │ │ │ ├── BtreePrefixCalculator.html │ │ │ │ │ │ ├── BtreeStats.html │ │ │ │ │ │ ├── CacheFile.html │ │ │ │ │ │ ├── CacheFilePriority.html │ │ │ │ │ │ ├── CacheFileStats.html │ │ │ │ │ │ ├── CacheStats.html │ │ │ │ │ │ ├── CheckpointConfig.html │ │ │ │ │ │ ├── CompactConfig.html │ │ │ │ │ │ ├── CompactStats.html │ │ │ │ │ │ ├── Cursor.html │ │ │ │ │ │ ├── CursorConfig.html │ │ │ │ │ │ ├── Database.html │ │ │ │ │ │ ├── DatabaseConfig.html │ │ │ │ │ │ ├── DatabaseEntry.html │ │ │ │ │ │ ├── DatabaseException.html │ │ │ │ │ │ ├── DatabaseStats.html │ │ │ │ │ │ ├── DatabaseType.html │ │ │ │ │ │ ├── DeadlockException.html │ │ │ │ │ │ ├── Environment.html │ │ │ │ │ │ ├── EnvironmentConfig.html │ │ │ │ │ │ ├── ErrorHandler.html │ │ │ │ │ │ ├── EventHandler.html │ │ │ │ │ │ ├── EventHandlerAdapter.html │ │ │ │ │ │ ├── FeedbackHandler.html │ │ │ │ │ │ ├── ForeignKeyDeleteAction.html │ │ │ │ │ │ ├── ForeignKeyNullifier.html │ │ │ │ │ │ ├── ForeignMultiKeyNullifier.html │ │ │ │ │ │ ├── HashStats.html │ │ │ │ │ │ ├── Hasher.html │ │ │ │ │ │ ├── HeapFullException.html │ │ │ │ │ │ ├── HeapRecordId.html │ │ │ │ │ │ ├── HeapStats.html │ │ │ │ │ │ ├── JoinConfig.html │ │ │ │ │ │ ├── JoinCursor.html │ │ │ │ │ │ ├── KeyRange.html │ │ │ │ │ │ ├── Lock.html │ │ │ │ │ │ ├── LockDetectMode.html │ │ │ │ │ │ ├── LockMode.html │ │ │ │ │ │ ├── LockNotGrantedException.html │ │ │ │ │ │ ├── LockOperation.html │ │ │ │ │ │ ├── LockRequest.html │ │ │ │ │ │ ├── LockRequestMode.html │ │ │ │ │ │ ├── LockStats.html │ │ │ │ │ │ ├── LogCursor.html │ │ │ │ │ │ ├── LogRecordHandler.html │ │ │ │ │ │ ├── LogSequenceNumber.html │ │ │ │ │ │ ├── LogStats.html │ │ │ │ │ │ ├── LogVerifyConfig.html │ │ │ │ │ │ ├── MemoryException.html │ │ │ │ │ │ ├── MessageHandler.html │ │ │ │ │ │ ├── MultipleDataEntry.html │ │ │ │ │ │ ├── MultipleEntry.html │ │ │ │ │ │ ├── MultipleKeyDataEntry.html │ │ │ │ │ │ ├── MultipleKeyNIODataEntry.html │ │ │ │ │ │ ├── MultipleNIODataEntry.html │ │ │ │ │ │ ├── MultipleRecnoDataEntry.html │ │ │ │ │ │ ├── MultipleRecnoNIODataEntry.html │ │ │ │ │ │ ├── MutexStats.html │ │ │ │ │ │ ├── OperationStatus.html │ │ │ │ │ │ ├── PanicHandler.html │ │ │ │ │ │ ├── PartitionHandler.html │ │ │ │ │ │ ├── PreparedTransaction.html │ │ │ │ │ │ ├── QueueStats.html │ │ │ │ │ │ ├── RecordNumberAppender.html │ │ │ │ │ │ ├── RecoveryOperation.html │ │ │ │ │ │ ├── RegionResourceType.html │ │ │ │ │ │ ├── ReplicationChannel.html │ │ │ │ │ │ ├── ReplicationConfig.html │ │ │ │ │ │ ├── ReplicationDuplicateMasterException.html │ │ │ │ │ │ ├── ReplicationHandleDeadException.html │ │ │ │ │ │ ├── ReplicationHoldElectionException.html │ │ │ │ │ │ ├── ReplicationHostAddress.html │ │ │ │ │ │ ├── ReplicationJoinFailureException.html │ │ │ │ │ │ ├── ReplicationLeaseExpiredException.html │ │ │ │ │ │ ├── ReplicationLockoutException.html │ │ │ │ │ │ ├── ReplicationManagerAckPolicy.html │ │ │ │ │ │ ├── ReplicationManagerConnectionStatus.html │ │ │ │ │ │ ├── ReplicationManagerMessageDispatch.html │ │ │ │ │ │ ├── ReplicationManagerSite.html │ │ │ │ │ │ ├── ReplicationManagerSiteConfig.html │ │ │ │ │ │ ├── ReplicationManagerSiteInfo.html │ │ │ │ │ │ ├── ReplicationManagerStartPolicy.html │ │ │ │ │ │ ├── ReplicationManagerStats.html │ │ │ │ │ │ ├── ReplicationSiteUnavailableException.html │ │ │ │ │ │ ├── ReplicationStats.html │ │ │ │ │ │ ├── ReplicationStatus.html │ │ │ │ │ │ ├── ReplicationTimeoutType.html │ │ │ │ │ │ ├── ReplicationTransport.html │ │ │ │ │ │ ├── RunRecoveryException.html │ │ │ │ │ │ ├── SecondaryConfig.html │ │ │ │ │ │ ├── SecondaryCursor.html │ │ │ │ │ │ ├── SecondaryDatabase.html │ │ │ │ │ │ ├── SecondaryKeyCreator.html │ │ │ │ │ │ ├── SecondaryMultiKeyCreator.html │ │ │ │ │ │ ├── Sequence.html │ │ │ │ │ │ ├── SequenceConfig.html │ │ │ │ │ │ ├── SequenceStats.html │ │ │ │ │ │ ├── StatsConfig.html │ │ │ │ │ │ ├── Transaction.html │ │ │ │ │ │ ├── TransactionConfig.html │ │ │ │ │ │ ├── TransactionStats.Active.html │ │ │ │ │ │ ├── TransactionStats.html │ │ │ │ │ │ ├── TransactionStatus.html │ │ │ │ │ │ ├── VerboseConfig.html │ │ │ │ │ │ ├── VerifyConfig.html │ │ │ │ │ │ └── VersionMismatchException.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── persist │ │ │ │ │ ├── DatabaseNamer.html │ │ │ │ │ ├── EntityCursor.html │ │ │ │ │ ├── EntityIndex.html │ │ │ │ │ ├── EntityJoin.html │ │ │ │ │ ├── EntityStore.html │ │ │ │ │ ├── ForwardCursor.html │ │ │ │ │ ├── IndexNotAvailableException.html │ │ │ │ │ ├── PrimaryIndex.html │ │ │ │ │ ├── SecondaryIndex.html │ │ │ │ │ ├── StoreConfig.html │ │ │ │ │ ├── StoreConfigBeanInfo.html │ │ │ │ │ ├── StoreExistsException.html │ │ │ │ │ ├── StoreNotFoundException.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── DatabaseNamer.html │ │ │ │ │ │ ├── EntityCursor.html │ │ │ │ │ │ ├── EntityIndex.html │ │ │ │ │ │ ├── EntityJoin.html │ │ │ │ │ │ ├── EntityStore.html │ │ │ │ │ │ ├── ForwardCursor.html │ │ │ │ │ │ ├── IndexNotAvailableException.html │ │ │ │ │ │ ├── PrimaryIndex.html │ │ │ │ │ │ ├── SecondaryIndex.html │ │ │ │ │ │ ├── StoreConfig.html │ │ │ │ │ │ ├── StoreConfigBeanInfo.html │ │ │ │ │ │ ├── StoreExistsException.html │ │ │ │ │ │ └── StoreNotFoundException.html │ │ │ │ │ ├── evolve │ │ │ │ │ │ ├── Conversion.html │ │ │ │ │ │ ├── Converter.html │ │ │ │ │ │ ├── DeletedClassException.html │ │ │ │ │ │ ├── Deleter.html │ │ │ │ │ │ ├── EntityConverter.html │ │ │ │ │ │ ├── EvolveConfig.html │ │ │ │ │ │ ├── EvolveConfigBeanInfo.html │ │ │ │ │ │ ├── EvolveEvent.html │ │ │ │ │ │ ├── EvolveInternal.html │ │ │ │ │ │ ├── EvolveListener.html │ │ │ │ │ │ ├── EvolveStats.html │ │ │ │ │ │ ├── IncompatibleClassException.html │ │ │ │ │ │ ├── Mutation.html │ │ │ │ │ │ ├── Mutations.html │ │ │ │ │ │ ├── Renamer.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── Conversion.html │ │ │ │ │ │ │ ├── Converter.html │ │ │ │ │ │ │ ├── DeletedClassException.html │ │ │ │ │ │ │ ├── Deleter.html │ │ │ │ │ │ │ ├── EntityConverter.html │ │ │ │ │ │ │ ├── EvolveConfig.html │ │ │ │ │ │ │ ├── EvolveConfigBeanInfo.html │ │ │ │ │ │ │ ├── EvolveEvent.html │ │ │ │ │ │ │ ├── EvolveInternal.html │ │ │ │ │ │ │ ├── EvolveListener.html │ │ │ │ │ │ │ ├── EvolveStats.html │ │ │ │ │ │ │ ├── IncompatibleClassException.html │ │ │ │ │ │ │ ├── Mutation.html │ │ │ │ │ │ │ ├── Mutations.html │ │ │ │ │ │ │ └── Renamer.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── model │ │ │ │ │ │ ├── AnnotationModel.html │ │ │ │ │ │ ├── ClassEnhancer.html │ │ │ │ │ │ ├── ClassMetadata.html │ │ │ │ │ │ ├── DeleteAction.html │ │ │ │ │ │ ├── Entity.html │ │ │ │ │ │ ├── EntityMetadata.html │ │ │ │ │ │ ├── EntityModel.html │ │ │ │ │ │ ├── FieldMetadata.html │ │ │ │ │ │ ├── KeyField.html │ │ │ │ │ │ ├── ModelInternal.html │ │ │ │ │ │ ├── NotPersistent.html │ │ │ │ │ │ ├── NotTransient.html │ │ │ │ │ │ ├── Persistent.html │ │ │ │ │ │ ├── PersistentProxy.html │ │ │ │ │ │ ├── PrimaryKey.html │ │ │ │ │ │ ├── PrimaryKeyMetadata.html │ │ │ │ │ │ ├── Relationship.html │ │ │ │ │ │ ├── SecondaryKey.html │ │ │ │ │ │ ├── SecondaryKeyMetadata.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AnnotationModel.html │ │ │ │ │ │ │ ├── ClassEnhancer.html │ │ │ │ │ │ │ ├── ClassMetadata.html │ │ │ │ │ │ │ ├── DeleteAction.html │ │ │ │ │ │ │ ├── Entity.html │ │ │ │ │ │ │ ├── EntityMetadata.html │ │ │ │ │ │ │ ├── EntityModel.html │ │ │ │ │ │ │ ├── FieldMetadata.html │ │ │ │ │ │ │ ├── KeyField.html │ │ │ │ │ │ │ ├── ModelInternal.html │ │ │ │ │ │ │ ├── NotPersistent.html │ │ │ │ │ │ │ ├── NotTransient.html │ │ │ │ │ │ │ ├── Persistent.html │ │ │ │ │ │ │ ├── PersistentProxy.html │ │ │ │ │ │ │ ├── PrimaryKey.html │ │ │ │ │ │ │ ├── PrimaryKeyMetadata.html │ │ │ │ │ │ │ ├── Relationship.html │ │ │ │ │ │ │ ├── SecondaryKey.html │ │ │ │ │ │ │ └── SecondaryKeyMetadata.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ └── raw │ │ │ │ │ │ ├── RawField.html │ │ │ │ │ │ ├── RawObject.html │ │ │ │ │ │ ├── RawStore.html │ │ │ │ │ │ ├── RawType.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── RawField.html │ │ │ │ │ │ ├── RawObject.html │ │ │ │ │ │ ├── RawStore.html │ │ │ │ │ │ └── RawType.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ └── util │ │ │ │ │ ├── ClassResolver.Stream.html │ │ │ │ │ ├── ClassResolver.html │ │ │ │ │ ├── ConfigBeanInfoBase.html │ │ │ │ │ ├── ErrorBuffer.html │ │ │ │ │ ├── ExceptionUnwrapper.html │ │ │ │ │ ├── ExceptionWrapper.html │ │ │ │ │ ├── FastInputStream.html │ │ │ │ │ ├── FastOutputStream.html │ │ │ │ │ ├── IOExceptionWrapper.html │ │ │ │ │ ├── PackedInteger.html │ │ │ │ │ ├── RuntimeExceptionWrapper.html │ │ │ │ │ ├── UtfOps.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── ClassResolver.Stream.html │ │ │ │ │ ├── ClassResolver.html │ │ │ │ │ ├── ConfigBeanInfoBase.html │ │ │ │ │ ├── ErrorBuffer.html │ │ │ │ │ ├── ExceptionUnwrapper.html │ │ │ │ │ ├── ExceptionWrapper.html │ │ │ │ │ ├── FastInputStream.html │ │ │ │ │ ├── FastOutputStream.html │ │ │ │ │ ├── IOExceptionWrapper.html │ │ │ │ │ ├── PackedInteger.html │ │ │ │ │ ├── RuntimeExceptionWrapper.html │ │ │ │ │ └── UtfOps.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── resources │ │ │ │ └── inherit.gif │ │ │ ├── serialized-form.html │ │ │ └── style.css │ │ ├── license │ │ │ └── license_db.html │ │ ├── porting │ │ │ ├── BDB-Porting-Guide.pdf │ │ │ ├── audience.html │ │ │ ├── buildtarget.html │ │ │ ├── certport.html │ │ │ ├── gettingStarted.css │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ ├── layout.html │ │ │ ├── modifytest.html │ │ │ ├── modscope.html │ │ │ ├── moreinfo.html │ │ │ ├── newbinary.html │ │ │ ├── portprocess.html │ │ │ ├── preface.html │ │ │ ├── sourceintegrate.html │ │ │ ├── testport.html │ │ │ ├── testreview.html │ │ │ └── testrun.html │ │ ├── programmer_reference │ │ │ ├── BDB_Prog_Reference.pdf │ │ │ ├── am.html │ │ │ ├── am_close.html │ │ │ ├── am_conf.html │ │ │ ├── am_conf_logrec.html │ │ │ ├── am_conf_select.html │ │ │ ├── am_cursor.html │ │ │ ├── am_delete.html │ │ │ ├── am_foreign.html │ │ │ ├── am_get.html │ │ │ ├── am_misc.html │ │ │ ├── am_misc_bulk.html │ │ │ ├── am_misc_db_sql.html │ │ │ ├── am_misc_dbsizes.html │ │ │ ├── am_misc_diskspace.html │ │ │ ├── am_misc_error.html │ │ │ ├── am_misc_faq.html │ │ │ ├── am_misc_partial.html │ │ │ ├── am_misc_perm.html │ │ │ ├── am_misc_stability.html │ │ │ ├── am_misc_struct.html │ │ │ ├── am_misc_tune.html │ │ │ ├── am_opensub.html │ │ │ ├── am_partition.html │ │ │ ├── am_put.html │ │ │ ├── am_second.html │ │ │ ├── am_stat.html │ │ │ ├── am_sync.html │ │ │ ├── am_truncate.html │ │ │ ├── am_upgrade.html │ │ │ ├── am_verify.html │ │ │ ├── apprec.html │ │ │ ├── apprec_auto.html │ │ │ ├── apprec_config.html │ │ │ ├── apprec_def.html │ │ │ ├── arch.html │ │ │ ├── arch_apis.html │ │ │ ├── arch_bigpic.gif │ │ │ ├── arch_progmodel.html │ │ │ ├── arch_script.html │ │ │ ├── arch_smallpic.gif │ │ │ ├── arch_utilities.html │ │ │ ├── bdb_usenix.pdf │ │ │ ├── bt_conf.html │ │ │ ├── cam.html │ │ │ ├── cam_app.html │ │ │ ├── cam_fail.html │ │ │ ├── ch13s02.html │ │ │ ├── csharp.html │ │ │ ├── dumpload.html │ │ │ ├── dumpload_format.html │ │ │ ├── dumpload_text.html │ │ │ ├── embedded.html │ │ │ ├── env.html │ │ │ ├── env_create.html │ │ │ ├── env_db_config.html │ │ │ ├── env_encrypt.html │ │ │ ├── env_error.html │ │ │ ├── env_faq.html │ │ │ ├── env_naming.html │ │ │ ├── env_open.html │ │ │ ├── env_region.html │ │ │ ├── env_remote.html │ │ │ ├── env_security.html │ │ │ ├── env_size.html │ │ │ ├── ext.html │ │ │ ├── ext_perl.html │ │ │ ├── ext_php.html │ │ │ ├── general_am_conf.html │ │ │ ├── gettingStarted.css │ │ │ ├── group_membership.html │ │ │ ├── hash_conf.html │ │ │ ├── hash_usenix.pdf │ │ │ ├── heap_conf.html │ │ │ ├── index.html │ │ │ ├── intro.html │ │ │ ├── intro_dbis.html │ │ │ ├── intro_dbisnot.html │ │ │ ├── intro_distrib.html │ │ │ ├── intro_need.html │ │ │ ├── intro_products.html │ │ │ ├── intro_terrain.html │ │ │ ├── intro_what.html │ │ │ ├── intro_where.html │ │ │ ├── java.html │ │ │ ├── java_compat.html │ │ │ ├── java_faq.html │ │ │ ├── java_program.html │ │ │ ├── libtp_usenix.pdf │ │ │ ├── lock.html │ │ │ ├── lock_am_conv.html │ │ │ ├── lock_cam_conv.html │ │ │ ├── lock_config.html │ │ │ ├── lock_dead.html │ │ │ ├── lock_deaddbg.html │ │ │ ├── lock_max.html │ │ │ ├── lock_nondb.html │ │ │ ├── lock_notxn.html │ │ │ ├── lock_page.html │ │ │ ├── lock_stdmode.html │ │ │ ├── lock_timeout.html │ │ │ ├── lock_twopl.html │ │ │ ├── log.html │ │ │ ├── log_config.html │ │ │ ├── log_limits.html │ │ │ ├── magic.s5.be.txt │ │ │ ├── magic.s5.le.txt │ │ │ ├── magic.txt │ │ │ ├── moreinfo.html │ │ │ ├── mp.html │ │ │ ├── mp_config.html │ │ │ ├── mp_warm.html │ │ │ ├── preface.html │ │ │ ├── program.html │ │ │ ├── program_cache.html │ │ │ ├── program_compatible.html │ │ │ ├── program_copy.html │ │ │ ├── program_environ.html │ │ │ ├── program_errorret.html │ │ │ ├── program_faq.html │ │ │ ├── program_mt.html │ │ │ ├── program_namespace.html │ │ │ ├── program_perfmon.html │ │ │ ├── program_ram.html │ │ │ ├── program_runtime.html │ │ │ ├── program_scope.html │ │ │ ├── refs.html │ │ │ ├── rep.html │ │ │ ├── rep_app.html │ │ │ ├── rep_base_meth.html │ │ │ ├── rep_bulk.html │ │ │ ├── rep_clock_skew.html │ │ │ ├── rep_comm.html │ │ │ ├── rep_elect.html │ │ │ ├── rep_ex.html │ │ │ ├── rep_ex_chan.html │ │ │ ├── rep_ex_comm.html │ │ │ ├── rep_ex_rq.html │ │ │ ├── rep_faq.html │ │ │ ├── rep_filename.html │ │ │ ├── rep_id.html │ │ │ ├── rep_init.html │ │ │ ├── rep_lease.html │ │ │ ├── rep_mastersync.html │ │ │ ├── rep_mgr_ack.html │ │ │ ├── rep_mgr_meth.html │ │ │ ├── rep_mgrmulti.html │ │ │ ├── rep_newsite.html │ │ │ ├── rep_partition.html │ │ │ ├── rep_pri.html │ │ │ ├── rep_replicate.html │ │ │ ├── rep_ryw.html │ │ │ ├── rep_trans.html │ │ │ ├── rep_twosite.html │ │ │ ├── repmgr_channels.html │ │ │ ├── rq_conf.html │ │ │ ├── second.javas │ │ │ ├── sequence.html │ │ │ ├── solaris.txt │ │ │ ├── stl.html │ │ │ ├── stl_complex_rw.html │ │ │ ├── stl_container_specific.html │ │ │ ├── stl_db_advanced_usage.html │ │ │ ├── stl_db_usage.html │ │ │ ├── stl_efficienct_use.html │ │ │ ├── stl_examples.html │ │ │ ├── stl_known_issues.html │ │ │ ├── stl_memory_mgmt.html │ │ │ ├── stl_misc.html │ │ │ ├── stl_mt_usage.html │ │ │ ├── stl_persistence.html │ │ │ ├── stl_primitive_rw.html │ │ │ ├── stl_txn_usage.html │ │ │ ├── stl_usecase.html │ │ │ ├── tcl.html │ │ │ ├── tcl_error.html │ │ │ ├── tcl_faq.html │ │ │ ├── tcl_program.html │ │ │ ├── tcl_using.html │ │ │ ├── transapp.cs │ │ │ ├── transapp.html │ │ │ ├── transapp_admin.html │ │ │ ├── transapp_app.html │ │ │ ├── transapp_archival.html │ │ │ ├── transapp_atomicity.html │ │ │ ├── transapp_checkpoint.html │ │ │ ├── transapp_cursor.html │ │ │ ├── transapp_data_open.html │ │ │ ├── transapp_deadlock.html │ │ │ ├── transapp_env_open.html │ │ │ ├── transapp_fail.html │ │ │ ├── transapp_faq.html │ │ │ ├── transapp_filesys.html │ │ │ ├── transapp_hotfail.html │ │ │ ├── transapp_inc.html │ │ │ ├── transapp_journal.html │ │ │ ├── transapp_logfile.html │ │ │ ├── transapp_nested.html │ │ │ ├── transapp_put.html │ │ │ ├── transapp_read.html │ │ │ ├── transapp_reclimit.html │ │ │ ├── transapp_recovery.html │ │ │ ├── transapp_term.html │ │ │ ├── transapp_throughput.html │ │ │ ├── transapp_tune.html │ │ │ ├── transapp_why.html │ │ │ ├── txn.html │ │ │ ├── txn_config.html │ │ │ ├── txn_limits.html │ │ │ ├── witold.html │ │ │ ├── writetest.cs │ │ │ ├── xa.html │ │ │ ├── xa_build.html │ │ │ ├── xa_faq.html │ │ │ ├── xa_xa_config.html │ │ │ ├── xa_xa_intro.html │ │ │ └── xa_xa_restrict.html │ │ └── upgrading │ │ │ ├── BDB_Upgrading.pdf │ │ │ ├── changelog_4_0_14.html │ │ │ ├── changelog_4_1_24.html │ │ │ ├── changelog_4_1_25.html │ │ │ ├── changelog_4_2_52.html │ │ │ ├── changelog_4_3_29.html │ │ │ ├── changelog_4_4_16.html │ │ │ ├── changelog_4_4_20.html │ │ │ ├── changelog_4_5_20.html │ │ │ ├── changelog_4_6.html │ │ │ ├── changelog_4_7.html │ │ │ ├── gettingStarted.css │ │ │ ├── index.html │ │ │ ├── introduction.html │ │ │ ├── moreinfo.html │ │ │ ├── preface.html │ │ │ ├── upgrade_2_0_convert.html │ │ │ ├── upgrade_2_0_disk.html │ │ │ ├── upgrade_2_0_system.html │ │ │ ├── upgrade_2_0_toc.html │ │ │ ├── upgrade_3_0_close.html │ │ │ ├── upgrade_3_0_cxx.html │ │ │ ├── upgrade_3_0_db.html │ │ │ ├── upgrade_3_0_db_cxx.html │ │ │ ├── upgrade_3_0_dbenv.html │ │ │ ├── upgrade_3_0_dbenv_cxx.html │ │ │ ├── upgrade_3_0_dbinfo.html │ │ │ ├── upgrade_3_0_disk.html │ │ │ ├── upgrade_3_0_eacces.html │ │ │ ├── upgrade_3_0_eagain.html │ │ │ ├── upgrade_3_0_envopen.html │ │ │ ├── upgrade_3_0_func.html │ │ │ ├── upgrade_3_0_java.html │ │ │ ├── upgrade_3_0_join.html │ │ │ ├── upgrade_3_0_jump_set.html │ │ │ ├── upgrade_3_0_lock_detect.html │ │ │ ├── upgrade_3_0_lock_notheld.html │ │ │ ├── upgrade_3_0_lock_put.html │ │ │ ├── upgrade_3_0_lock_stat.html │ │ │ ├── upgrade_3_0_log_register.html │ │ │ ├── upgrade_3_0_log_stat.html │ │ │ ├── upgrade_3_0_memp_stat.html │ │ │ ├── upgrade_3_0_open.html │ │ │ ├── upgrade_3_0_rmw.html │ │ │ ├── upgrade_3_0_stat.html │ │ │ ├── upgrade_3_0_toc.html │ │ │ ├── upgrade_3_0_txn_begin.html │ │ │ ├── upgrade_3_0_txn_commit.html │ │ │ ├── upgrade_3_0_txn_stat.html │ │ │ ├── upgrade_3_0_value_set.html │ │ │ ├── upgrade_3_0_xa.html │ │ │ ├── upgrade_3_1_btstat.html │ │ │ ├── upgrade_3_1_config.html │ │ │ ├── upgrade_3_1_disk.html │ │ │ ├── upgrade_3_1_dup.html │ │ │ ├── upgrade_3_1_env.html │ │ │ ├── upgrade_3_1_log_register.html │ │ │ ├── upgrade_3_1_logalloc.html │ │ │ ├── upgrade_3_1_memp_register.html │ │ │ ├── upgrade_3_1_put.html │ │ │ ├── upgrade_3_1_set_feedback.html │ │ │ ├── upgrade_3_1_set_paniccall.html │ │ │ ├── upgrade_3_1_set_tx_recover.html │ │ │ ├── upgrade_3_1_sysmem.html │ │ │ ├── upgrade_3_1_tcl.html │ │ │ ├── upgrade_3_1_tmp.html │ │ │ ├── upgrade_3_1_toc.html │ │ │ ├── upgrade_3_1_txn_check.html │ │ │ ├── upgrade_3_2_callback.html │ │ │ ├── upgrade_3_2_db_dump.html │ │ │ ├── upgrade_3_2_disk.html │ │ │ ├── upgrade_3_2_handle.html │ │ │ ├── upgrade_3_2_incomplete.html │ │ │ ├── upgrade_3_2_mutexlock.html │ │ │ ├── upgrade_3_2_notfound.html │ │ │ ├── upgrade_3_2_renumber.html │ │ │ ├── upgrade_3_2_set_flags.html │ │ │ ├── upgrade_3_2_toc.html │ │ │ ├── upgrade_3_2_tx_recover.html │ │ │ ├── upgrade_3_3_alloc.html │ │ │ ├── upgrade_3_3_bigfile.html │ │ │ ├── upgrade_3_3_conflict.html │ │ │ ├── upgrade_3_3_disk.html │ │ │ ├── upgrade_3_3_getswap.html │ │ │ ├── upgrade_3_3_gettype.html │ │ │ ├── upgrade_3_3_memp_fget.html │ │ │ ├── upgrade_3_3_rpc.html │ │ │ ├── upgrade_3_3_shared.html │ │ │ ├── upgrade_3_3_toc.html │ │ │ ├── upgrade_3_3_txn_prepare.html │ │ │ ├── upgrade_4_0_asr.html │ │ │ ├── upgrade_4_0_cxx.html │ │ │ ├── upgrade_4_0_deadlock.html │ │ │ ├── upgrade_4_0_disk.html │ │ │ ├── upgrade_4_0_env.html │ │ │ ├── upgrade_4_0_java.html │ │ │ ├── upgrade_4_0_lock.html │ │ │ ├── upgrade_4_0_lock_id_free.html │ │ │ ├── upgrade_4_0_log.html │ │ │ ├── upgrade_4_0_mp.html │ │ │ ├── upgrade_4_0_rpc.html │ │ │ ├── upgrade_4_0_set_lk_max.html │ │ │ ├── upgrade_4_0_toc.html │ │ │ ├── upgrade_4_0_txn.html │ │ │ ├── upgrade_4_1_app_dispatch.html │ │ │ ├── upgrade_4_1_checkpoint.html │ │ │ ├── upgrade_4_1_cxx.html │ │ │ ├── upgrade_4_1_disk.html │ │ │ ├── upgrade_4_1_excl.html │ │ │ ├── upgrade_4_1_fop.html │ │ │ ├── upgrade_4_1_hash_nelem.html │ │ │ ├── upgrade_4_1_incomplete.html │ │ │ ├── upgrade_4_1_java.html │ │ │ ├── upgrade_4_1_log_register.html │ │ │ ├── upgrade_4_1_log_stat.html │ │ │ ├── upgrade_4_1_memp_sync.html │ │ │ ├── upgrade_4_1_toc.html │ │ │ ├── upgrade_4_2_cksum.html │ │ │ ├── upgrade_4_2_client.html │ │ │ ├── upgrade_4_2_del.html │ │ │ ├── upgrade_4_2_disk.html │ │ │ ├── upgrade_4_2_java.html │ │ │ ├── upgrade_4_2_lockng.html │ │ │ ├── upgrade_4_2_nosync.html │ │ │ ├── upgrade_4_2_priority.html │ │ │ ├── upgrade_4_2_queue.html │ │ │ ├── upgrade_4_2_repinit.html │ │ │ ├── upgrade_4_2_tcl.html │ │ │ ├── upgrade_4_2_toc.html │ │ │ ├── upgrade_4_2_verify.html │ │ │ ├── upgrade_4_3_cput.html │ │ │ ├── upgrade_4_3_disk.html │ │ │ ├── upgrade_4_3_enomem.html │ │ │ ├── upgrade_4_3_err.html │ │ │ ├── upgrade_4_3_fileopen.html │ │ │ ├── upgrade_4_3_java.html │ │ │ ├── upgrade_4_3_log.html │ │ │ ├── upgrade_4_3_repl.html │ │ │ ├── upgrade_4_3_rtc.html │ │ │ ├── upgrade_4_3_stat.html │ │ │ ├── upgrade_4_3_toc.html │ │ │ ├── upgrade_4_3_verb.html │ │ │ ├── upgrade_4_4_autocommit.html │ │ │ ├── upgrade_4_4_clear.html │ │ │ ├── upgrade_4_4_disk.html │ │ │ ├── upgrade_4_4_isolation.html │ │ │ ├── upgrade_4_4_joinenv.html │ │ │ ├── upgrade_4_4_lockstat.html │ │ │ ├── upgrade_4_4_mutex.html │ │ │ ├── upgrade_4_4_toc.html │ │ │ ├── upgrade_4_5_alive.html │ │ │ ├── upgrade_4_5_applog.html │ │ │ ├── upgrade_4_5_collect.html │ │ │ ├── upgrade_4_5_config.html │ │ │ ├── upgrade_4_5_deprecate.html │ │ │ ├── upgrade_4_5_disk.html │ │ │ ├── upgrade_4_5_elect.html │ │ │ ├── upgrade_4_5_memp.html │ │ │ ├── upgrade_4_5_pagesize.html │ │ │ ├── upgrade_4_5_paniccall.html │ │ │ ├── upgrade_4_5_rep_event.html │ │ │ ├── upgrade_4_5_rep_set.html │ │ │ ├── upgrade_4_5_source.html │ │ │ ├── upgrade_4_5_toc.html │ │ │ ├── upgrade_4_6_cursor.html │ │ │ ├── upgrade_4_6_disk.html │ │ │ ├── upgrade_4_6_event.html │ │ │ ├── upgrade_4_6_full_election.html │ │ │ ├── upgrade_4_6_memp_fput.html │ │ │ ├── upgrade_4_6_memp_fset.html │ │ │ ├── upgrade_4_6_toc.html │ │ │ ├── upgrade_4_6_verb.html │ │ │ ├── upgrade_4_6_verbose.html │ │ │ ├── upgrade_4_6_win.html │ │ │ ├── upgrade_4_7_disk.html │ │ │ ├── upgrade_4_7_interdir.html │ │ │ ├── upgrade_4_7_log.html │ │ │ ├── upgrade_4_7_repapi.html │ │ │ ├── upgrade_4_7_rtc.html │ │ │ ├── upgrade_4_7_tcl.html │ │ │ ├── upgrade_4_7_toc.html │ │ │ └── upgrade_process.html │ ├── examples │ │ ├── c │ │ │ ├── README │ │ │ ├── csv │ │ │ │ ├── DbRecord.c │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── code.c │ │ │ │ ├── csv.h │ │ │ │ ├── csv_extern.h │ │ │ │ ├── db.c │ │ │ │ ├── load.c │ │ │ │ ├── load_main.c │ │ │ │ ├── query.c │ │ │ │ ├── query_main.c │ │ │ │ ├── sample.csv │ │ │ │ ├── sample.desc │ │ │ │ └── util.c │ │ │ ├── ex_access.c │ │ │ ├── ex_apprec │ │ │ │ ├── auto_rebuild │ │ │ │ ├── ex_apprec.c │ │ │ │ ├── ex_apprec.h │ │ │ │ ├── ex_apprec.src │ │ │ │ ├── ex_apprec_auto.c │ │ │ │ ├── ex_apprec_auto.h │ │ │ │ ├── ex_apprec_autop.c │ │ │ │ ├── ex_apprec_rec.c │ │ │ │ └── ex_apprec_template │ │ │ ├── ex_btrec.c │ │ │ ├── ex_bulk.c │ │ │ ├── ex_env.c │ │ │ ├── ex_heap.c │ │ │ ├── ex_lock.c │ │ │ ├── ex_mpool.c │ │ │ ├── ex_rep │ │ │ │ ├── README │ │ │ │ ├── base │ │ │ │ │ ├── rep_base.c │ │ │ │ │ ├── rep_base.h │ │ │ │ │ ├── rep_msg.c │ │ │ │ │ └── rep_net.c │ │ │ │ ├── common │ │ │ │ │ ├── rep_common.c │ │ │ │ │ └── rep_common.h │ │ │ │ └── mgr │ │ │ │ │ └── rep_mgr.c │ │ │ ├── ex_rep_chan │ │ │ │ ├── rep_chan.c │ │ │ │ ├── rep_chan.h │ │ │ │ └── rep_chan_util.c │ │ │ ├── ex_rep_gsg │ │ │ │ ├── rep_mgr_gsg.c │ │ │ │ └── simple_txn.c │ │ │ ├── ex_sequence.c │ │ │ ├── ex_stream.c │ │ │ ├── ex_thread.c │ │ │ ├── ex_tpcb.c │ │ │ ├── getting_started │ │ │ │ ├── example_database_load.c │ │ │ │ ├── example_database_read.c │ │ │ │ ├── gettingstarted_common.c │ │ │ │ ├── gettingstarted_common.h │ │ │ │ ├── inventory.txt │ │ │ │ └── vendors.txt │ │ │ └── txn_guide │ │ │ │ ├── txn_guide.c │ │ │ │ └── txn_guide_inmemory.c │ │ ├── csharp │ │ │ ├── excs_access │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_access.cs │ │ │ │ └── excs_access.csproj │ │ │ ├── excs_btrec │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_btrec.cs │ │ │ │ └── excs_btrec.csproj │ │ │ ├── excs_bulk │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_bulk.cs │ │ │ │ └── excs_bulk.csproj │ │ │ ├── excs_env │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_env.cs │ │ │ │ └── excs_env.csproj │ │ │ ├── excs_getting_started │ │ │ │ ├── DatabaseExample.cs │ │ │ │ ├── DatabaseLoader.cs │ │ │ │ ├── DatabaseReader.cs │ │ │ │ ├── Inventory.cs │ │ │ │ ├── MyDbs.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Vendor.cs │ │ │ │ ├── excs_getting_started.csproj │ │ │ │ ├── inventory.txt │ │ │ │ └── vendors.txt │ │ │ ├── excs_lock │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_lock.cs │ │ │ │ └── excs_lock.csproj │ │ │ ├── excs_repquote │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RepConfig.cs │ │ │ │ ├── RepQuoteEnvironment.cs │ │ │ │ ├── RepQuoteExample.cs │ │ │ │ └── excs_repquote.csproj │ │ │ ├── excs_sequence │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_sequence.cs │ │ │ │ └── excs_sequence.csproj │ │ │ └── excs_txn │ │ │ │ ├── PayloadData.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── excs_txn.cs │ │ │ │ └── excs_txn.csproj │ │ ├── cxx │ │ │ ├── AccessExample.cpp │ │ │ ├── BtRecExample.cpp │ │ │ ├── EnvExample.cpp │ │ │ ├── LockExample.cpp │ │ │ ├── MpoolExample.cpp │ │ │ ├── SequenceExample.cpp │ │ │ ├── TpcbExample.cpp │ │ │ ├── excxx_repquote │ │ │ │ ├── RepConfigInfo.cpp │ │ │ │ ├── RepConfigInfo.h │ │ │ │ ├── RepQuoteExample.cpp │ │ │ │ └── dbc_auto.h │ │ │ ├── excxx_repquote_gsg │ │ │ │ ├── RepConfigInfo.h │ │ │ │ ├── RepMgrGSG.cpp │ │ │ │ ├── SimpleConfigInfo.h │ │ │ │ └── SimpleTxn.cpp │ │ │ ├── getting_started │ │ │ │ ├── MyDb.cpp │ │ │ │ ├── MyDb.hpp │ │ │ │ ├── excxx_example_database_load.cpp │ │ │ │ ├── excxx_example_database_read.cpp │ │ │ │ ├── gettingStartedCommon.hpp │ │ │ │ ├── inventory.txt │ │ │ │ └── vendors.txt │ │ │ ├── txn_guide │ │ │ │ ├── TxnGuide.cpp │ │ │ │ └── TxnGuideInMemory.cpp │ │ │ └── wce_tpcb │ │ │ │ ├── Readme.txt │ │ │ │ ├── TpcbExample.cpp │ │ │ │ ├── TpcbExample.h │ │ │ │ ├── TpcbUI.cpp │ │ │ │ ├── newres.h │ │ │ │ ├── oracle_bdb.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── wce_tpcb.ico │ │ │ │ └── wce_tpcb.rc │ │ ├── java │ │ │ └── src │ │ │ │ ├── collections │ │ │ │ ├── access │ │ │ │ │ └── AccessExample.java │ │ │ │ ├── hello │ │ │ │ │ └── HelloDatabaseWorld.java │ │ │ │ └── ship │ │ │ │ │ ├── basic │ │ │ │ │ ├── PartData.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── ShipmentData.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── SupplierData.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ │ ├── entity │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── PartData.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── Shipment.java │ │ │ │ │ ├── ShipmentData.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── Supplier.java │ │ │ │ │ ├── SupplierData.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ │ ├── factory │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── Shipment.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── Supplier.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ │ ├── index │ │ │ │ │ ├── PartData.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── ShipmentData.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── SupplierData.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ │ ├── marshal │ │ │ │ │ ├── MarshalledEnt.java │ │ │ │ │ ├── MarshalledKey.java │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── Shipment.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── Supplier.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ │ ├── sentity │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── Shipment.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── Supplier.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ │ └── tuple │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── PartData.java │ │ │ │ │ ├── PartKey.java │ │ │ │ │ ├── Sample.java │ │ │ │ │ ├── SampleDatabase.java │ │ │ │ │ ├── SampleViews.java │ │ │ │ │ ├── Shipment.java │ │ │ │ │ ├── ShipmentData.java │ │ │ │ │ ├── ShipmentKey.java │ │ │ │ │ ├── Supplier.java │ │ │ │ │ ├── SupplierData.java │ │ │ │ │ ├── SupplierKey.java │ │ │ │ │ └── Weight.java │ │ │ │ ├── db │ │ │ │ ├── AccessExample.java │ │ │ │ ├── BtRecExample.java │ │ │ │ ├── BulkAccessExample.java │ │ │ │ ├── BulkAccessNIOExample.java │ │ │ │ ├── BulkExample.java │ │ │ │ ├── EnvExample.java │ │ │ │ ├── GettingStarted │ │ │ │ │ ├── ExampleDatabaseLoad.java │ │ │ │ │ ├── ExampleDatabaseRead.java │ │ │ │ │ ├── Inventory.java │ │ │ │ │ ├── InventoryBinding.java │ │ │ │ │ ├── ItemNameKeyCreator.java │ │ │ │ │ ├── MyDbs.java │ │ │ │ │ ├── Vendor.java │ │ │ │ │ ├── inventory.txt │ │ │ │ │ └── vendors.txt │ │ │ │ ├── LockExample.java │ │ │ │ ├── SequenceExample.java │ │ │ │ ├── TpcbExample.java │ │ │ │ ├── repquote │ │ │ │ │ ├── RepConfig.java │ │ │ │ │ ├── RepQuoteEnvironment.java │ │ │ │ │ ├── RepQuoteExample.java │ │ │ │ │ └── RepRemoteHost.java │ │ │ │ ├── repquote_gsg │ │ │ │ │ ├── RepConfig.java │ │ │ │ │ ├── RepQuoteEnvironment.java │ │ │ │ │ ├── RepQuoteExampleGSG.java │ │ │ │ │ ├── SimpleConfig.java │ │ │ │ │ └── SimpleTxn.java │ │ │ │ └── txn │ │ │ │ │ ├── DBWriter.java │ │ │ │ │ ├── PayloadData.java │ │ │ │ │ ├── TxnGuide.java │ │ │ │ │ └── TxnGuideInMemory.java │ │ │ │ └── persist │ │ │ │ ├── CustomKeyOrderExample.java │ │ │ │ ├── DplDump.java │ │ │ │ ├── EventExample.java │ │ │ │ ├── EventExampleDPL.java │ │ │ │ ├── PersonExample.java │ │ │ │ ├── gettingStarted │ │ │ │ ├── SimpleDA.java │ │ │ │ ├── SimpleEntityClass.java │ │ │ │ ├── SimpleStoreGet.java │ │ │ │ └── SimpleStorePut.java │ │ │ │ └── txn │ │ │ │ ├── PayloadDataEntity.java │ │ │ │ ├── StoreWriter.java │ │ │ │ └── TxnGuideDPL.java │ │ ├── sql │ │ │ ├── c │ │ │ │ ├── README │ │ │ │ ├── ex_sql_binding.c │ │ │ │ ├── ex_sql_fts3.c │ │ │ │ ├── ex_sql_index.c │ │ │ │ ├── ex_sql_load.c │ │ │ │ ├── ex_sql_multi_thread.c │ │ │ │ ├── ex_sql_query.c │ │ │ │ ├── ex_sql_rtree.c │ │ │ │ ├── ex_sql_savepoint.c │ │ │ │ ├── ex_sql_statement.c │ │ │ │ ├── ex_sql_transaction.c │ │ │ │ ├── ex_sql_utils.c │ │ │ │ └── ex_sql_utils.h │ │ │ ├── data │ │ │ │ ├── country.csv │ │ │ │ ├── sms.csv │ │ │ │ └── university.csv │ │ │ └── wce_sql │ │ │ │ ├── excxx_wce_sql.cpp │ │ │ │ ├── excxx_wce_sql.h │ │ │ │ ├── excxx_wce_sql.ico │ │ │ │ ├── excxx_wce_sqlDlg.cpp │ │ │ │ ├── excxx_wce_sqlDlg.h │ │ │ │ ├── excxx_wce_sqlppc.rc │ │ │ │ ├── excxx_wce_sqlppc.rc2 │ │ │ │ ├── resourceppc.h │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ └── stl │ │ │ ├── README │ │ │ ├── StlAccessExample.cpp │ │ │ ├── StlAdvancedFeatures.cpp │ │ │ ├── StlAdvancedFeatures.h │ │ │ ├── StlTpcbExample.cpp │ │ │ ├── StlTransactionGuideExample.cpp │ │ │ └── repquote │ │ │ ├── README │ │ │ ├── StlRepConfigInfo.cpp │ │ │ ├── StlRepConfigInfo.h │ │ │ └── StlRepQuoteExample.cpp │ ├── lang │ │ ├── csharp │ │ │ ├── doc │ │ │ │ ├── CsharpDoc.shfbproj │ │ │ │ └── libdb_dotnet48.XML │ │ │ ├── libdb_csharp │ │ │ │ ├── db.i │ │ │ │ └── db_csharp_wrap.c │ │ │ └── src │ │ │ │ ├── AckPolicy.cs │ │ │ │ ├── ActiveTransaction.cs │ │ │ │ ├── BTreeCursor.cs │ │ │ │ ├── BTreeDatabase.cs │ │ │ │ ├── BTreeDatabaseConfig.cs │ │ │ │ ├── BTreeStats.cs │ │ │ │ ├── BackupOptions.cs │ │ │ │ ├── BaseCursor.cs │ │ │ │ ├── BaseDatabase.cs │ │ │ │ ├── ByteOrder.cs │ │ │ │ ├── CacheInfo.cs │ │ │ │ ├── CachePriority.cs │ │ │ │ ├── CompactConfig.cs │ │ │ │ ├── CompactData.cs │ │ │ │ ├── Cursor.cs │ │ │ │ ├── CursorConfig.cs │ │ │ │ ├── Database.cs │ │ │ │ ├── DatabaseConfig.cs │ │ │ │ ├── DatabaseEntry.cs │ │ │ │ ├── DatabaseEnvironment.cs │ │ │ │ ├── DatabaseEnvironmentConfig.cs │ │ │ │ ├── DatabaseException.cs │ │ │ │ ├── DatabaseType.cs │ │ │ │ ├── DbChannel.cs │ │ │ │ ├── DbSite.cs │ │ │ │ ├── DbSiteConfig.cs │ │ │ │ ├── DbThreadID.cs │ │ │ │ ├── DeadlockPolicy.cs │ │ │ │ ├── Delegates.cs │ │ │ │ ├── Enums.cs │ │ │ │ ├── ErrorCodes.cs │ │ │ │ ├── HashCursor.cs │ │ │ │ ├── HashDatabase.cs │ │ │ │ ├── HashDatabaseConfig.cs │ │ │ │ ├── HashStats.cs │ │ │ │ ├── HeapDatabase.cs │ │ │ │ ├── HeapDatabaseConfig.cs │ │ │ │ ├── HeapRecordId.cs │ │ │ │ ├── HeapStats.cs │ │ │ │ ├── IBackup.cs │ │ │ │ ├── Internal │ │ │ │ ├── DB.cs │ │ │ │ ├── DBC.cs │ │ │ │ ├── DBT.cs │ │ │ │ ├── DBTYPE.cs │ │ │ │ ├── DB_CHANNEL.cs │ │ │ │ ├── DB_COMPACT.cs │ │ │ │ ├── DB_ENV.cs │ │ │ │ ├── DB_KEY_RANGE.cs │ │ │ │ ├── DB_LOCK.cs │ │ │ │ ├── DB_LOCKREQ.cs │ │ │ │ ├── DB_LSN.cs │ │ │ │ ├── DB_PREPLIST.cs │ │ │ │ ├── DB_REPMGR_SITE.cs │ │ │ │ ├── DB_SEQUENCE.cs │ │ │ │ ├── DB_SITE.cs │ │ │ │ ├── DB_TXN.cs │ │ │ │ ├── DB_TXN_TOKEN.cs │ │ │ │ ├── DbConstants.cs │ │ │ │ ├── Delegates.cs │ │ │ │ ├── StatStructs.cs │ │ │ │ ├── db_lockmode_t.cs │ │ │ │ ├── db_lockop_t.cs │ │ │ │ ├── db_recops.cs │ │ │ │ ├── libdb_csharp.cs │ │ │ │ └── libdb_csharpPINVOKE.cs │ │ │ │ ├── JoinCursor.cs │ │ │ │ ├── KeyRange.cs │ │ │ │ ├── LSN.cs │ │ │ │ ├── Lock.cs │ │ │ │ ├── LockDetectMode.cs │ │ │ │ ├── LockMode.cs │ │ │ │ ├── LockOperation.cs │ │ │ │ ├── LockRequest.cs │ │ │ │ ├── LockStats.cs │ │ │ │ ├── LockingConfig.cs │ │ │ │ ├── LockingInfo.cs │ │ │ │ ├── LogConfig.cs │ │ │ │ ├── LogStats.cs │ │ │ │ ├── LogVerifyConfig.cs │ │ │ │ ├── MPoolConfig.cs │ │ │ │ ├── MPoolFileStats.cs │ │ │ │ ├── MPoolStats.cs │ │ │ │ ├── MultipleDatabaseEntry.cs │ │ │ │ ├── MultipleKeyDatabaseEntry.cs │ │ │ │ ├── Mutex.cs │ │ │ │ ├── MutexConfig.cs │ │ │ │ ├── MutexStats.cs │ │ │ │ ├── PreparedTransaction.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── QueueDatabase.cs │ │ │ │ ├── QueueDatabaseConfig.cs │ │ │ │ ├── QueueStats.cs │ │ │ │ ├── RecnoCursor.cs │ │ │ │ ├── RecnoDatabase.cs │ │ │ │ ├── RecnoDatabaseConfig.cs │ │ │ │ ├── RecnoStats.cs │ │ │ │ ├── RepMgrSite.cs │ │ │ │ ├── RepMgrStats.cs │ │ │ │ ├── RepProcMsgResult.cs │ │ │ │ ├── ReplicationConfig.cs │ │ │ │ ├── ReplicationHostAddress.cs │ │ │ │ ├── ReplicationStats.cs │ │ │ │ ├── SecondaryBTreeDatabase.cs │ │ │ │ ├── SecondaryBTreeDatabaseConfig.cs │ │ │ │ ├── SecondaryCursor.cs │ │ │ │ ├── SecondaryDatabase.cs │ │ │ │ ├── SecondaryDatabaseConfig.cs │ │ │ │ ├── SecondaryHashDatabase.cs │ │ │ │ ├── SecondaryHashDatabaseConfig.cs │ │ │ │ ├── SecondaryQueueDatabase.cs │ │ │ │ ├── SecondaryQueueDatabaseConfig.cs │ │ │ │ ├── SecondaryRecnoDatabase.cs │ │ │ │ ├── SecondaryRecnoDatabaseConfig.cs │ │ │ │ ├── Sequence.cs │ │ │ │ ├── SequenceConfig.cs │ │ │ │ ├── SequenceStats.cs │ │ │ │ ├── Transaction.cs │ │ │ │ ├── TransactionConfig.cs │ │ │ │ ├── TransactionStats.cs │ │ │ │ ├── VerboseMessages.cs │ │ │ │ └── db_dotnet.csproj │ │ ├── cxx │ │ │ ├── cxx_channel.cpp │ │ │ ├── cxx_db.cpp │ │ │ ├── cxx_dbc.cpp │ │ │ ├── cxx_dbt.cpp │ │ │ ├── cxx_env.cpp │ │ │ ├── cxx_except.cpp │ │ │ ├── cxx_lock.cpp │ │ │ ├── cxx_logc.cpp │ │ │ ├── cxx_mpool.cpp │ │ │ ├── cxx_multi.cpp │ │ │ ├── cxx_rid.cpp │ │ │ ├── cxx_seq.cpp │ │ │ ├── cxx_site.cpp │ │ │ ├── cxx_txn.cpp │ │ │ └── stl │ │ │ │ ├── dbstl_base_iterator.h │ │ │ │ ├── dbstl_common.in │ │ │ │ ├── dbstl_container.cpp │ │ │ │ ├── dbstl_container.h │ │ │ │ ├── dbstl_dbc.h │ │ │ │ ├── dbstl_dbt.h │ │ │ │ ├── dbstl_element_ref.h │ │ │ │ ├── dbstl_exception.h │ │ │ │ ├── dbstl_inner_utility.h │ │ │ │ ├── dbstl_map.h │ │ │ │ ├── dbstl_resource_manager.cpp │ │ │ │ ├── dbstl_resource_manager.h │ │ │ │ ├── dbstl_set.h │ │ │ │ ├── dbstl_utility.h │ │ │ │ └── dbstl_vector.h │ │ ├── db185 │ │ │ ├── db185.c │ │ │ └── db185_int.in │ │ ├── dbm │ │ │ └── dbm.c │ │ ├── hsearch │ │ │ └── hsearch.c │ │ ├── java │ │ │ ├── doc │ │ │ │ └── style.css │ │ │ ├── ext │ │ │ │ └── com │ │ │ │ │ └── sleepycat │ │ │ │ │ └── persist │ │ │ │ │ └── model │ │ │ │ │ └── ClassEnhancerTask.java │ │ │ ├── jarManifestEntries │ │ │ ├── libdb_java │ │ │ │ ├── README │ │ │ │ ├── db.i │ │ │ │ ├── db_java.i │ │ │ │ ├── db_java_wrap.c │ │ │ │ ├── java-post.pl │ │ │ │ ├── java_callbacks.i │ │ │ │ ├── java_except.i │ │ │ │ ├── java_stat.i │ │ │ │ ├── java_stat_auto.c │ │ │ │ ├── java_typemaps.i │ │ │ │ └── java_util.i │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── sleepycat │ │ │ │ ├── asm │ │ │ │ ├── AnnotationVisitor.java │ │ │ │ ├── AnnotationWriter.java │ │ │ │ ├── Attribute.java │ │ │ │ ├── ByteVector.java │ │ │ │ ├── ClassReader.java │ │ │ │ ├── ClassVisitor.java │ │ │ │ ├── ClassWriter.java │ │ │ │ ├── Edge.java │ │ │ │ ├── FieldVisitor.java │ │ │ │ ├── FieldWriter.java │ │ │ │ ├── Frame.java │ │ │ │ ├── Handle.java │ │ │ │ ├── Handler.java │ │ │ │ ├── Item.java │ │ │ │ ├── Label.java │ │ │ │ ├── MethodVisitor.java │ │ │ │ ├── MethodWriter.java │ │ │ │ ├── Opcodes.java │ │ │ │ └── Type.java │ │ │ │ ├── bind │ │ │ │ ├── ByteArrayBinding.java │ │ │ │ ├── EntityBinding.java │ │ │ │ ├── EntryBinding.java │ │ │ │ ├── RecordNumberBinding.java │ │ │ │ ├── package.html │ │ │ │ ├── serial │ │ │ │ │ ├── ClassCatalog.java │ │ │ │ │ ├── SerialBase.java │ │ │ │ │ ├── SerialBinding.java │ │ │ │ │ ├── SerialInput.java │ │ │ │ │ ├── SerialOutput.java │ │ │ │ │ ├── SerialSerialBinding.java │ │ │ │ │ ├── SerialSerialKeyCreator.java │ │ │ │ │ ├── StoredClassCatalog.java │ │ │ │ │ ├── TupleSerialBinding.java │ │ │ │ │ ├── TupleSerialKeyCreator.java │ │ │ │ │ ├── TupleSerialMarshalledBinding.java │ │ │ │ │ ├── TupleSerialMarshalledKeyCreator.java │ │ │ │ │ └── package.html │ │ │ │ └── tuple │ │ │ │ │ ├── BigDecimalBinding.java │ │ │ │ │ ├── BigIntegerBinding.java │ │ │ │ │ ├── BooleanBinding.java │ │ │ │ │ ├── ByteBinding.java │ │ │ │ │ ├── CharacterBinding.java │ │ │ │ │ ├── DoubleBinding.java │ │ │ │ │ ├── FloatBinding.java │ │ │ │ │ ├── IntegerBinding.java │ │ │ │ │ ├── LongBinding.java │ │ │ │ │ ├── MarshalledTupleEntry.java │ │ │ │ │ ├── MarshalledTupleKeyEntity.java │ │ │ │ │ ├── PackedIntegerBinding.java │ │ │ │ │ ├── PackedLongBinding.java │ │ │ │ │ ├── ShortBinding.java │ │ │ │ │ ├── SortedBigDecimalBinding.java │ │ │ │ │ ├── SortedDoubleBinding.java │ │ │ │ │ ├── SortedFloatBinding.java │ │ │ │ │ ├── SortedPackedIntegerBinding.java │ │ │ │ │ ├── SortedPackedLongBinding.java │ │ │ │ │ ├── StringBinding.java │ │ │ │ │ ├── TupleBase.java │ │ │ │ │ ├── TupleBinding.java │ │ │ │ │ ├── TupleInput.java │ │ │ │ │ ├── TupleInputBinding.java │ │ │ │ │ ├── TupleMarshalledBinding.java │ │ │ │ │ ├── TupleOutput.java │ │ │ │ │ ├── TupleTupleBinding.java │ │ │ │ │ ├── TupleTupleKeyCreator.java │ │ │ │ │ ├── TupleTupleMarshalledBinding.java │ │ │ │ │ ├── TupleTupleMarshalledKeyCreator.java │ │ │ │ │ └── package.html │ │ │ │ ├── collections │ │ │ │ ├── BaseIterator.java │ │ │ │ ├── BlockIterator.java │ │ │ │ ├── CurrentTransaction.java │ │ │ │ ├── DataCursor.java │ │ │ │ ├── DataView.java │ │ │ │ ├── MapEntryParameter.java │ │ │ │ ├── MyRangeCursor.java │ │ │ │ ├── PrimaryKeyAssigner.java │ │ │ │ ├── StoredCollection.java │ │ │ │ ├── StoredCollections.java │ │ │ │ ├── StoredContainer.java │ │ │ │ ├── StoredEntrySet.java │ │ │ │ ├── StoredIterator.java │ │ │ │ ├── StoredKeySet.java │ │ │ │ ├── StoredList.java │ │ │ │ ├── StoredMap.java │ │ │ │ ├── StoredMapEntry.java │ │ │ │ ├── StoredSortedEntrySet.java │ │ │ │ ├── StoredSortedKeySet.java │ │ │ │ ├── StoredSortedMap.java │ │ │ │ ├── StoredSortedValueSet.java │ │ │ │ ├── StoredValueSet.java │ │ │ │ ├── TransactionRunner.java │ │ │ │ ├── TransactionWorker.java │ │ │ │ ├── TupleSerialFactory.java │ │ │ │ └── package.html │ │ │ │ ├── compat │ │ │ │ └── DbCompat.java │ │ │ │ ├── db │ │ │ │ ├── BackupHandler.java │ │ │ │ ├── BackupOptions.java │ │ │ │ ├── BtreeCompressor.java │ │ │ │ ├── BtreePrefixCalculator.java │ │ │ │ ├── BtreeStats.java │ │ │ │ ├── CacheFile.java │ │ │ │ ├── CacheFilePriority.java │ │ │ │ ├── CacheFileStats.java │ │ │ │ ├── CacheStats.java │ │ │ │ ├── CheckpointConfig.java │ │ │ │ ├── CompactConfig.java │ │ │ │ ├── CompactStats.java │ │ │ │ ├── Cursor.java │ │ │ │ ├── CursorConfig.java │ │ │ │ ├── Database.java │ │ │ │ ├── DatabaseConfig.java │ │ │ │ ├── DatabaseEntry.java │ │ │ │ ├── DatabaseException.java │ │ │ │ ├── DatabaseStats.java │ │ │ │ ├── DatabaseType.java │ │ │ │ ├── DeadlockException.java │ │ │ │ ├── Environment.java │ │ │ │ ├── EnvironmentConfig.java │ │ │ │ ├── ErrorHandler.java │ │ │ │ ├── EventHandler.java │ │ │ │ ├── EventHandlerAdapter.java │ │ │ │ ├── FeedbackHandler.java │ │ │ │ ├── ForeignKeyDeleteAction.java │ │ │ │ ├── ForeignKeyNullifier.java │ │ │ │ ├── ForeignMultiKeyNullifier.java │ │ │ │ ├── HashStats.java │ │ │ │ ├── Hasher.java │ │ │ │ ├── HeapFullException.java │ │ │ │ ├── HeapRecordId.java │ │ │ │ ├── HeapStats.java │ │ │ │ ├── JoinConfig.java │ │ │ │ ├── JoinCursor.java │ │ │ │ ├── KeyRange.java │ │ │ │ ├── Lock.java │ │ │ │ ├── LockDetectMode.java │ │ │ │ ├── LockMode.java │ │ │ │ ├── LockNotGrantedException.java │ │ │ │ ├── LockOperation.java │ │ │ │ ├── LockRequest.java │ │ │ │ ├── LockRequestMode.java │ │ │ │ ├── LockStats.java │ │ │ │ ├── LogCursor.java │ │ │ │ ├── LogRecordHandler.java │ │ │ │ ├── LogSequenceNumber.java │ │ │ │ ├── LogStats.java │ │ │ │ ├── LogVerifyConfig.java │ │ │ │ ├── MemoryException.java │ │ │ │ ├── MessageHandler.java │ │ │ │ ├── MultipleDataEntry.java │ │ │ │ ├── MultipleEntry.java │ │ │ │ ├── MultipleKeyDataEntry.java │ │ │ │ ├── MultipleKeyNIODataEntry.java │ │ │ │ ├── MultipleNIODataEntry.java │ │ │ │ ├── MultipleRecnoDataEntry.java │ │ │ │ ├── MultipleRecnoNIODataEntry.java │ │ │ │ ├── MutexStats.java │ │ │ │ ├── OperationStatus.java │ │ │ │ ├── PanicHandler.java │ │ │ │ ├── PartitionHandler.java │ │ │ │ ├── PreparedTransaction.java │ │ │ │ ├── QueueStats.java │ │ │ │ ├── RecordNumberAppender.java │ │ │ │ ├── RecoveryOperation.java │ │ │ │ ├── RegionResourceType.java │ │ │ │ ├── ReplicationChannel.java │ │ │ │ ├── ReplicationConfig.java │ │ │ │ ├── ReplicationDuplicateMasterException.java │ │ │ │ ├── ReplicationHandleDeadException.java │ │ │ │ ├── ReplicationHoldElectionException.java │ │ │ │ ├── ReplicationHostAddress.java │ │ │ │ ├── ReplicationJoinFailureException.java │ │ │ │ ├── ReplicationLeaseExpiredException.java │ │ │ │ ├── ReplicationLockoutException.java │ │ │ │ ├── ReplicationManagerAckPolicy.java │ │ │ │ ├── ReplicationManagerConnectionStatus.java │ │ │ │ ├── ReplicationManagerMessageDispatch.java │ │ │ │ ├── ReplicationManagerSite.java │ │ │ │ ├── ReplicationManagerSiteConfig.java │ │ │ │ ├── ReplicationManagerSiteInfo.java │ │ │ │ ├── ReplicationManagerStartPolicy.java │ │ │ │ ├── ReplicationManagerStats.java │ │ │ │ ├── ReplicationSiteUnavailableException.java │ │ │ │ ├── ReplicationStats.java │ │ │ │ ├── ReplicationStatus.java │ │ │ │ ├── ReplicationTimeoutType.java │ │ │ │ ├── ReplicationTransport.java │ │ │ │ ├── RunRecoveryException.java │ │ │ │ ├── SecondaryConfig.java │ │ │ │ ├── SecondaryCursor.java │ │ │ │ ├── SecondaryDatabase.java │ │ │ │ ├── SecondaryKeyCreator.java │ │ │ │ ├── SecondaryMultiKeyCreator.java │ │ │ │ ├── Sequence.java │ │ │ │ ├── SequenceConfig.java │ │ │ │ ├── SequenceStats.java │ │ │ │ ├── StatsConfig.java │ │ │ │ ├── Transaction.java │ │ │ │ ├── TransactionConfig.java │ │ │ │ ├── TransactionStats.java │ │ │ │ ├── TransactionStatus.java │ │ │ │ ├── VerboseConfig.java │ │ │ │ ├── VerifyConfig.java │ │ │ │ ├── VersionMismatchException.java │ │ │ │ ├── internal │ │ │ │ │ ├── Db.java │ │ │ │ │ ├── DbChannel.java │ │ │ │ │ ├── DbConstants.java │ │ │ │ │ ├── DbEnv.java │ │ │ │ │ ├── DbLock.java │ │ │ │ │ ├── DbLogc.java │ │ │ │ │ ├── DbMpoolFile.java │ │ │ │ │ ├── DbSequence.java │ │ │ │ │ ├── DbSite.java │ │ │ │ │ ├── DbTxn.java │ │ │ │ │ ├── DbUtil.java │ │ │ │ │ ├── Dbc.java │ │ │ │ │ ├── db_java.java │ │ │ │ │ └── db_javaJNI.java │ │ │ │ └── package.html │ │ │ │ ├── persist │ │ │ │ ├── BasicCursor.java │ │ │ │ ├── BasicIndex.java │ │ │ │ ├── BasicIterator.java │ │ │ │ ├── DataValueAdapter.java │ │ │ │ ├── DatabaseNamer.java │ │ │ │ ├── EntityCursor.java │ │ │ │ ├── EntityIndex.java │ │ │ │ ├── EntityJoin.java │ │ │ │ ├── EntityStore.java │ │ │ │ ├── EntityValueAdapter.java │ │ │ │ ├── ForwardCursor.java │ │ │ │ ├── IndexNotAvailableException.java │ │ │ │ ├── KeySelector.java │ │ │ │ ├── KeyValueAdapter.java │ │ │ │ ├── KeysIndex.java │ │ │ │ ├── PrimaryIndex.java │ │ │ │ ├── PrimaryKeyValueAdapter.java │ │ │ │ ├── SecondaryIndex.java │ │ │ │ ├── StoreConfig.java │ │ │ │ ├── StoreConfigBeanInfo.java │ │ │ │ ├── StoreExistsException.java │ │ │ │ ├── StoreNotFoundException.java │ │ │ │ ├── SubIndex.java │ │ │ │ ├── SubIndexCursor.java │ │ │ │ ├── ValueAdapter.java │ │ │ │ ├── evolve │ │ │ │ │ ├── Conversion.java │ │ │ │ │ ├── Converter.java │ │ │ │ │ ├── DeletedClassException.java │ │ │ │ │ ├── Deleter.java │ │ │ │ │ ├── EntityConverter.java │ │ │ │ │ ├── EvolveConfig.java │ │ │ │ │ ├── EvolveConfigBeanInfo.java │ │ │ │ │ ├── EvolveEvent.java │ │ │ │ │ ├── EvolveInternal.java │ │ │ │ │ ├── EvolveListener.java │ │ │ │ │ ├── EvolveStats.java │ │ │ │ │ ├── IncompatibleClassException.java │ │ │ │ │ ├── Mutation.java │ │ │ │ │ ├── Mutations.java │ │ │ │ │ ├── Renamer.java │ │ │ │ │ └── package.html │ │ │ │ ├── impl │ │ │ │ │ ├── AbstractInput.java │ │ │ │ │ ├── Accessor.java │ │ │ │ │ ├── Catalog.java │ │ │ │ │ ├── CollectionProxy.java │ │ │ │ │ ├── ComparatorCatalog.java │ │ │ │ │ ├── ComplexFormat.java │ │ │ │ │ ├── CompositeKeyFormat.java │ │ │ │ │ ├── ConverterReader.java │ │ │ │ │ ├── Enhanced.java │ │ │ │ │ ├── EnhancedAccessor.java │ │ │ │ │ ├── EntityInput.java │ │ │ │ │ ├── EntityOutput.java │ │ │ │ │ ├── EnumFormat.java │ │ │ │ │ ├── Evolver.java │ │ │ │ │ ├── FieldInfo.java │ │ │ │ │ ├── Format.java │ │ │ │ │ ├── KeyLocation.java │ │ │ │ │ ├── MapProxy.java │ │ │ │ │ ├── NonPersistentFormat.java │ │ │ │ │ ├── ObjectArrayFormat.java │ │ │ │ │ ├── PersistCatalog.java │ │ │ │ │ ├── PersistComparator.java │ │ │ │ │ ├── PersistEntityBinding.java │ │ │ │ │ ├── PersistKeyAssigner.java │ │ │ │ │ ├── PersistKeyBinding.java │ │ │ │ │ ├── PersistKeyCreator.java │ │ │ │ │ ├── PrimitiveArrayFormat.java │ │ │ │ │ ├── ProxiedFormat.java │ │ │ │ │ ├── RawAbstractInput.java │ │ │ │ │ ├── RawAccessor.java │ │ │ │ │ ├── RawArrayInput.java │ │ │ │ │ ├── RawComplexInput.java │ │ │ │ │ ├── RawSingleInput.java │ │ │ │ │ ├── ReadOnlyCatalog.java │ │ │ │ │ ├── Reader.java │ │ │ │ │ ├── RecordInput.java │ │ │ │ │ ├── RecordOutput.java │ │ │ │ │ ├── ReflectionAccessor.java │ │ │ │ │ ├── RefreshException.java │ │ │ │ │ ├── SimpleCatalog.java │ │ │ │ │ ├── SimpleFormat.java │ │ │ │ │ ├── Store.java │ │ │ │ │ ├── StoredModel.java │ │ │ │ │ ├── VisitedObjects.java │ │ │ │ │ └── WidenerInput.java │ │ │ │ ├── model │ │ │ │ │ ├── AnnotationModel.java │ │ │ │ │ ├── BytecodeEnhancer.java │ │ │ │ │ ├── ClassEnhancer.java │ │ │ │ │ ├── ClassMetadata.java │ │ │ │ │ ├── DeleteAction.java │ │ │ │ │ ├── Entity.java │ │ │ │ │ ├── EntityMetadata.java │ │ │ │ │ ├── EntityModel.java │ │ │ │ │ ├── FieldMetadata.java │ │ │ │ │ ├── KeyField.java │ │ │ │ │ ├── ModelInternal.java │ │ │ │ │ ├── NotPersistent.java │ │ │ │ │ ├── NotTransient.java │ │ │ │ │ ├── Persistent.java │ │ │ │ │ ├── PersistentProxy.java │ │ │ │ │ ├── PrimaryKey.java │ │ │ │ │ ├── PrimaryKeyMetadata.java │ │ │ │ │ ├── Relationship.java │ │ │ │ │ ├── SecondaryKey.java │ │ │ │ │ ├── SecondaryKeyMetadata.java │ │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ └── raw │ │ │ │ │ ├── RawField.java │ │ │ │ │ ├── RawObject.java │ │ │ │ │ ├── RawStore.java │ │ │ │ │ ├── RawType.java │ │ │ │ │ └── package.html │ │ │ │ └── util │ │ │ │ ├── ClassResolver.java │ │ │ │ ├── ConfigBeanInfoBase.java │ │ │ │ ├── ErrorBuffer.java │ │ │ │ ├── ExceptionUnwrapper.java │ │ │ │ ├── ExceptionWrapper.java │ │ │ │ ├── FastInputStream.java │ │ │ │ ├── FastOutputStream.java │ │ │ │ ├── IOExceptionWrapper.java │ │ │ │ ├── PackedInteger.java │ │ │ │ ├── RuntimeExceptionWrapper.java │ │ │ │ ├── UtfOps.java │ │ │ │ ├── keyrange │ │ │ │ ├── KeyRange.java │ │ │ │ ├── KeyRangeException.java │ │ │ │ └── RangeCursor.java │ │ │ │ └── package.html │ │ ├── perl │ │ │ ├── BerkeleyDB │ │ │ │ ├── BerkeleyDB.pm │ │ │ │ ├── BerkeleyDB.pod │ │ │ │ ├── BerkeleyDB.pod.P │ │ │ │ ├── BerkeleyDB.xs │ │ │ │ ├── BerkeleyDB │ │ │ │ │ ├── Btree.pm │ │ │ │ │ └── Hash.pm │ │ │ │ ├── Changes │ │ │ │ ├── MANIFEST │ │ │ │ ├── META.yml │ │ │ │ ├── Makefile.PL │ │ │ │ ├── README │ │ │ │ ├── Todo │ │ │ │ ├── config.in │ │ │ │ ├── constants.h │ │ │ │ ├── constants.xs │ │ │ │ ├── dbinfo │ │ │ │ ├── hints │ │ │ │ │ ├── dec_osf.pl │ │ │ │ │ ├── irix_6_5.pl │ │ │ │ │ └── solaris.pl │ │ │ │ ├── mkconsts.pl │ │ │ │ ├── mkpod │ │ │ │ ├── patches │ │ │ │ │ ├── 5.004 │ │ │ │ │ ├── 5.004_01 │ │ │ │ │ ├── 5.004_02 │ │ │ │ │ ├── 5.004_03 │ │ │ │ │ ├── 5.004_04 │ │ │ │ │ ├── 5.004_05 │ │ │ │ │ ├── 5.005 │ │ │ │ │ ├── 5.005_01 │ │ │ │ │ ├── 5.005_02 │ │ │ │ │ ├── 5.005_03 │ │ │ │ │ └── 5.6.0 │ │ │ │ ├── ppport.h │ │ │ │ ├── scan.pl │ │ │ │ ├── t │ │ │ │ │ ├── Test │ │ │ │ │ │ ├── Builder.pm │ │ │ │ │ │ └── More.pm │ │ │ │ │ ├── btree.t │ │ │ │ │ ├── cds.t │ │ │ │ │ ├── db-3.0.t │ │ │ │ │ ├── db-3.1.t │ │ │ │ │ ├── db-3.2.t │ │ │ │ │ ├── db-3.3.t │ │ │ │ │ ├── db-4.3.t │ │ │ │ │ ├── db-4.4.t │ │ │ │ │ ├── db-4.6.t │ │ │ │ │ ├── db-4.7.t │ │ │ │ │ ├── db-4.8.t │ │ │ │ │ ├── db-4.x.t │ │ │ │ │ ├── destroy.t │ │ │ │ │ ├── encode.t │ │ │ │ │ ├── encrypt.t │ │ │ │ │ ├── env.t │ │ │ │ │ ├── examples.t │ │ │ │ │ ├── examples.t.T │ │ │ │ │ ├── examples3.t │ │ │ │ │ ├── examples3.t.T │ │ │ │ │ ├── filter.t │ │ │ │ │ ├── hash.t │ │ │ │ │ ├── join.t │ │ │ │ │ ├── mldbm.t │ │ │ │ │ ├── pod.t │ │ │ │ │ ├── queue.t │ │ │ │ │ ├── recno.t │ │ │ │ │ ├── sequence.t │ │ │ │ │ ├── strict.t │ │ │ │ │ ├── subdb.t │ │ │ │ │ ├── txn.t │ │ │ │ │ ├── unknown.t │ │ │ │ │ └── util.pm │ │ │ │ └── typemap │ │ │ └── DB_File │ │ │ │ ├── Changes │ │ │ │ ├── DB_File.pm │ │ │ │ ├── DB_File.xs │ │ │ │ ├── DB_File_BS │ │ │ │ ├── MANIFEST │ │ │ │ ├── META.yml │ │ │ │ ├── Makefile.PL │ │ │ │ ├── README │ │ │ │ ├── config.in │ │ │ │ ├── dbinfo │ │ │ │ ├── fallback.h │ │ │ │ ├── fallback.xs │ │ │ │ ├── hints │ │ │ │ ├── dynixptx.pl │ │ │ │ └── sco.pl │ │ │ │ ├── patches │ │ │ │ ├── 5.004 │ │ │ │ ├── 5.004_01 │ │ │ │ ├── 5.004_02 │ │ │ │ ├── 5.004_03 │ │ │ │ ├── 5.004_04 │ │ │ │ ├── 5.004_05 │ │ │ │ ├── 5.005 │ │ │ │ ├── 5.005_01 │ │ │ │ ├── 5.005_02 │ │ │ │ ├── 5.005_03 │ │ │ │ └── 5.6.0 │ │ │ │ ├── ppport.h │ │ │ │ ├── t │ │ │ │ ├── db-btree.t │ │ │ │ ├── db-hash.t │ │ │ │ ├── db-recno.t │ │ │ │ └── pod.t │ │ │ │ ├── typemap │ │ │ │ └── version.c │ │ ├── php_db4 │ │ │ ├── ABOUT │ │ │ ├── INSTALL │ │ │ ├── Makefile.frag │ │ │ ├── config.m4 │ │ │ ├── config.m4.in │ │ │ ├── config.w32 │ │ │ ├── config.w32.in │ │ │ ├── db4.cpp │ │ │ ├── php_db4.h │ │ │ └── samples │ │ │ │ ├── simple_counter.php │ │ │ │ └── transactional_counter.php │ │ ├── sql │ │ │ ├── README │ │ │ ├── adapter │ │ │ │ ├── backup.c │ │ │ │ ├── backup.h │ │ │ │ ├── btmutex.c │ │ │ │ ├── btree.c │ │ │ │ ├── btreeInt.h │ │ │ │ ├── buildrel.sh │ │ │ │ ├── db_encrypt.c │ │ │ │ ├── db_pragma.c │ │ │ │ ├── db_sequence.c │ │ │ │ ├── db_shell.c │ │ │ │ ├── pager.c │ │ │ │ ├── pager.h │ │ │ │ ├── pcache.c │ │ │ │ ├── pcache.h │ │ │ │ ├── pcache1.c │ │ │ │ ├── sqlite-patches │ │ │ │ │ ├── 01_sqlite_excl_test.patch │ │ │ │ │ ├── 02_sqlite_test.patch │ │ │ │ │ ├── 03_editline.patch │ │ │ │ │ ├── 04_build_config.patch │ │ │ │ │ ├── 05_shell_config.patch │ │ │ │ │ ├── 07_shell_prompt.patch │ │ │ │ │ ├── 08_errno_header.patch │ │ │ │ │ ├── 09_comment_tests.patch │ │ │ │ │ ├── 10_compile_options.patch │ │ │ │ │ ├── 11_android_shell.patch │ │ │ │ │ ├── 12_e_fts3_test.patch │ │ │ │ │ ├── 13_malloc_test.patch │ │ │ │ │ ├── 14_custom_pragma.patch │ │ │ │ │ ├── 15_bdb_stat.patch │ │ │ │ │ ├── 16_bdb_deadlock.patch │ │ │ │ │ ├── 17_encryption.patch │ │ │ │ │ ├── 18_vacuum_test.patch │ │ │ │ │ ├── 19_backup_test.patch │ │ │ │ │ ├── 20_checkpoint.patch │ │ │ │ │ ├── 22_unique_key.patch │ │ │ │ │ ├── 23_sequence_functions.patch │ │ │ │ │ ├── 24_exclusive_error_handling.patch │ │ │ │ │ ├── 25_tester.patch │ │ │ │ │ ├── 26_solaris_build.patch │ │ │ │ │ ├── 27_sqlthread.patch │ │ │ │ │ ├── 28_wal_pragma.patch │ │ │ │ │ ├── 29_manydb_test.patch │ │ │ │ │ └── 30_handle_cache.patch │ │ │ │ ├── vacuum.c │ │ │ │ ├── wal.c │ │ │ │ └── wal.h │ │ │ ├── generated │ │ │ │ ├── keywordhash.h │ │ │ │ ├── opcodes.c │ │ │ │ ├── opcodes.h │ │ │ │ ├── parse.c │ │ │ │ ├── parse.h │ │ │ │ ├── sqlite3.c │ │ │ │ └── sqlite3.h │ │ │ ├── jdbc │ │ │ │ ├── ChangeLog │ │ │ │ ├── META-INF │ │ │ │ │ └── services │ │ │ │ │ │ └── java.sql.Driver │ │ │ │ ├── Makefile.in │ │ │ │ ├── SQLite │ │ │ │ │ ├── Authorizer.java │ │ │ │ │ ├── Backup.java │ │ │ │ │ ├── Benchmark.java │ │ │ │ │ ├── BenchmarkDataSource.java │ │ │ │ │ ├── BenchmarkDriver.java │ │ │ │ │ ├── Blob.java │ │ │ │ │ ├── BusyHandler.java │ │ │ │ │ ├── Callback.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── Database.java │ │ │ │ │ ├── Database.java-sync1 │ │ │ │ │ ├── Exception.java │ │ │ │ │ ├── Function.java │ │ │ │ │ ├── FunctionContext.java │ │ │ │ │ ├── JDBC.java │ │ │ │ │ ├── JDBC0 │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBC1 │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBC2 │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBC2x │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBC2y │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBC2z │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBC2z1 │ │ │ │ │ │ ├── JDBCConnection.java │ │ │ │ │ │ ├── JDBCDatabaseMetaData.java │ │ │ │ │ │ ├── JDBCPreparedStatement.java │ │ │ │ │ │ ├── JDBCResultSet.java │ │ │ │ │ │ ├── JDBCResultSetMetaData.java │ │ │ │ │ │ ├── JDBCStatement.java │ │ │ │ │ │ └── TableResultX.java │ │ │ │ │ ├── JDBCDataSource.java │ │ │ │ │ ├── JDBCDataSource.java17 │ │ │ │ │ ├── JDBCDataSource.javajsr169 │ │ │ │ │ ├── JDBCDriver.java │ │ │ │ │ ├── JDBCDriver.java16 │ │ │ │ │ ├── JDBCDriver.java17 │ │ │ │ │ ├── Profile.java │ │ │ │ │ ├── ProgressHandler.java │ │ │ │ │ ├── SQLDump.java │ │ │ │ │ ├── SQLRestore.java │ │ │ │ │ ├── Shell.java │ │ │ │ │ ├── Stmt.java │ │ │ │ │ ├── StringEncoder.java │ │ │ │ │ ├── TableResult.java │ │ │ │ │ ├── Trace.java │ │ │ │ │ └── Vm.java │ │ │ │ ├── VERSION │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.ojec │ │ │ │ ├── config.ojec11 │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── doc │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── SQLite │ │ │ │ │ │ ├── Authorizer.html │ │ │ │ │ │ ├── Backup.html │ │ │ │ │ │ ├── Blob.html │ │ │ │ │ │ ├── BlobR.html │ │ │ │ │ │ ├── BlobW.html │ │ │ │ │ │ ├── BusyHandler.html │ │ │ │ │ │ ├── Callback.html │ │ │ │ │ │ ├── Constants.html │ │ │ │ │ │ ├── Database.html │ │ │ │ │ │ ├── Exception.html │ │ │ │ │ │ ├── Function.html │ │ │ │ │ │ ├── FunctionContext.html │ │ │ │ │ │ ├── Profile.html │ │ │ │ │ │ ├── ProgressHandler.html │ │ │ │ │ │ ├── Stmt.html │ │ │ │ │ │ ├── StringEncoder.html │ │ │ │ │ │ ├── TableResult.html │ │ │ │ │ │ ├── Trace.html │ │ │ │ │ │ ├── Vm.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── ajhowto.txt │ │ │ │ │ ├── allclasses-frame.html │ │ │ │ │ ├── allclasses-noframe.html │ │ │ │ │ ├── constant-values.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── overview-summary.html │ │ │ │ │ ├── overview-tree.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── package-list │ │ │ │ │ ├── packages.html │ │ │ │ │ ├── resources │ │ │ │ │ │ └── inherit.gif │ │ │ │ │ ├── scnotes.txt │ │ │ │ │ ├── serialized-form.html │ │ │ │ │ ├── stylesheet.css │ │ │ │ │ ├── test.java │ │ │ │ │ ├── test3.java │ │ │ │ │ └── title.html │ │ │ │ ├── install-sh │ │ │ │ ├── javasqlite.spec │ │ │ │ ├── libtool │ │ │ │ ├── license.terms │ │ │ │ ├── ltmain.sh │ │ │ │ ├── manifest │ │ │ │ ├── native │ │ │ │ │ ├── dummy.c │ │ │ │ │ ├── fixup.c │ │ │ │ │ ├── mkconst.c │ │ │ │ │ ├── mkopc.c │ │ │ │ │ ├── mkopc3.c │ │ │ │ │ └── sqlite_jni.c │ │ │ │ ├── sqlite-3.6.22.mak │ │ │ │ ├── test.java │ │ │ │ └── test3.java │ │ │ ├── odbc │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── SQLiteODBCInstaller.c │ │ │ │ ├── VERSION │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── adddsn.c │ │ │ │ ├── blobtoxy.c │ │ │ │ ├── blobtoxy.rc │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── debian │ │ │ │ │ ├── changelog │ │ │ │ │ ├── changelog.in │ │ │ │ │ ├── compat │ │ │ │ │ ├── control │ │ │ │ │ ├── copyright │ │ │ │ │ ├── dirs │ │ │ │ │ ├── docs │ │ │ │ │ ├── install │ │ │ │ │ ├── postinst │ │ │ │ │ ├── prerm │ │ │ │ │ ├── rules │ │ │ │ │ └── unixodbc.ini │ │ │ │ ├── doxygen.conf │ │ │ │ ├── drvdsninst.sh │ │ │ │ ├── drvdsnuninst.sh │ │ │ │ ├── extfunc.patch │ │ │ │ ├── fixup.c │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── impexp.c │ │ │ │ ├── impexp.h │ │ │ │ ├── impexp.rc │ │ │ │ ├── inst.c │ │ │ │ ├── install-sh │ │ │ │ ├── libtool │ │ │ │ ├── license.terms │ │ │ │ ├── ltmain.sh │ │ │ │ ├── makefile.os2 │ │ │ │ ├── missing │ │ │ │ │ ├── ini.h │ │ │ │ │ └── log.h │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkopc.c │ │ │ │ ├── mkopc3.c │ │ │ │ ├── resource.h.in │ │ │ │ ├── resource3.h │ │ │ │ ├── resourceos2.h │ │ │ │ ├── sqlite.ico │ │ │ │ ├── sqlite3odbc.c │ │ │ │ ├── sqlite3odbc.def │ │ │ │ ├── sqlite3odbc.h │ │ │ │ ├── sqlite3odbc.rc │ │ │ │ ├── sqlite3odbc.rc.in │ │ │ │ ├── sqliteodbc.c │ │ │ │ ├── sqliteodbc.def │ │ │ │ ├── sqliteodbc.h │ │ │ │ ├── sqliteodbc.ico │ │ │ │ ├── sqliteodbc.nsi │ │ │ │ ├── sqliteodbc.rc │ │ │ │ ├── sqliteodbc.spec │ │ │ │ ├── sqliteodbc.spec.in │ │ │ │ ├── sqliteodbc_w64.nsi │ │ │ │ ├── sqliteodbcos2.def │ │ │ │ ├── sqliteodbcos2.rc │ │ │ │ ├── sqliteodbcu.def │ │ │ │ ├── strict_typing.sql │ │ │ │ └── stylesheet.css │ │ │ └── sqlite │ │ │ │ ├── Makefile.arm-wince-mingw32ce-gcc │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.linux-gcc │ │ │ │ ├── Makefile.vxworks │ │ │ │ ├── README │ │ │ │ ├── VERSION │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── addopcodes.awk │ │ │ │ ├── art │ │ │ │ ├── 2005osaward.gif │ │ │ │ ├── SQLite.eps │ │ │ │ ├── SQLite.gif │ │ │ │ ├── SQLiteLogo3.tiff │ │ │ │ ├── SQLite_big.gif │ │ │ │ ├── nocopy.gif │ │ │ │ ├── powered_by_sqlite.gif │ │ │ │ ├── sqlite370.eps │ │ │ │ ├── sqlite370.ico │ │ │ │ ├── sqlite370.jpg │ │ │ │ └── src_logo.gif │ │ │ │ ├── build_config.h.in │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── contrib │ │ │ │ └── sqlitecon.tcl │ │ │ │ ├── doc │ │ │ │ ├── lemon.html │ │ │ │ ├── pager-invariants.txt │ │ │ │ └── vfs-shm.txt │ │ │ │ ├── ext │ │ │ │ ├── README.txt │ │ │ │ ├── async │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── sqlite3async.c │ │ │ │ │ └── sqlite3async.h │ │ │ │ ├── bfile │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── photo │ │ │ │ │ │ │ ├── Rachel.jpg │ │ │ │ │ │ │ ├── Tony.jpg │ │ │ │ │ │ │ ├── Tony_new.jpg │ │ │ │ │ │ │ └── Tracy.jpg │ │ │ │ │ │ └── temp │ │ │ │ │ │ │ ├── Rachel.jpg │ │ │ │ │ │ │ ├── Tony.jpg │ │ │ │ │ │ │ ├── Tony_new.jpg │ │ │ │ │ │ │ └── Tracy.jpg │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── bfile_example_capi.c │ │ │ │ │ │ └── bfile_example_sql.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── bfile.h │ │ │ │ │ ├── src │ │ │ │ │ │ └── bfile.c │ │ │ │ │ └── test │ │ │ │ │ │ ├── bfile.test │ │ │ │ │ │ ├── bfile_test_capi.c │ │ │ │ │ │ └── bfile_test_sql.c │ │ │ │ ├── fts1 │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── ft_hash.c │ │ │ │ │ ├── ft_hash.h │ │ │ │ │ ├── fts1.c │ │ │ │ │ ├── fts1.h │ │ │ │ │ ├── fts1_hash.c │ │ │ │ │ ├── fts1_hash.h │ │ │ │ │ ├── fts1_porter.c │ │ │ │ │ ├── fts1_tokenizer.h │ │ │ │ │ ├── fts1_tokenizer1.c │ │ │ │ │ ├── fulltext.c │ │ │ │ │ ├── fulltext.h │ │ │ │ │ ├── simple_tokenizer.c │ │ │ │ │ └── tokenizer.h │ │ │ │ ├── fts2 │ │ │ │ │ ├── README.tokenizers │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── fts2.c │ │ │ │ │ ├── fts2.h │ │ │ │ │ ├── fts2_hash.c │ │ │ │ │ ├── fts2_hash.h │ │ │ │ │ ├── fts2_icu.c │ │ │ │ │ ├── fts2_porter.c │ │ │ │ │ ├── fts2_tokenizer.c │ │ │ │ │ ├── fts2_tokenizer.h │ │ │ │ │ ├── fts2_tokenizer1.c │ │ │ │ │ └── mkfts2amal.tcl │ │ │ │ ├── fts3 │ │ │ │ │ ├── README.syntax │ │ │ │ │ ├── README.tokenizers │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── fts3.c │ │ │ │ │ ├── fts3.h │ │ │ │ │ ├── fts3Int.h │ │ │ │ │ ├── fts3_aux.c │ │ │ │ │ ├── fts3_expr.c │ │ │ │ │ ├── fts3_hash.c │ │ │ │ │ ├── fts3_hash.h │ │ │ │ │ ├── fts3_icu.c │ │ │ │ │ ├── fts3_porter.c │ │ │ │ │ ├── fts3_snippet.c │ │ │ │ │ ├── fts3_tokenizer.c │ │ │ │ │ ├── fts3_tokenizer.h │ │ │ │ │ ├── fts3_tokenizer1.c │ │ │ │ │ ├── fts3_write.c │ │ │ │ │ ├── fts3speed.tcl │ │ │ │ │ └── mkfts3amal.tcl │ │ │ │ ├── icu │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── icu.c │ │ │ │ │ └── sqliteicu.h │ │ │ │ └── rtree │ │ │ │ │ ├── README │ │ │ │ │ ├── rtree.c │ │ │ │ │ ├── rtree.h │ │ │ │ │ ├── rtree1.test │ │ │ │ │ ├── rtree2.test │ │ │ │ │ ├── rtree3.test │ │ │ │ │ ├── rtree4.test │ │ │ │ │ ├── rtree5.test │ │ │ │ │ ├── rtree6.test │ │ │ │ │ ├── rtree7.test │ │ │ │ │ ├── rtree8.test │ │ │ │ │ ├── rtree9.test │ │ │ │ │ ├── rtreeA.test │ │ │ │ │ ├── rtreeB.test │ │ │ │ │ ├── rtree_perf.tcl │ │ │ │ │ ├── rtree_util.tcl │ │ │ │ │ ├── sqlite3rtree.h │ │ │ │ │ ├── tkt3363.test │ │ │ │ │ └── viewrtree.tcl │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── main.mk │ │ │ │ ├── manifest │ │ │ │ ├── manifest.uuid │ │ │ │ ├── mkdll.sh │ │ │ │ ├── mkextu.sh │ │ │ │ ├── mkextw.sh │ │ │ │ ├── mkopcodec.awk │ │ │ │ ├── mkopcodeh.awk │ │ │ │ ├── mkso.sh │ │ │ │ ├── publish.sh │ │ │ │ ├── publish_osx.sh │ │ │ │ ├── spec.template │ │ │ │ ├── sqlite.pc.in │ │ │ │ ├── sqlite3.1 │ │ │ │ ├── sqlite3.pc.in │ │ │ │ ├── src │ │ │ │ ├── alter.c │ │ │ │ ├── analyze.c │ │ │ │ ├── attach.c │ │ │ │ ├── auth.c │ │ │ │ ├── bitvec.c │ │ │ │ ├── btree.h │ │ │ │ ├── build.c │ │ │ │ ├── callback.c │ │ │ │ ├── complete.c │ │ │ │ ├── ctime.c │ │ │ │ ├── date.c │ │ │ │ ├── delete.c │ │ │ │ ├── expr.c │ │ │ │ ├── fault.c │ │ │ │ ├── fkey.c │ │ │ │ ├── func.c │ │ │ │ ├── global.c │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── hwtime.h │ │ │ │ ├── insert.c │ │ │ │ ├── journal.c │ │ │ │ ├── legacy.c │ │ │ │ ├── lempar.c │ │ │ │ ├── loadext.c │ │ │ │ ├── main.c │ │ │ │ ├── malloc.c │ │ │ │ ├── mem0.c │ │ │ │ ├── mem1.c │ │ │ │ ├── mem2.c │ │ │ │ ├── mem3.c │ │ │ │ ├── mem5.c │ │ │ │ ├── memjournal.c │ │ │ │ ├── mutex.c │ │ │ │ ├── mutex.h │ │ │ │ ├── mutex_noop.c │ │ │ │ ├── mutex_os2.c │ │ │ │ ├── mutex_unix.c │ │ │ │ ├── mutex_w32.c │ │ │ │ ├── notify.c │ │ │ │ ├── os.c │ │ │ │ ├── os.h │ │ │ │ ├── os_common.h │ │ │ │ ├── os_os2.c │ │ │ │ ├── os_unix.c │ │ │ │ ├── os_win.c │ │ │ │ ├── parse.y │ │ │ │ ├── pragma.c │ │ │ │ ├── prepare.c │ │ │ │ ├── printf.c │ │ │ │ ├── random.c │ │ │ │ ├── resolve.c │ │ │ │ ├── rowset.c │ │ │ │ ├── select.c │ │ │ │ ├── shell.c │ │ │ │ ├── sqlite.h.in │ │ │ │ ├── sqlite3ext.h │ │ │ │ ├── sqliteInt.h │ │ │ │ ├── sqliteLimit.h │ │ │ │ ├── status.c │ │ │ │ ├── table.c │ │ │ │ ├── tclsqlite.c │ │ │ │ ├── test1.c │ │ │ │ ├── test2.c │ │ │ │ ├── test3.c │ │ │ │ ├── test4.c │ │ │ │ ├── test5.c │ │ │ │ ├── test6.c │ │ │ │ ├── test7.c │ │ │ │ ├── test8.c │ │ │ │ ├── test9.c │ │ │ │ ├── test_async.c │ │ │ │ ├── test_autoext.c │ │ │ │ ├── test_backup.c │ │ │ │ ├── test_btree.c │ │ │ │ ├── test_config.c │ │ │ │ ├── test_demovfs.c │ │ │ │ ├── test_devsym.c │ │ │ │ ├── test_func.c │ │ │ │ ├── test_fuzzer.c │ │ │ │ ├── test_hexio.c │ │ │ │ ├── test_init.c │ │ │ │ ├── test_intarray.c │ │ │ │ ├── test_intarray.h │ │ │ │ ├── test_journal.c │ │ │ │ ├── test_loadext.c │ │ │ │ ├── test_malloc.c │ │ │ │ ├── test_multiplex.c │ │ │ │ ├── test_multiplex.h │ │ │ │ ├── test_mutex.c │ │ │ │ ├── test_onefile.c │ │ │ │ ├── test_osinst.c │ │ │ │ ├── test_pcache.c │ │ │ │ ├── test_quota.c │ │ │ │ ├── test_rtree.c │ │ │ │ ├── test_schema.c │ │ │ │ ├── test_server.c │ │ │ │ ├── test_stat.c │ │ │ │ ├── test_superlock.c │ │ │ │ ├── test_syscall.c │ │ │ │ ├── test_tclvar.c │ │ │ │ ├── test_thread.c │ │ │ │ ├── test_vfs.c │ │ │ │ ├── test_vfstrace.c │ │ │ │ ├── test_wholenumber.c │ │ │ │ ├── test_wsd.c │ │ │ │ ├── tokenize.c │ │ │ │ ├── trigger.c │ │ │ │ ├── update.c │ │ │ │ ├── utf.c │ │ │ │ ├── util.c │ │ │ │ ├── vdbe.c │ │ │ │ ├── vdbe.h │ │ │ │ ├── vdbeInt.h │ │ │ │ ├── vdbeapi.c │ │ │ │ ├── vdbeaux.c │ │ │ │ ├── vdbeblob.c │ │ │ │ ├── vdbemem.c │ │ │ │ ├── vdbetrace.c │ │ │ │ ├── vtab.c │ │ │ │ ├── walker.c │ │ │ │ └── where.c │ │ │ │ ├── test │ │ │ │ ├── aggerror.test │ │ │ │ ├── alias.test │ │ │ │ ├── all.test │ │ │ │ ├── alter.test │ │ │ │ ├── alter2.test │ │ │ │ ├── alter3.test │ │ │ │ ├── alter4.test │ │ │ │ ├── altermalloc.test │ │ │ │ ├── analyze.test │ │ │ │ ├── analyze2.test │ │ │ │ ├── analyze3.test │ │ │ │ ├── analyze4.test │ │ │ │ ├── analyze5.test │ │ │ │ ├── analyze6.test │ │ │ │ ├── analyze7.test │ │ │ │ ├── async.test │ │ │ │ ├── async2.test │ │ │ │ ├── async3.test │ │ │ │ ├── async4.test │ │ │ │ ├── async5.test │ │ │ │ ├── attach.test │ │ │ │ ├── attach2.test │ │ │ │ ├── attach3.test │ │ │ │ ├── attach4.test │ │ │ │ ├── attachmalloc.test │ │ │ │ ├── auth.test │ │ │ │ ├── auth2.test │ │ │ │ ├── auth3.test │ │ │ │ ├── autoinc.test │ │ │ │ ├── autoindex1.test │ │ │ │ ├── autovacuum.test │ │ │ │ ├── autovacuum_ioerr2.test │ │ │ │ ├── avtrans.test │ │ │ │ ├── backcompat.test │ │ │ │ ├── backup.test │ │ │ │ ├── backup2.test │ │ │ │ ├── backup_ioerr.test │ │ │ │ ├── backup_malloc.test │ │ │ │ ├── badutf.test │ │ │ │ ├── badutf2.test │ │ │ │ ├── between.test │ │ │ │ ├── bigfile.test │ │ │ │ ├── bigrow.test │ │ │ │ ├── bind.test │ │ │ │ ├── bindxfer.test │ │ │ │ ├── bitvec.test │ │ │ │ ├── blob.test │ │ │ │ ├── boundary1.tcl │ │ │ │ ├── boundary1.test │ │ │ │ ├── boundary2.tcl │ │ │ │ ├── boundary2.test │ │ │ │ ├── boundary3.tcl │ │ │ │ ├── boundary3.test │ │ │ │ ├── boundary4.tcl │ │ │ │ ├── boundary4.test │ │ │ │ ├── busy.test │ │ │ │ ├── cache.test │ │ │ │ ├── capi2.test │ │ │ │ ├── capi3.test │ │ │ │ ├── capi3b.test │ │ │ │ ├── capi3c.test │ │ │ │ ├── capi3d.test │ │ │ │ ├── capi3e.test │ │ │ │ ├── cast.test │ │ │ │ ├── check.test │ │ │ │ ├── coalesce.test │ │ │ │ ├── collate1.test │ │ │ │ ├── collate2.test │ │ │ │ ├── collate3.test │ │ │ │ ├── collate4.test │ │ │ │ ├── collate5.test │ │ │ │ ├── collate6.test │ │ │ │ ├── collate7.test │ │ │ │ ├── collate8.test │ │ │ │ ├── collate9.test │ │ │ │ ├── collateA.test │ │ │ │ ├── colmeta.test │ │ │ │ ├── colname.test │ │ │ │ ├── conflict.test │ │ │ │ ├── corrupt.test │ │ │ │ ├── corrupt2.test │ │ │ │ ├── corrupt3.test │ │ │ │ ├── corrupt4.test │ │ │ │ ├── corrupt5.test │ │ │ │ ├── corrupt6.test │ │ │ │ ├── corrupt7.test │ │ │ │ ├── corrupt8.test │ │ │ │ ├── corrupt9.test │ │ │ │ ├── corruptA.test │ │ │ │ ├── corruptB.test │ │ │ │ ├── corruptC.test │ │ │ │ ├── corruptD.test │ │ │ │ ├── corruptE.test │ │ │ │ ├── count.test │ │ │ │ ├── crash.test │ │ │ │ ├── crash2.test │ │ │ │ ├── crash3.test │ │ │ │ ├── crash4.test │ │ │ │ ├── crash5.test │ │ │ │ ├── crash6.test │ │ │ │ ├── crash7.test │ │ │ │ ├── crash8.test │ │ │ │ ├── crashtest1.c │ │ │ │ ├── createtab.test │ │ │ │ ├── cse.test │ │ │ │ ├── ctime.test │ │ │ │ ├── date.test │ │ │ │ ├── dbstatus.test │ │ │ │ ├── default.test │ │ │ │ ├── delete.test │ │ │ │ ├── delete2.test │ │ │ │ ├── delete3.test │ │ │ │ ├── descidx1.test │ │ │ │ ├── descidx2.test │ │ │ │ ├── descidx3.test │ │ │ │ ├── diskfull.test │ │ │ │ ├── distinctagg.test │ │ │ │ ├── e_createtable.test │ │ │ │ ├── e_delete.test │ │ │ │ ├── e_droptrigger.test │ │ │ │ ├── e_dropview.test │ │ │ │ ├── e_expr.test │ │ │ │ ├── e_fkey.test │ │ │ │ ├── e_fts3.test │ │ │ │ ├── e_insert.test │ │ │ │ ├── e_reindex.test │ │ │ │ ├── e_resolve.test │ │ │ │ ├── e_select.test │ │ │ │ ├── e_select2.test │ │ │ │ ├── e_update.test │ │ │ │ ├── e_vacuum.test │ │ │ │ ├── enc.test │ │ │ │ ├── enc2.test │ │ │ │ ├── enc3.test │ │ │ │ ├── enc4.test │ │ │ │ ├── eqp.test │ │ │ │ ├── eval.test │ │ │ │ ├── exclusive.test │ │ │ │ ├── exclusive2.test │ │ │ │ ├── exec.test │ │ │ │ ├── exists.test │ │ │ │ ├── expr.test │ │ │ │ ├── fallocate.test │ │ │ │ ├── filectrl.test │ │ │ │ ├── filefmt.test │ │ │ │ ├── fkey1.test │ │ │ │ ├── fkey2.test │ │ │ │ ├── fkey3.test │ │ │ │ ├── fkey4.test │ │ │ │ ├── fkey_malloc.test │ │ │ │ ├── format4.test │ │ │ │ ├── fts1a.test │ │ │ │ ├── fts1b.test │ │ │ │ ├── fts1c.test │ │ │ │ ├── fts1d.test │ │ │ │ ├── fts1e.test │ │ │ │ ├── fts1f.test │ │ │ │ ├── fts1i.test │ │ │ │ ├── fts1j.test │ │ │ │ ├── fts1k.test │ │ │ │ ├── fts1l.test │ │ │ │ ├── fts1m.test │ │ │ │ ├── fts1n.test │ │ │ │ ├── fts1o.test │ │ │ │ ├── fts1porter.test │ │ │ │ ├── fts2.test │ │ │ │ ├── fts2a.test │ │ │ │ ├── fts2b.test │ │ │ │ ├── fts2c.test │ │ │ │ ├── fts2d.test │ │ │ │ ├── fts2e.test │ │ │ │ ├── fts2f.test │ │ │ │ ├── fts2g.test │ │ │ │ ├── fts2h.test │ │ │ │ ├── fts2i.test │ │ │ │ ├── fts2j.test │ │ │ │ ├── fts2k.test │ │ │ │ ├── fts2l.test │ │ │ │ ├── fts2m.test │ │ │ │ ├── fts2n.test │ │ │ │ ├── fts2o.test │ │ │ │ ├── fts2p.test │ │ │ │ ├── fts2q.test │ │ │ │ ├── fts2r.test │ │ │ │ ├── fts2token.test │ │ │ │ ├── fts3.test │ │ │ │ ├── fts3_common.tcl │ │ │ │ ├── fts3aa.test │ │ │ │ ├── fts3ab.test │ │ │ │ ├── fts3ac.test │ │ │ │ ├── fts3ad.test │ │ │ │ ├── fts3ae.test │ │ │ │ ├── fts3af.test │ │ │ │ ├── fts3ag.test │ │ │ │ ├── fts3ah.test │ │ │ │ ├── fts3ai.test │ │ │ │ ├── fts3aj.test │ │ │ │ ├── fts3ak.test │ │ │ │ ├── fts3al.test │ │ │ │ ├── fts3am.test │ │ │ │ ├── fts3an.test │ │ │ │ ├── fts3ao.test │ │ │ │ ├── fts3atoken.test │ │ │ │ ├── fts3aux1.test │ │ │ │ ├── fts3b.test │ │ │ │ ├── fts3c.test │ │ │ │ ├── fts3comp1.test │ │ │ │ ├── fts3corrupt.test │ │ │ │ ├── fts3corrupt2.test │ │ │ │ ├── fts3cov.test │ │ │ │ ├── fts3d.test │ │ │ │ ├── fts3defer.test │ │ │ │ ├── fts3defer2.test │ │ │ │ ├── fts3e.test │ │ │ │ ├── fts3expr.test │ │ │ │ ├── fts3expr2.test │ │ │ │ ├── fts3fault.test │ │ │ │ ├── fts3fault2.test │ │ │ │ ├── fts3malloc.test │ │ │ │ ├── fts3matchinfo.test │ │ │ │ ├── fts3near.test │ │ │ │ ├── fts3query.test │ │ │ │ ├── fts3rnd.test │ │ │ │ ├── fts3shared.test │ │ │ │ ├── fts3snippet.test │ │ │ │ ├── fts4aa.test │ │ │ │ ├── func.test │ │ │ │ ├── func2.test │ │ │ │ ├── func3.test │ │ │ │ ├── fuzz.test │ │ │ │ ├── fuzz2.test │ │ │ │ ├── fuzz3.test │ │ │ │ ├── fuzz_common.tcl │ │ │ │ ├── fuzz_malloc.test │ │ │ │ ├── fuzzer1.test │ │ │ │ ├── hook.test │ │ │ │ ├── icu.test │ │ │ │ ├── in.test │ │ │ │ ├── in2.test │ │ │ │ ├── in3.test │ │ │ │ ├── in4.test │ │ │ │ ├── incrblob.test │ │ │ │ ├── incrblob2.test │ │ │ │ ├── incrblob3.test │ │ │ │ ├── incrblob_err.test │ │ │ │ ├── incrblobfault.test │ │ │ │ ├── incrvacuum.test │ │ │ │ ├── incrvacuum2.test │ │ │ │ ├── incrvacuum_ioerr.test │ │ │ │ ├── index.test │ │ │ │ ├── index2.test │ │ │ │ ├── index3.test │ │ │ │ ├── indexedby.test │ │ │ │ ├── init.test │ │ │ │ ├── insert.test │ │ │ │ ├── insert2.test │ │ │ │ ├── insert3.test │ │ │ │ ├── insert4.test │ │ │ │ ├── insert5.test │ │ │ │ ├── intarray.test │ │ │ │ ├── interrupt.test │ │ │ │ ├── intpkey.test │ │ │ │ ├── io.test │ │ │ │ ├── ioerr.test │ │ │ │ ├── ioerr2.test │ │ │ │ ├── ioerr3.test │ │ │ │ ├── ioerr4.test │ │ │ │ ├── ioerr5.test │ │ │ │ ├── join.test │ │ │ │ ├── join2.test │ │ │ │ ├── join3.test │ │ │ │ ├── join4.test │ │ │ │ ├── join5.test │ │ │ │ ├── join6.test │ │ │ │ ├── journal1.test │ │ │ │ ├── journal2.test │ │ │ │ ├── journal3.test │ │ │ │ ├── jrnlmode.test │ │ │ │ ├── jrnlmode2.test │ │ │ │ ├── jrnlmode3.test │ │ │ │ ├── keyword1.test │ │ │ │ ├── lastinsert.test │ │ │ │ ├── laststmtchanges.test │ │ │ │ ├── like.test │ │ │ │ ├── like2.test │ │ │ │ ├── limit.test │ │ │ │ ├── loadext.test │ │ │ │ ├── loadext2.test │ │ │ │ ├── lock.test │ │ │ │ ├── lock2.test │ │ │ │ ├── lock3.test │ │ │ │ ├── lock4.test │ │ │ │ ├── lock5.test │ │ │ │ ├── lock6.test │ │ │ │ ├── lock7.test │ │ │ │ ├── lock_common.tcl │ │ │ │ ├── lookaside.test │ │ │ │ ├── main.test │ │ │ │ ├── make-where7.tcl │ │ │ │ ├── malloc.test │ │ │ │ ├── malloc3.test │ │ │ │ ├── malloc4.test │ │ │ │ ├── malloc5.test │ │ │ │ ├── malloc6.test │ │ │ │ ├── malloc7.test │ │ │ │ ├── malloc8.test │ │ │ │ ├── malloc9.test │ │ │ │ ├── mallocA.test │ │ │ │ ├── mallocAll.test │ │ │ │ ├── mallocB.test │ │ │ │ ├── mallocC.test │ │ │ │ ├── mallocD.test │ │ │ │ ├── mallocE.test │ │ │ │ ├── mallocF.test │ │ │ │ ├── mallocG.test │ │ │ │ ├── mallocH.test │ │ │ │ ├── mallocI.test │ │ │ │ ├── mallocJ.test │ │ │ │ ├── mallocK.test │ │ │ │ ├── malloc_common.tcl │ │ │ │ ├── manydb.test │ │ │ │ ├── mem5.test │ │ │ │ ├── memdb.test │ │ │ │ ├── memleak.test │ │ │ │ ├── memsubsys1.test │ │ │ │ ├── memsubsys2.test │ │ │ │ ├── minmax.test │ │ │ │ ├── minmax2.test │ │ │ │ ├── minmax3.test │ │ │ │ ├── misc1.test │ │ │ │ ├── misc2.test │ │ │ │ ├── misc3.test │ │ │ │ ├── misc4.test │ │ │ │ ├── misc5.test │ │ │ │ ├── misc6.test │ │ │ │ ├── misc7.test │ │ │ │ ├── misuse.test │ │ │ │ ├── multiplex.test │ │ │ │ ├── mutex1.test │ │ │ │ ├── mutex2.test │ │ │ │ ├── nan.test │ │ │ │ ├── notify1.test │ │ │ │ ├── notify2.test │ │ │ │ ├── notify3.test │ │ │ │ ├── notnull.test │ │ │ │ ├── null.test │ │ │ │ ├── openv2.test │ │ │ │ ├── oserror.test │ │ │ │ ├── pager1.test │ │ │ │ ├── pager2.test │ │ │ │ ├── pager3.test │ │ │ │ ├── pagerfault.test │ │ │ │ ├── pagerfault2.test │ │ │ │ ├── pagerfault3.test │ │ │ │ ├── pageropt.test │ │ │ │ ├── pagesize.test │ │ │ │ ├── pcache.test │ │ │ │ ├── pcache2.test │ │ │ │ ├── permutations.test │ │ │ │ ├── pragma.test │ │ │ │ ├── pragma2.test │ │ │ │ ├── printf.test │ │ │ │ ├── progress.test │ │ │ │ ├── ptrchng.test │ │ │ │ ├── quick.test │ │ │ │ ├── quota.test │ │ │ │ ├── quote.test │ │ │ │ ├── randexpr1.tcl │ │ │ │ ├── randexpr1.test │ │ │ │ ├── rdonly.test │ │ │ │ ├── reindex.test │ │ │ │ ├── releasetest.mk │ │ │ │ ├── releasetest.tcl │ │ │ │ ├── rollback.test │ │ │ │ ├── rowhash.test │ │ │ │ ├── rowid.test │ │ │ │ ├── rtree.test │ │ │ │ ├── savepoint.test │ │ │ │ ├── savepoint2.test │ │ │ │ ├── savepoint3.test │ │ │ │ ├── savepoint4.test │ │ │ │ ├── savepoint5.test │ │ │ │ ├── savepoint6.test │ │ │ │ ├── schema.test │ │ │ │ ├── schema2.test │ │ │ │ ├── schema3.test │ │ │ │ ├── schema4.test │ │ │ │ ├── securedel.test │ │ │ │ ├── select1.test │ │ │ │ ├── select2.test │ │ │ │ ├── select3.test │ │ │ │ ├── select4.test │ │ │ │ ├── select5.test │ │ │ │ ├── select6.test │ │ │ │ ├── select7.test │ │ │ │ ├── select8.test │ │ │ │ ├── select9.test │ │ │ │ ├── selectA.test │ │ │ │ ├── selectB.test │ │ │ │ ├── selectC.test │ │ │ │ ├── server1.test │ │ │ │ ├── shared.test │ │ │ │ ├── shared2.test │ │ │ │ ├── shared3.test │ │ │ │ ├── shared4.test │ │ │ │ ├── shared6.test │ │ │ │ ├── shared7.test │ │ │ │ ├── shared_err.test │ │ │ │ ├── sharedlock.test │ │ │ │ ├── shortread1.test │ │ │ │ ├── sidedelete.test │ │ │ │ ├── soak.test │ │ │ │ ├── softheap1.test │ │ │ │ ├── sort.test │ │ │ │ ├── speed1.test │ │ │ │ ├── speed1p.explain │ │ │ │ ├── speed1p.test │ │ │ │ ├── speed2.test │ │ │ │ ├── speed3.test │ │ │ │ ├── speed4.test │ │ │ │ ├── speed4p.explain │ │ │ │ ├── speed4p.test │ │ │ │ ├── sqllimits1.test │ │ │ │ ├── stat.test │ │ │ │ ├── stmt.test │ │ │ │ ├── subquery.test │ │ │ │ ├── subselect.test │ │ │ │ ├── substr.test │ │ │ │ ├── superlock.test │ │ │ │ ├── sync.test │ │ │ │ ├── syscall.test │ │ │ │ ├── sysfault.test │ │ │ │ ├── table.test │ │ │ │ ├── tableapi.test │ │ │ │ ├── tclsqlite.test │ │ │ │ ├── tempdb.test │ │ │ │ ├── temptable.test │ │ │ │ ├── temptrigger.test │ │ │ │ ├── tester.tcl │ │ │ │ ├── thread001.test │ │ │ │ ├── thread002.test │ │ │ │ ├── thread003.test │ │ │ │ ├── thread004.test │ │ │ │ ├── thread005.test │ │ │ │ ├── thread1.test │ │ │ │ ├── thread2.test │ │ │ │ ├── thread_common.tcl │ │ │ │ ├── threadtest1.c │ │ │ │ ├── threadtest2.c │ │ │ │ ├── threadtest3.c │ │ │ │ ├── tkt-02a8e81d44.test │ │ │ │ ├── tkt-26ff0c2d1e.test │ │ │ │ ├── tkt-2ea2425d34.test │ │ │ │ ├── tkt-31338dca7e.test │ │ │ │ ├── tkt-313723c356.test │ │ │ │ ├── tkt-38cb5df375.test │ │ │ │ ├── tkt-3998683a16.test │ │ │ │ ├── tkt-3fe897352e.test │ │ │ │ ├── tkt-4a03edc4c8.test │ │ │ │ ├── tkt-5d863f876e.test │ │ │ │ ├── tkt-5e10420e8d.test │ │ │ │ ├── tkt-5ee23731f.test │ │ │ │ ├── tkt-752e1646fc.test │ │ │ │ ├── tkt-78e04e52ea.test │ │ │ │ ├── tkt-80ba201079.test │ │ │ │ ├── tkt-80e031a00f.test │ │ │ │ ├── tkt-8454a207b9.test │ │ │ │ ├── tkt-94c04eaadb.test │ │ │ │ ├── tkt-9d68c883.test │ │ │ │ ├── tkt-b351d95f9.test │ │ │ │ ├── tkt-b72787b1.test │ │ │ │ ├── tkt-cbd054fa6b.test │ │ │ │ ├── tkt-d11f09d36e.test │ │ │ │ ├── tkt-d82e3f3721.test │ │ │ │ ├── tkt-f3e5abed55.test │ │ │ │ ├── tkt-f777251dc7a.test │ │ │ │ ├── tkt-f7b4edec.test │ │ │ │ ├── tkt-f973c7ac31.test │ │ │ │ ├── tkt-fc62af4523.test │ │ │ │ ├── tkt1435.test │ │ │ │ ├── tkt1443.test │ │ │ │ ├── tkt1444.test │ │ │ │ ├── tkt1449.test │ │ │ │ ├── tkt1473.test │ │ │ │ ├── tkt1501.test │ │ │ │ ├── tkt1512.test │ │ │ │ ├── tkt1514.test │ │ │ │ ├── tkt1536.test │ │ │ │ ├── tkt1537.test │ │ │ │ ├── tkt1567.test │ │ │ │ ├── tkt1644.test │ │ │ │ ├── tkt1667.test │ │ │ │ ├── tkt1873.test │ │ │ │ ├── tkt2141.test │ │ │ │ ├── tkt2192.test │ │ │ │ ├── tkt2213.test │ │ │ │ ├── tkt2251.test │ │ │ │ ├── tkt2285.test │ │ │ │ ├── tkt2332.test │ │ │ │ ├── tkt2339.test │ │ │ │ ├── tkt2391.test │ │ │ │ ├── tkt2409.test │ │ │ │ ├── tkt2450.test │ │ │ │ ├── tkt2565.test │ │ │ │ ├── tkt2640.test │ │ │ │ ├── tkt2643.test │ │ │ │ ├── tkt2686.test │ │ │ │ ├── tkt2767.test │ │ │ │ ├── tkt2817.test │ │ │ │ ├── tkt2820.test │ │ │ │ ├── tkt2822.test │ │ │ │ ├── tkt2832.test │ │ │ │ ├── tkt2854.test │ │ │ │ ├── tkt2920.test │ │ │ │ ├── tkt2927.test │ │ │ │ ├── tkt2942.test │ │ │ │ ├── tkt3080.test │ │ │ │ ├── tkt3093.test │ │ │ │ ├── tkt3121.test │ │ │ │ ├── tkt3201.test │ │ │ │ ├── tkt3292.test │ │ │ │ ├── tkt3298.test │ │ │ │ ├── tkt3334.test │ │ │ │ ├── tkt3346.test │ │ │ │ ├── tkt3357.test │ │ │ │ ├── tkt3419.test │ │ │ │ ├── tkt3424.test │ │ │ │ ├── tkt3442.test │ │ │ │ ├── tkt3457.test │ │ │ │ ├── tkt3461.test │ │ │ │ ├── tkt3493.test │ │ │ │ ├── tkt3508.test │ │ │ │ ├── tkt3522.test │ │ │ │ ├── tkt3527.test │ │ │ │ ├── tkt3541.test │ │ │ │ ├── tkt3554.test │ │ │ │ ├── tkt3581.test │ │ │ │ ├── tkt35xx.test │ │ │ │ ├── tkt3630.test │ │ │ │ ├── tkt3718.test │ │ │ │ ├── tkt3731.test │ │ │ │ ├── tkt3757.test │ │ │ │ ├── tkt3761.test │ │ │ │ ├── tkt3762.test │ │ │ │ ├── tkt3773.test │ │ │ │ ├── tkt3791.test │ │ │ │ ├── tkt3793.test │ │ │ │ ├── tkt3810.test │ │ │ │ ├── tkt3824.test │ │ │ │ ├── tkt3832.test │ │ │ │ ├── tkt3838.test │ │ │ │ ├── tkt3841.test │ │ │ │ ├── tkt3871.test │ │ │ │ ├── tkt3879.test │ │ │ │ ├── tkt3911.test │ │ │ │ ├── tkt3918.test │ │ │ │ ├── tkt3922.test │ │ │ │ ├── tkt3929.test │ │ │ │ ├── tkt3935.test │ │ │ │ ├── tkt3992.test │ │ │ │ ├── tkt3997.test │ │ │ │ ├── tkt4018.test │ │ │ │ ├── tokenize.test │ │ │ │ ├── trace.test │ │ │ │ ├── trace2.test │ │ │ │ ├── trans.test │ │ │ │ ├── trans2.test │ │ │ │ ├── trans3.test │ │ │ │ ├── trigger1.test │ │ │ │ ├── trigger2.test │ │ │ │ ├── trigger3.test │ │ │ │ ├── trigger4.test │ │ │ │ ├── trigger5.test │ │ │ │ ├── trigger6.test │ │ │ │ ├── trigger7.test │ │ │ │ ├── trigger8.test │ │ │ │ ├── trigger9.test │ │ │ │ ├── triggerA.test │ │ │ │ ├── triggerB.test │ │ │ │ ├── triggerC.test │ │ │ │ ├── triggerD.test │ │ │ │ ├── tt3_checkpoint.c │ │ │ │ ├── types.test │ │ │ │ ├── types2.test │ │ │ │ ├── types3.test │ │ │ │ ├── unique.test │ │ │ │ ├── unixexcl.test │ │ │ │ ├── unordered.test │ │ │ │ ├── update.test │ │ │ │ ├── utf16align.test │ │ │ │ ├── vacuum.test │ │ │ │ ├── vacuum2.test │ │ │ │ ├── vacuum3.test │ │ │ │ ├── vacuum4.test │ │ │ │ ├── varint.test │ │ │ │ ├── veryquick.test │ │ │ │ ├── view.test │ │ │ │ ├── vtab1.test │ │ │ │ ├── vtab2.test │ │ │ │ ├── vtab3.test │ │ │ │ ├── vtab4.test │ │ │ │ ├── vtab5.test │ │ │ │ ├── vtab6.test │ │ │ │ ├── vtab7.test │ │ │ │ ├── vtab8.test │ │ │ │ ├── vtab9.test │ │ │ │ ├── vtabA.test │ │ │ │ ├── vtabB.test │ │ │ │ ├── vtabC.test │ │ │ │ ├── vtabD.test │ │ │ │ ├── vtabE.test │ │ │ │ ├── vtab_alter.test │ │ │ │ ├── vtab_err.test │ │ │ │ ├── vtab_shared.test │ │ │ │ ├── wal.test │ │ │ │ ├── wal2.test │ │ │ │ ├── wal3.test │ │ │ │ ├── wal4.test │ │ │ │ ├── wal5.test │ │ │ │ ├── wal6.test │ │ │ │ ├── wal_common.tcl │ │ │ │ ├── walbak.test │ │ │ │ ├── walbig.test │ │ │ │ ├── walcksum.test │ │ │ │ ├── walcrash.test │ │ │ │ ├── walcrash2.test │ │ │ │ ├── walfault.test │ │ │ │ ├── walhook.test │ │ │ │ ├── walmode.test │ │ │ │ ├── walnoshm.test │ │ │ │ ├── walshared.test │ │ │ │ ├── walslow.test │ │ │ │ ├── walthread.test │ │ │ │ ├── where.test │ │ │ │ ├── where2.test │ │ │ │ ├── where3.test │ │ │ │ ├── where4.test │ │ │ │ ├── where5.test │ │ │ │ ├── where6.test │ │ │ │ ├── where7.test │ │ │ │ ├── where8.test │ │ │ │ ├── where8m.test │ │ │ │ ├── where9.test │ │ │ │ ├── whereA.test │ │ │ │ ├── whereB.test │ │ │ │ ├── wherelimit.test │ │ │ │ └── zeroblob.test │ │ │ │ └── tool │ │ │ │ ├── diffdb.c │ │ │ │ ├── fragck.tcl │ │ │ │ ├── genfkey.README │ │ │ │ ├── genfkey.test │ │ │ │ ├── lemon.c │ │ │ │ ├── lempar.c │ │ │ │ ├── mkkeywordhash.c │ │ │ │ ├── mkopts.tcl │ │ │ │ ├── mkspeedsql.tcl │ │ │ │ ├── mksqlite3c.tcl │ │ │ │ ├── mksqlite3h.tcl │ │ │ │ ├── mksqlite3internalh.tcl │ │ │ │ ├── omittest.tcl │ │ │ │ ├── opcodeDoc.awk │ │ │ │ ├── restore_jrnl.tcl │ │ │ │ ├── rollback-test.c │ │ │ │ ├── shell1.test │ │ │ │ ├── shell2.test │ │ │ │ ├── shell3.test │ │ │ │ ├── shell4.test │ │ │ │ ├── shell5.test │ │ │ │ ├── showdb.c │ │ │ │ ├── showjournal.c │ │ │ │ ├── showwal.c │ │ │ │ ├── soak1.tcl │ │ │ │ ├── space_used.tcl │ │ │ │ ├── spaceanal.tcl │ │ │ │ ├── speedtest.tcl │ │ │ │ ├── speedtest16.c │ │ │ │ ├── speedtest2.tcl │ │ │ │ ├── speedtest8.c │ │ │ │ ├── speedtest8inst1.c │ │ │ │ ├── split-sqlite3c.tcl │ │ │ │ └── vdbe-compress.tcl │ │ └── tcl │ │ │ ├── docs │ │ │ ├── db.html │ │ │ ├── env.html │ │ │ ├── historic.html │ │ │ ├── index.html │ │ │ ├── library.html │ │ │ ├── lock.html │ │ │ ├── log.html │ │ │ ├── mpool.html │ │ │ ├── rep.html │ │ │ ├── sequence.html │ │ │ ├── test.html │ │ │ └── txn.html │ │ │ ├── tcl_compat.c │ │ │ ├── tcl_db.c │ │ │ ├── tcl_db_pkg.c │ │ │ ├── tcl_dbcursor.c │ │ │ ├── tcl_env.c │ │ │ ├── tcl_internal.c │ │ │ ├── tcl_lock.c │ │ │ ├── tcl_log.c │ │ │ ├── tcl_mp.c │ │ │ ├── tcl_mutex.c │ │ │ ├── tcl_rep.c │ │ │ ├── tcl_seq.c │ │ │ ├── tcl_txn.c │ │ │ └── tcl_util.c │ ├── src │ │ ├── btree │ │ │ ├── bt_compact.c │ │ │ ├── bt_compare.c │ │ │ ├── bt_compress.c │ │ │ ├── bt_conv.c │ │ │ ├── bt_curadj.c │ │ │ ├── bt_cursor.c │ │ │ ├── bt_delete.c │ │ │ ├── bt_method.c │ │ │ ├── bt_open.c │ │ │ ├── bt_put.c │ │ │ ├── bt_rec.c │ │ │ ├── bt_reclaim.c │ │ │ ├── bt_recno.c │ │ │ ├── bt_rsearch.c │ │ │ ├── bt_search.c │ │ │ ├── bt_split.c │ │ │ ├── bt_stat.c │ │ │ ├── bt_upgrade.c │ │ │ ├── bt_verify.c │ │ │ ├── btree.src │ │ │ ├── btree_auto.c │ │ │ └── btree_autop.c │ │ ├── clib │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── bsearch.c │ │ │ ├── getcwd.c │ │ │ ├── getopt.c │ │ │ ├── isalpha.c │ │ │ ├── isdigit.c │ │ │ ├── isprint.c │ │ │ ├── isspace.c │ │ │ ├── memcmp.c │ │ │ ├── memmove.c │ │ │ ├── printf.c │ │ │ ├── qsort.c │ │ │ ├── raise.c │ │ │ ├── rand.c │ │ │ ├── snprintf.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strdup.c │ │ │ ├── strerror.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strrchr.c │ │ │ ├── strsep.c │ │ │ ├── strtol.c │ │ │ ├── strtoul.c │ │ │ └── time.c │ │ ├── common │ │ │ ├── clock.c │ │ │ ├── crypto_stub.c │ │ │ ├── db_byteorder.c │ │ │ ├── db_compint.c │ │ │ ├── db_err.c │ │ │ ├── db_getlong.c │ │ │ ├── db_idspace.c │ │ │ ├── db_log2.c │ │ │ ├── db_shash.c │ │ │ ├── dbt.c │ │ │ ├── mkpath.c │ │ │ ├── openflags.c │ │ │ ├── os_method.c │ │ │ ├── util_arg.c │ │ │ ├── util_cache.c │ │ │ ├── util_log.c │ │ │ ├── util_sig.c │ │ │ └── zerofill.c │ │ ├── db │ │ │ ├── crdel.src │ │ │ ├── crdel_auto.c │ │ │ ├── crdel_autop.c │ │ │ ├── crdel_rec.c │ │ │ ├── db.c │ │ │ ├── db.src │ │ │ ├── db_am.c │ │ │ ├── db_auto.c │ │ │ ├── db_autop.c │ │ │ ├── db_backup.c │ │ │ ├── db_cam.c │ │ │ ├── db_cds.c │ │ │ ├── db_compact.c │ │ │ ├── db_conv.c │ │ │ ├── db_copy.c │ │ │ ├── db_dispatch.c │ │ │ ├── db_dup.c │ │ │ ├── db_iface.c │ │ │ ├── db_join.c │ │ │ ├── db_meta.c │ │ │ ├── db_method.c │ │ │ ├── db_open.c │ │ │ ├── db_overflow.c │ │ │ ├── db_ovfl_vrfy.c │ │ │ ├── db_pr.c │ │ │ ├── db_rec.c │ │ │ ├── db_reclaim.c │ │ │ ├── db_remove.c │ │ │ ├── db_rename.c │ │ │ ├── db_ret.c │ │ │ ├── db_setid.c │ │ │ ├── db_setlsn.c │ │ │ ├── db_sort_multiple.c │ │ │ ├── db_stati.c │ │ │ ├── db_truncate.c │ │ │ ├── db_upg.c │ │ │ ├── db_upg_opd.c │ │ │ ├── db_vrfy.c │ │ │ ├── db_vrfy_stub.c │ │ │ ├── db_vrfyutil.c │ │ │ └── partition.c │ │ ├── dbinc │ │ │ ├── atomic.h │ │ │ ├── btree.h │ │ │ ├── clock.h │ │ │ ├── crypto.h │ │ │ ├── cxx_int.h │ │ │ ├── db.in │ │ │ ├── db_185.in │ │ │ ├── db_am.h │ │ │ ├── db_cxx.in │ │ │ ├── db_dispatch.h │ │ │ ├── db_int.in │ │ │ ├── db_join.h │ │ │ ├── db_page.h │ │ │ ├── db_swap.h │ │ │ ├── db_upgrade.h │ │ │ ├── db_verify.h │ │ │ ├── debug.h │ │ │ ├── fop.h │ │ │ ├── globals.h │ │ │ ├── hash.h │ │ │ ├── heap.h │ │ │ ├── hmac.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── log_verify.h │ │ │ ├── mp.h │ │ │ ├── mutex.h │ │ │ ├── mutex_int.h │ │ │ ├── os.h │ │ │ ├── partition.h │ │ │ ├── perfmon.h │ │ │ ├── qam.h │ │ │ ├── queue.h │ │ │ ├── region.h │ │ │ ├── rep.h │ │ │ ├── repmgr.h │ │ │ ├── shqueue.h │ │ │ ├── tcl_db.h │ │ │ ├── txn.h │ │ │ ├── win_db.h │ │ │ └── xa.h │ │ ├── dbinc_auto │ │ │ ├── api_flags.in │ │ │ ├── btree_auto.h │ │ │ ├── btree_ext.h │ │ │ ├── clib_ext.h │ │ │ ├── common_ext.h │ │ │ ├── crdel_auto.h │ │ │ ├── crypto_ext.h │ │ │ ├── db_auto.h │ │ │ ├── db_ext.h │ │ │ ├── dbreg_auto.h │ │ │ ├── dbreg_ext.h │ │ │ ├── env_ext.h │ │ │ ├── ext_185_def.in │ │ │ ├── ext_185_prot.in │ │ │ ├── ext_def.in │ │ │ ├── ext_prot.in │ │ │ ├── fileops_auto.h │ │ │ ├── fileops_ext.h │ │ │ ├── hash_auto.h │ │ │ ├── hash_ext.h │ │ │ ├── heap_auto.h │ │ │ ├── heap_ext.h │ │ │ ├── hmac_ext.h │ │ │ ├── int_def.in │ │ │ ├── lock_ext.h │ │ │ ├── log_ext.h │ │ │ ├── mp_ext.h │ │ │ ├── mutex_ext.h │ │ │ ├── os_ext.h │ │ │ ├── qam_auto.h │ │ │ ├── qam_ext.h │ │ │ ├── rep_automsg.h │ │ │ ├── rep_ext.h │ │ │ ├── repmgr_auto.h │ │ │ ├── repmgr_automsg.h │ │ │ ├── repmgr_ext.h │ │ │ ├── sequence_ext.h │ │ │ ├── tcl_ext.h │ │ │ ├── txn_auto.h │ │ │ ├── txn_ext.h │ │ │ └── xa_ext.h │ │ ├── dbreg │ │ │ ├── dbreg.c │ │ │ ├── dbreg.src │ │ │ ├── dbreg_auto.c │ │ │ ├── dbreg_autop.c │ │ │ ├── dbreg_rec.c │ │ │ ├── dbreg_stat.c │ │ │ └── dbreg_util.c │ │ ├── env │ │ │ ├── env_alloc.c │ │ │ ├── env_backup.c │ │ │ ├── env_config.c │ │ │ ├── env_failchk.c │ │ │ ├── env_file.c │ │ │ ├── env_globals.c │ │ │ ├── env_method.c │ │ │ ├── env_name.c │ │ │ ├── env_open.c │ │ │ ├── env_recover.c │ │ │ ├── env_region.c │ │ │ ├── env_register.c │ │ │ ├── env_sig.c │ │ │ └── env_stat.c │ │ ├── fileops │ │ │ ├── fileops.src │ │ │ ├── fileops_auto.c │ │ │ ├── fileops_autop.c │ │ │ ├── fop_basic.c │ │ │ ├── fop_rec.c │ │ │ └── fop_util.c │ │ ├── hash │ │ │ ├── hash.c │ │ │ ├── hash.src │ │ │ ├── hash_auto.c │ │ │ ├── hash_autop.c │ │ │ ├── hash_compact.c │ │ │ ├── hash_conv.c │ │ │ ├── hash_dup.c │ │ │ ├── hash_func.c │ │ │ ├── hash_meta.c │ │ │ ├── hash_method.c │ │ │ ├── hash_open.c │ │ │ ├── hash_page.c │ │ │ ├── hash_rec.c │ │ │ ├── hash_reclaim.c │ │ │ ├── hash_stat.c │ │ │ ├── hash_stub.c │ │ │ ├── hash_upgrade.c │ │ │ └── hash_verify.c │ │ ├── heap │ │ │ ├── heap.c │ │ │ ├── heap.src │ │ │ ├── heap_auto.c │ │ │ ├── heap_autop.c │ │ │ ├── heap_backup.c │ │ │ ├── heap_conv.c │ │ │ ├── heap_method.c │ │ │ ├── heap_open.c │ │ │ ├── heap_rec.c │ │ │ ├── heap_reclaim.c │ │ │ ├── heap_stat.c │ │ │ ├── heap_stub.c │ │ │ └── heap_verify.c │ │ ├── hmac │ │ │ ├── hmac.c │ │ │ └── sha1.c │ │ ├── lock │ │ │ ├── Design │ │ │ ├── lock.c │ │ │ ├── lock_alloc.incl │ │ │ ├── lock_deadlock.c │ │ │ ├── lock_failchk.c │ │ │ ├── lock_id.c │ │ │ ├── lock_list.c │ │ │ ├── lock_method.c │ │ │ ├── lock_region.c │ │ │ ├── lock_stat.c │ │ │ ├── lock_stub.c │ │ │ ├── lock_timer.c │ │ │ └── lock_util.c │ │ ├── log │ │ │ ├── log.c │ │ │ ├── log_archive.c │ │ │ ├── log_compare.c │ │ │ ├── log_debug.c │ │ │ ├── log_get.c │ │ │ ├── log_method.c │ │ │ ├── log_print.c │ │ │ ├── log_put.c │ │ │ ├── log_stat.c │ │ │ ├── log_verify.c │ │ │ ├── log_verify_auto.c │ │ │ ├── log_verify_int.c │ │ │ ├── log_verify_stub.c │ │ │ └── log_verify_util.c │ │ ├── mp │ │ │ ├── mp_alloc.c │ │ │ ├── mp_backup.c │ │ │ ├── mp_bh.c │ │ │ ├── mp_fget.c │ │ │ ├── mp_fmethod.c │ │ │ ├── mp_fopen.c │ │ │ ├── mp_fput.c │ │ │ ├── mp_fset.c │ │ │ ├── mp_method.c │ │ │ ├── mp_mvcc.c │ │ │ ├── mp_region.c │ │ │ ├── mp_register.c │ │ │ ├── mp_resize.c │ │ │ ├── mp_stat.c │ │ │ ├── mp_sync.c │ │ │ └── mp_trickle.c │ │ ├── mutex │ │ │ ├── README │ │ │ ├── mut_alloc.c │ │ │ ├── mut_failchk.c │ │ │ ├── mut_fcntl.c │ │ │ ├── mut_method.c │ │ │ ├── mut_pthread.c │ │ │ ├── mut_region.c │ │ │ ├── mut_stat.c │ │ │ ├── mut_stub.c │ │ │ ├── mut_tas.c │ │ │ ├── mut_win32.c │ │ │ ├── test_mutex.c │ │ │ └── uts4_cc.s │ │ ├── os │ │ │ ├── os_abort.c │ │ │ ├── os_abs.c │ │ │ ├── os_addrinfo.c │ │ │ ├── os_alloc.c │ │ │ ├── os_clock.c │ │ │ ├── os_config.c │ │ │ ├── os_cpu.c │ │ │ ├── os_ctime.c │ │ │ ├── os_dir.c │ │ │ ├── os_errno.c │ │ │ ├── os_fid.c │ │ │ ├── os_flock.c │ │ │ ├── os_fsync.c │ │ │ ├── os_getenv.c │ │ │ ├── os_handle.c │ │ │ ├── os_map.c │ │ │ ├── os_mkdir.c │ │ │ ├── os_open.c │ │ │ ├── os_path.c │ │ │ ├── os_pid.c │ │ │ ├── os_rename.c │ │ │ ├── os_root.c │ │ │ ├── os_rpath.c │ │ │ ├── os_rw.c │ │ │ ├── os_seek.c │ │ │ ├── os_stack.c │ │ │ ├── os_stat.c │ │ │ ├── os_tmpdir.c │ │ │ ├── os_truncate.c │ │ │ ├── os_uid.c │ │ │ ├── os_unlink.c │ │ │ └── os_yield.c │ │ ├── os_qnx │ │ │ ├── os_qnx_fsync.c │ │ │ └── os_qnx_open.c │ │ ├── os_vxworks │ │ │ ├── os_vx_abs.c │ │ │ ├── os_vx_config.c │ │ │ ├── os_vx_map.c │ │ │ ├── os_vx_rpath.c │ │ │ └── os_vx_yield.c │ │ ├── os_windows │ │ │ ├── ce_ctime.c │ │ │ ├── os_abs.c │ │ │ ├── os_clock.c │ │ │ ├── os_config.c │ │ │ ├── os_cpu.c │ │ │ ├── os_dir.c │ │ │ ├── os_errno.c │ │ │ ├── os_fid.c │ │ │ ├── os_flock.c │ │ │ ├── os_fsync.c │ │ │ ├── os_getenv.c │ │ │ ├── os_handle.c │ │ │ ├── os_map.c │ │ │ ├── os_mkdir.c │ │ │ ├── os_open.c │ │ │ ├── os_rename.c │ │ │ ├── os_rw.c │ │ │ ├── os_seek.c │ │ │ ├── os_stat.c │ │ │ ├── os_truncate.c │ │ │ ├── os_unlink.c │ │ │ └── os_yield.c │ │ ├── qam │ │ │ ├── qam.c │ │ │ ├── qam.src │ │ │ ├── qam_auto.c │ │ │ ├── qam_autop.c │ │ │ ├── qam_conv.c │ │ │ ├── qam_files.c │ │ │ ├── qam_method.c │ │ │ ├── qam_open.c │ │ │ ├── qam_rec.c │ │ │ ├── qam_stat.c │ │ │ ├── qam_stub.c │ │ │ ├── qam_upgrade.c │ │ │ └── qam_verify.c │ │ ├── rep │ │ │ ├── mlease.html │ │ │ ├── rep.msg │ │ │ ├── rep_automsg.c │ │ │ ├── rep_backup.c │ │ │ ├── rep_elect.c │ │ │ ├── rep_lease.c │ │ │ ├── rep_log.c │ │ │ ├── rep_method.c │ │ │ ├── rep_record.c │ │ │ ├── rep_region.c │ │ │ ├── rep_stat.c │ │ │ ├── rep_stub.c │ │ │ ├── rep_util.c │ │ │ └── rep_verify.c │ │ ├── repmgr │ │ │ ├── repmgr.msg │ │ │ ├── repmgr.src │ │ │ ├── repmgr_auto.c │ │ │ ├── repmgr_automsg.c │ │ │ ├── repmgr_autop.c │ │ │ ├── repmgr_elect.c │ │ │ ├── repmgr_method.c │ │ │ ├── repmgr_msg.c │ │ │ ├── repmgr_net.c │ │ │ ├── repmgr_posix.c │ │ │ ├── repmgr_queue.c │ │ │ ├── repmgr_rec.c │ │ │ ├── repmgr_sel.c │ │ │ ├── repmgr_stat.c │ │ │ ├── repmgr_stub.c │ │ │ ├── repmgr_util.c │ │ │ └── repmgr_windows.c │ │ ├── sequence │ │ │ ├── seq_stat.c │ │ │ └── sequence.c │ │ ├── txn │ │ │ ├── txn.c │ │ │ ├── txn.src │ │ │ ├── txn_auto.c │ │ │ ├── txn_autop.c │ │ │ ├── txn_chkpt.c │ │ │ ├── txn_failchk.c │ │ │ ├── txn_method.c │ │ │ ├── txn_rec.c │ │ │ ├── txn_recover.c │ │ │ ├── txn_region.c │ │ │ ├── txn_stat.c │ │ │ └── txn_util.c │ │ └── xa │ │ │ ├── xa.c │ │ │ └── xa_map.c │ ├── test │ │ ├── c │ │ │ ├── README │ │ │ ├── chk.ctests │ │ │ ├── common │ │ │ │ └── test_util.h │ │ │ ├── cutest │ │ │ │ ├── CuTest.c │ │ │ │ ├── CuTest.h │ │ │ │ ├── CuTests.c │ │ │ │ ├── Runner.c │ │ │ │ ├── gen_tester.sh │ │ │ │ └── license.txt │ │ │ ├── suites │ │ │ │ ├── TestChannel.c │ │ │ │ ├── TestDbHotBackup.c │ │ │ │ ├── TestDbTuner.c │ │ │ │ ├── TestEncryption.c │ │ │ │ ├── TestEnvConfig.c │ │ │ │ ├── TestEnvMethod.c │ │ │ │ ├── TestKeyExistErrorReturn.c │ │ │ │ ├── TestPartial.c │ │ │ │ └── TestQueue.c │ │ │ ├── test_api_methods.c │ │ │ ├── test_db185.c │ │ │ ├── test_db185 │ │ │ │ ├── O.BH │ │ │ │ └── O.R │ │ │ └── test_log_verify.c │ │ ├── csharp │ │ │ ├── AllTestData.xml │ │ │ ├── BTreeCursorTest.cs │ │ │ ├── BTreeDatabaseConfigTest.cs │ │ │ ├── BTreeDatabaseTest.cs │ │ │ ├── CSharpTestFixture.cs │ │ │ ├── Configuration.cs │ │ │ ├── CursorConfigTest.cs │ │ │ ├── CursorTest.cs │ │ │ ├── DatabaseConfigTest.cs │ │ │ ├── DatabaseEnvironmentConfigTest.cs │ │ │ ├── DatabaseEnvironmentTest.cs │ │ │ ├── DatabaseExceptionTest.cs │ │ │ ├── DatabaseTest.cs │ │ │ ├── DotNetTest.csproj │ │ │ ├── ForeignKeyTest.cs │ │ │ ├── HashCursorTest.cs │ │ │ ├── HashDatabaseConfigTest.cs │ │ │ ├── HashDatabaseTest.cs │ │ │ ├── HeapDatabaseConfigTest.cs │ │ │ ├── HeapDatabaseTest.cs │ │ │ ├── JoinCursorTest.cs │ │ │ ├── LockTest.cs │ │ │ ├── LockingConfigTest.cs │ │ │ ├── LogConfigTest.cs │ │ │ ├── LogCursorTest.cs │ │ │ ├── MPoolConfigTest.cs │ │ │ ├── MutexConfigTest.cs │ │ │ ├── MutexTest.cs │ │ │ ├── QueueDatabaseConfigTest.cs │ │ │ ├── QueueDatabaseTest.cs │ │ │ ├── RecnoCursorTest.cs │ │ │ ├── RecnoDatabaseConfigTest.cs │ │ │ ├── RecnoDatabaseTest.cs │ │ │ ├── ReplicationConfigTest.cs │ │ │ ├── ReplicationTest.cs │ │ │ ├── SecondaryBTreeDatabaseConfigTest.cs │ │ │ ├── SecondaryBTreeDatabaseTest.cs │ │ │ ├── SecondaryCursorTest.cs │ │ │ ├── SecondaryDatabaseConfigTest.cs │ │ │ ├── SecondaryDatabaseTest.cs │ │ │ ├── SecondaryHashDatabaseConfigTest.cs │ │ │ ├── SecondaryHashDatabaseTest.cs │ │ │ ├── SecondaryQueueDatabaseConfigTest.cs │ │ │ ├── SecondaryQueueDatabaseTest.cs │ │ │ ├── SecondaryRecnoDatabaseConfigTest.cs │ │ │ ├── SecondaryRecnoDatabaseTest.cs │ │ │ ├── SequenceConfigTest.cs │ │ │ ├── SequenceTest.cs │ │ │ ├── TestException.cs │ │ │ ├── TransactionCommitTokenTest.cs │ │ │ ├── TransactionConfigTest.cs │ │ │ ├── TransactionTest.cs │ │ │ ├── XMLReader.cs │ │ │ └── bdb4.7.db │ │ ├── cxx │ │ │ ├── README │ │ │ ├── TestConstruct01.cpp │ │ │ ├── TestConstruct01.testerr │ │ │ ├── TestConstruct01.testout │ │ │ ├── TestGetSetMethods.cpp │ │ │ ├── TestKeyRange.cpp │ │ │ ├── TestKeyRange.testin │ │ │ ├── TestKeyRange.testout │ │ │ ├── TestLogc.cpp │ │ │ ├── TestLogc.testout │ │ │ ├── TestMulti.cpp │ │ │ ├── TestSimpleAccess.cpp │ │ │ ├── TestSimpleAccess.testout │ │ │ ├── TestTruncate.cpp │ │ │ ├── TestTruncate.testout │ │ │ ├── chk.cxxtests │ │ │ ├── ignore │ │ │ ├── testall │ │ │ └── testone │ │ ├── java │ │ │ ├── compat │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.xml │ │ │ │ ├── chk.bdb │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sleepycat │ │ │ │ │ ├── bind │ │ │ │ │ ├── serial │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── MarshalledObject.java │ │ │ │ │ │ │ ├── NullClassCatalog.java │ │ │ │ │ │ │ ├── SerialBindingTest.java │ │ │ │ │ │ │ └── TestClassCatalog.java │ │ │ │ │ ├── test │ │ │ │ │ │ └── BindingSpeedTest.java │ │ │ │ │ └── tuple │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── MarshalledObject.java │ │ │ │ │ │ ├── TupleBindingTest.java │ │ │ │ │ │ ├── TupleFormatTest.java │ │ │ │ │ │ └── TupleOrderingTest.java │ │ │ │ │ ├── collections │ │ │ │ │ ├── KeyRangeTest.java │ │ │ │ │ └── test │ │ │ │ │ │ ├── CollectionTest.java │ │ │ │ │ │ ├── DbTestUtil.java │ │ │ │ │ │ ├── ForeignKeyTest.java │ │ │ │ │ │ ├── IterDeadlockTest.java │ │ │ │ │ │ ├── JoinTest.java │ │ │ │ │ │ ├── NullTransactionRunner.java │ │ │ │ │ │ ├── NullValueTest.java │ │ │ │ │ │ ├── SecondaryDeadlockTest.java │ │ │ │ │ │ ├── TestDataBinding.java │ │ │ │ │ │ ├── TestEntity.java │ │ │ │ │ │ ├── TestEntityBinding.java │ │ │ │ │ │ ├── TestEnv.java │ │ │ │ │ │ ├── TestKeyAssigner.java │ │ │ │ │ │ ├── TestKeyCreator.java │ │ │ │ │ │ ├── TestSR15721.java │ │ │ │ │ │ ├── TestStore.java │ │ │ │ │ │ ├── TransactionTest.java │ │ │ │ │ │ └── serial │ │ │ │ │ │ ├── CatalogCornerCaseTest.java │ │ │ │ │ │ ├── StoredClassCatalogTest.java │ │ │ │ │ │ ├── StoredClassCatalogTestInit.java │ │ │ │ │ │ ├── TestSerial.java │ │ │ │ │ │ ├── TestSerial.java.original │ │ │ │ │ │ └── TupleSerialFactoryTest.java │ │ │ │ │ ├── db │ │ │ │ │ └── util │ │ │ │ │ │ └── DualTestCase.java │ │ │ │ │ ├── persist │ │ │ │ │ └── test │ │ │ │ │ │ ├── BindingTest.java │ │ │ │ │ │ ├── Enhanced0.java │ │ │ │ │ │ ├── Enhanced1.java │ │ │ │ │ │ ├── Enhanced2.java │ │ │ │ │ │ ├── Enhanced3.java │ │ │ │ │ │ ├── EvolveCase.java │ │ │ │ │ │ ├── EvolveClasses.java │ │ │ │ │ │ ├── EvolveClasses.java.original │ │ │ │ │ │ ├── EvolveTest.java │ │ │ │ │ │ ├── EvolveTestBase.java │ │ │ │ │ │ ├── EvolveTestInit.java │ │ │ │ │ │ ├── ForeignKeyTest.java │ │ │ │ │ │ ├── IndexTest.java │ │ │ │ │ │ ├── JoinTest.java │ │ │ │ │ │ ├── NegativeTest.java │ │ │ │ │ │ ├── OperationTest.java │ │ │ │ │ │ ├── PersistTestUtils.java │ │ │ │ │ │ ├── SequenceTest.java │ │ │ │ │ │ └── SubclassIndexTest.java │ │ │ │ │ └── util │ │ │ │ │ └── test │ │ │ │ │ ├── ExceptionWrapperTest.java │ │ │ │ │ ├── FastOutputStreamTest.java │ │ │ │ │ ├── PackedIntegerTest.java │ │ │ │ │ ├── SharedTestUtils.java │ │ │ │ │ ├── TestEnv.java │ │ │ │ │ ├── TxnTestCase.java │ │ │ │ │ └── UtfTest.java │ │ │ ├── junit │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── chk.bdb │ │ │ │ ├── makenewtest.sh │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── sleepycat │ │ │ │ │ └── db │ │ │ │ │ └── test │ │ │ │ │ ├── AppendRecnoTest.java │ │ │ │ │ ├── AssociateTest.java │ │ │ │ │ ├── BackupTest.java │ │ │ │ │ ├── CallbackTest.java │ │ │ │ │ ├── ClosedDbTest.java │ │ │ │ │ ├── DatabaseTest.java │ │ │ │ │ ├── EncryptTest.java │ │ │ │ │ ├── EnvRegionSizeTest.java │ │ │ │ │ ├── HashCompareTest.java │ │ │ │ │ ├── LogCursorTest.java │ │ │ │ │ ├── MultipleCursorTest.java │ │ │ │ │ ├── PartialGetTest.java │ │ │ │ │ ├── PriorityTest.java │ │ │ │ │ ├── RepmgrConfigTest.java │ │ │ │ │ ├── RepmgrElectionTest.java │ │ │ │ │ ├── RepmgrSiteTest.java │ │ │ │ │ ├── RepmgrStartupTest.java │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ └── VerboseConfigTest.java │ │ │ └── rep │ │ │ │ ├── README │ │ │ │ ├── build.xml │ │ │ │ ├── fiddler │ │ │ │ ├── fiddler.erl │ │ │ │ ├── fiddler1.erl │ │ │ │ ├── manager.erl │ │ │ │ ├── optstore.erl │ │ │ │ ├── reader.erl │ │ │ │ ├── registry.erl │ │ │ │ ├── rep_literals.hrl │ │ │ │ └── util.erl │ │ │ │ ├── tests │ │ │ │ ├── rep │ │ │ │ │ ├── TestEmptyLogElection.java │ │ │ │ │ └── TestMirandaTimeout.java │ │ │ │ └── repmgrtests │ │ │ │ │ ├── EventHandler.java │ │ │ │ │ ├── PortsConfig.java │ │ │ │ │ ├── TestConfig.java │ │ │ │ │ ├── TestDrainAbandon.java │ │ │ │ │ ├── TestDrainCommitx.java │ │ │ │ │ ├── TestDrainIntInit.java │ │ │ │ │ ├── TestHeartbeats.java │ │ │ │ │ ├── TestNoClient.java │ │ │ │ │ ├── TestRedundantTakeover.java │ │ │ │ │ ├── TestRepmgr.java │ │ │ │ │ ├── TestStrictElect.java │ │ │ │ │ └── Util.java │ │ │ │ └── upgrades │ │ │ │ ├── current │ │ │ │ └── repmgrtests │ │ │ │ │ ├── ConnectScript.java │ │ │ │ │ └── CurrentImpl.java │ │ │ │ ├── test │ │ │ │ └── repmgrtests │ │ │ │ │ ├── AbstractUpgTest.java │ │ │ │ │ ├── Config.java │ │ │ │ │ ├── MyStats.java │ │ │ │ │ ├── SimpleConnectTest.java │ │ │ │ │ ├── TestMixedHeartbeats.java │ │ │ │ │ ├── TestReverseConnect.java │ │ │ │ │ ├── TestSimpleFwdConnect.java │ │ │ │ │ └── TestSimpleRevConnect.java │ │ │ │ ├── v46 │ │ │ │ └── repmgrtests │ │ │ │ │ └── V46impl.java │ │ │ │ └── v47 │ │ │ │ └── repmgrtests │ │ │ │ └── ConnectScript.java │ │ ├── micro │ │ │ ├── README │ │ │ ├── configs │ │ │ │ ├── run.small │ │ │ │ ├── run.std │ │ │ │ └── run.workload │ │ │ ├── report │ │ │ ├── report.awk │ │ │ ├── source │ │ │ │ ├── LIST │ │ │ │ ├── b_curalloc.c │ │ │ │ ├── b_curwalk.c │ │ │ │ ├── b_del.c │ │ │ │ ├── b_get.c │ │ │ │ ├── b_inmem.c │ │ │ │ ├── b_latch.c │ │ │ │ ├── b_load.c │ │ │ │ ├── b_open.c │ │ │ │ ├── b_put.c │ │ │ │ ├── b_recover.c │ │ │ │ ├── b_txn.c │ │ │ │ ├── b_txn_write.c │ │ │ │ ├── b_uname.c │ │ │ │ ├── b_util.c │ │ │ │ ├── b_workload.c │ │ │ │ ├── b_workload.h │ │ │ │ ├── bench.h │ │ │ │ └── test_micro.c │ │ │ └── test_micro │ │ ├── sql │ │ │ ├── README │ │ │ ├── bdb-test.sh │ │ │ ├── bdb_deadlock.test │ │ │ ├── bdb_dupset.test │ │ │ ├── bdb_excl.test │ │ │ ├── bdb_exclusive.test │ │ │ ├── bdb_inmem_memleak.test │ │ │ ├── bdb_logsize.test │ │ │ ├── bdb_multi_proc.test │ │ │ ├── bdb_mvcc.test │ │ │ ├── bdb_persistent_pragma.test │ │ │ ├── bdb_pragmas.test │ │ │ ├── bdb_rdonly.test │ │ │ ├── bdb_replication.test │ │ │ ├── bdb_sequence.test │ │ │ ├── bdb_sql.test │ │ │ ├── bdb_util.tcl │ │ │ └── bdb_vacuum.test │ │ ├── sql_codegen │ │ │ ├── chk.bdb │ │ │ ├── data │ │ │ │ ├── 17925.sql │ │ │ │ ├── all_data_types.sql │ │ │ │ ├── bigint_table.sql │ │ │ │ ├── bin_table.sql │ │ │ │ ├── bit_table.sql │ │ │ │ ├── btree_table.sql │ │ │ │ ├── cachesize.sql │ │ │ │ ├── char_length.sql │ │ │ │ ├── char_table.sql │ │ │ │ ├── column_name_conflict_with_table.sql │ │ │ │ ├── commented_dml.sql │ │ │ │ ├── comments_at_the_end.sql │ │ │ │ ├── constraints_name_conflict_with_column.sql │ │ │ │ ├── constraints_on_nonexistent_column.sql │ │ │ │ ├── constraints_on_nonexistent_table.sql │ │ │ │ ├── database_without_name.sql │ │ │ │ ├── decimal_table.sql │ │ │ │ ├── dml.sql │ │ │ │ ├── double_table.sql │ │ │ │ ├── float_table.sql │ │ │ │ ├── hash_table.sql │ │ │ │ ├── index_name_conflict_with_column.sql │ │ │ │ ├── index_without_name.sql │ │ │ │ ├── int_table.sql │ │ │ │ ├── integer_table.sql │ │ │ │ ├── many_tables.sql │ │ │ │ ├── no_primary_key_constraint.sql │ │ │ │ ├── nonexistent_column_constraints.sql │ │ │ │ ├── numeric_table.sql │ │ │ │ ├── only_database.sql │ │ │ │ ├── only_index.sql │ │ │ │ ├── only_table.sql │ │ │ │ ├── real_table.sql │ │ │ │ ├── sample.sql │ │ │ │ ├── sample_env_no_txn_db_no_txn.sql │ │ │ │ ├── sample_env_no_txn_db_nontxn.sql │ │ │ │ ├── sample_env_no_txn_db_txn.sql │ │ │ │ ├── sample_env_nontxn_db_no_txn.sql │ │ │ │ ├── sample_env_nontxn_db_nontxn.sql │ │ │ │ ├── sample_env_nontxn_db_txn.sql │ │ │ │ ├── sample_env_txn_db_no_txn.sql │ │ │ │ ├── sample_env_txn_db_nontxn.sql │ │ │ │ ├── sample_env_txn_db_txn.sql │ │ │ │ ├── sample_env_txn_dbs_mix_txn.sql │ │ │ │ ├── sample_env_txn_no_db.sql │ │ │ │ ├── sample_envs_txn.sql │ │ │ │ ├── sample_no_env_db_no_txn.sql │ │ │ │ ├── sample_no_env_db_nontxn.sql │ │ │ │ ├── sample_no_env_db_txn.sql │ │ │ │ ├── sample_nontxn_index.sql │ │ │ │ ├── smallint_table.sql │ │ │ │ ├── table_name_conflict_with_database.sql │ │ │ │ ├── table_without_name.sql │ │ │ │ ├── tiny_table.sql │ │ │ │ ├── two_different_databases.sql │ │ │ │ ├── two_different_indexes.sql │ │ │ │ ├── two_different_tables.sql │ │ │ │ ├── two_indexes_on_same_column.sql │ │ │ │ ├── two_same_columns.sql │ │ │ │ ├── two_same_databases.sql │ │ │ │ ├── two_same_indexes.sql │ │ │ │ ├── two_same_name_columns.sql │ │ │ │ ├── two_same_name_columns_in_different_tables.sql │ │ │ │ ├── two_same_name_indexes.sql │ │ │ │ ├── two_same_name_tables.sql │ │ │ │ ├── two_same_tables.sql │ │ │ │ ├── unsupported_access_method.sql │ │ │ │ ├── unsupported_data_type.sql │ │ │ │ ├── varchar_length.sql │ │ │ │ ├── varchar_table.sql │ │ │ │ └── wrong_create_sequence.sql │ │ │ └── nMakefile │ │ ├── tcl │ │ │ ├── README │ │ │ ├── TESTS │ │ │ ├── archive.tcl │ │ │ ├── backup.tcl │ │ │ ├── bigfile001.tcl │ │ │ ├── bigfile002.tcl │ │ │ ├── byteorder.tcl │ │ │ ├── conscript.tcl │ │ │ ├── db_reptest.tcl │ │ │ ├── dbm.tcl │ │ │ ├── dbscript.tcl │ │ │ ├── ddoyscript.tcl │ │ │ ├── ddscript.tcl │ │ │ ├── dead001.tcl │ │ │ ├── dead002.tcl │ │ │ ├── dead003.tcl │ │ │ ├── dead004.tcl │ │ │ ├── dead005.tcl │ │ │ ├── dead006.tcl │ │ │ ├── dead007.tcl │ │ │ ├── dead008.tcl │ │ │ ├── dead009.tcl │ │ │ ├── dead010.tcl │ │ │ ├── dead011.tcl │ │ │ ├── env001.tcl │ │ │ ├── env002.tcl │ │ │ ├── env003.tcl │ │ │ ├── env004.tcl │ │ │ ├── env005.tcl │ │ │ ├── env006.tcl │ │ │ ├── env007.tcl │ │ │ ├── env007script.tcl │ │ │ ├── env008.tcl │ │ │ ├── env009.tcl │ │ │ ├── env010.tcl │ │ │ ├── env011.tcl │ │ │ ├── env012.tcl │ │ │ ├── env013.tcl │ │ │ ├── env014.tcl │ │ │ ├── env015.tcl │ │ │ ├── env016.tcl │ │ │ ├── env017.tcl │ │ │ ├── env018.tcl │ │ │ ├── env019.tcl │ │ │ ├── env019script.tcl │ │ │ ├── env020.tcl │ │ │ ├── env021.tcl │ │ │ ├── envscript.tcl │ │ │ ├── fop001.tcl │ │ │ ├── fop002.tcl │ │ │ ├── fop003.tcl │ │ │ ├── fop004.tcl │ │ │ ├── fop005.tcl │ │ │ ├── fop006.tcl │ │ │ ├── fop007.tcl │ │ │ ├── fop008.tcl │ │ │ ├── fop009.tcl │ │ │ ├── fop010.tcl │ │ │ ├── fop011.tcl │ │ │ ├── fop012.tcl │ │ │ ├── fopscript.tcl │ │ │ ├── foputils.tcl │ │ │ ├── hsearch.tcl │ │ │ ├── include.tcl │ │ │ ├── join.tcl │ │ │ ├── lock001.tcl │ │ │ ├── lock002.tcl │ │ │ ├── lock003.tcl │ │ │ ├── lock004.tcl │ │ │ ├── lock005.tcl │ │ │ ├── lock006.tcl │ │ │ ├── lockscript.tcl │ │ │ ├── log001.tcl │ │ │ ├── log002.tcl │ │ │ ├── log003.tcl │ │ │ ├── log004.tcl │ │ │ ├── log005.tcl │ │ │ ├── log006.tcl │ │ │ ├── log007.tcl │ │ │ ├── log008.tcl │ │ │ ├── log008script.tcl │ │ │ ├── log009.tcl │ │ │ ├── logtrack.list │ │ │ ├── logtrack.tcl │ │ │ ├── mdbscript.tcl │ │ │ ├── memp001.tcl │ │ │ ├── memp002.tcl │ │ │ ├── memp003.tcl │ │ │ ├── memp004.tcl │ │ │ ├── memp005.tcl │ │ │ ├── mpoolscript.tcl │ │ │ ├── mut001.tcl │ │ │ ├── mut002.tcl │ │ │ ├── mut002script.tcl │ │ │ ├── mut003.tcl │ │ │ ├── ndbm.tcl │ │ │ ├── parallel.tcl │ │ │ ├── plat001.tcl │ │ │ ├── portable.tcl │ │ │ ├── recd001.tcl │ │ │ ├── recd002.tcl │ │ │ ├── recd003.tcl │ │ │ ├── recd004.tcl │ │ │ ├── recd005.tcl │ │ │ ├── recd006.tcl │ │ │ ├── recd007.tcl │ │ │ ├── recd008.tcl │ │ │ ├── recd009.tcl │ │ │ ├── recd010.tcl │ │ │ ├── recd011.tcl │ │ │ ├── recd012.tcl │ │ │ ├── recd013.tcl │ │ │ ├── recd014.tcl │ │ │ ├── recd015.tcl │ │ │ ├── recd016.tcl │ │ │ ├── recd017.tcl │ │ │ ├── recd018.tcl │ │ │ ├── recd019.tcl │ │ │ ├── recd020.tcl │ │ │ ├── recd021.tcl │ │ │ ├── recd022.tcl │ │ │ ├── recd023.tcl │ │ │ ├── recd024.tcl │ │ │ ├── recd025.tcl │ │ │ ├── recd15scr.tcl │ │ │ ├── recdscript.tcl │ │ │ ├── rep001.tcl │ │ │ ├── rep002.tcl │ │ │ ├── rep003.tcl │ │ │ ├── rep005.tcl │ │ │ ├── rep006.tcl │ │ │ ├── rep007.tcl │ │ │ ├── rep008.tcl │ │ │ ├── rep009.tcl │ │ │ ├── rep010.tcl │ │ │ ├── rep011.tcl │ │ │ ├── rep012.tcl │ │ │ ├── rep013.tcl │ │ │ ├── rep014.tcl │ │ │ ├── rep015.tcl │ │ │ ├── rep016.tcl │ │ │ ├── rep017.tcl │ │ │ ├── rep017script.tcl │ │ │ ├── rep018.tcl │ │ │ ├── rep018script.tcl │ │ │ ├── rep019.tcl │ │ │ ├── rep020.tcl │ │ │ ├── rep021.tcl │ │ │ ├── rep022.tcl │ │ │ ├── rep023.tcl │ │ │ ├── rep024.tcl │ │ │ ├── rep025.tcl │ │ │ ├── rep026.tcl │ │ │ ├── rep027.tcl │ │ │ ├── rep028.tcl │ │ │ ├── rep029.tcl │ │ │ ├── rep030.tcl │ │ │ ├── rep031.tcl │ │ │ ├── rep032.tcl │ │ │ ├── rep033.tcl │ │ │ ├── rep034.tcl │ │ │ ├── rep035.tcl │ │ │ ├── rep035script.tcl │ │ │ ├── rep036.tcl │ │ │ ├── rep036script.tcl │ │ │ ├── rep037.tcl │ │ │ ├── rep038.tcl │ │ │ ├── rep039.tcl │ │ │ ├── rep040.tcl │ │ │ ├── rep040script.tcl │ │ │ ├── rep041.tcl │ │ │ ├── rep042.tcl │ │ │ ├── rep042script.tcl │ │ │ ├── rep043.tcl │ │ │ ├── rep043script.tcl │ │ │ ├── rep044.tcl │ │ │ ├── rep045.tcl │ │ │ ├── rep045script.tcl │ │ │ ├── rep046.tcl │ │ │ ├── rep047.tcl │ │ │ ├── rep048.tcl │ │ │ ├── rep048script.tcl │ │ │ ├── rep049.tcl │ │ │ ├── rep050.tcl │ │ │ ├── rep051.tcl │ │ │ ├── rep052.tcl │ │ │ ├── rep053.tcl │ │ │ ├── rep054.tcl │ │ │ ├── rep055.tcl │ │ │ ├── rep058.tcl │ │ │ ├── rep060.tcl │ │ │ ├── rep061.tcl │ │ │ ├── rep062.tcl │ │ │ ├── rep063.tcl │ │ │ ├── rep064.tcl │ │ │ ├── rep065.tcl │ │ │ ├── rep065script.tcl │ │ │ ├── rep066.tcl │ │ │ ├── rep067.tcl │ │ │ ├── rep068.tcl │ │ │ ├── rep069.tcl │ │ │ ├── rep070.tcl │ │ │ ├── rep071.tcl │ │ │ ├── rep072.tcl │ │ │ ├── rep073.tcl │ │ │ ├── rep074.tcl │ │ │ ├── rep075.tcl │ │ │ ├── rep076.tcl │ │ │ ├── rep077.tcl │ │ │ ├── rep078.tcl │ │ │ ├── rep078script.tcl │ │ │ ├── rep079.tcl │ │ │ ├── rep080.tcl │ │ │ ├── rep081.tcl │ │ │ ├── rep082.tcl │ │ │ ├── rep083.tcl │ │ │ ├── rep084.tcl │ │ │ ├── rep085.tcl │ │ │ ├── rep086.tcl │ │ │ ├── rep087.tcl │ │ │ ├── rep088.tcl │ │ │ ├── rep089.tcl │ │ │ ├── rep090.tcl │ │ │ ├── rep091.tcl │ │ │ ├── rep092.tcl │ │ │ ├── rep092script.tcl │ │ │ ├── rep093.tcl │ │ │ ├── rep094.tcl │ │ │ ├── rep095.tcl │ │ │ ├── rep095script.tcl │ │ │ ├── rep096.tcl │ │ │ ├── rep097.tcl │ │ │ ├── rep097script.tcl │ │ │ ├── rep098.tcl │ │ │ ├── rep099.tcl │ │ │ ├── rep100.tcl │ │ │ ├── rep101.tcl │ │ │ ├── rep102.tcl │ │ │ ├── rep102script.tcl │ │ │ ├── rep109.tcl │ │ │ ├── repmgr001.tcl │ │ │ ├── repmgr002.tcl │ │ │ ├── repmgr003.tcl │ │ │ ├── repmgr007.tcl │ │ │ ├── repmgr009.tcl │ │ │ ├── repmgr010.tcl │ │ │ ├── repmgr011.tcl │ │ │ ├── repmgr012.tcl │ │ │ ├── repmgr013.tcl │ │ │ ├── repmgr017.tcl │ │ │ ├── repmgr018.tcl │ │ │ ├── repmgr023.tcl │ │ │ ├── repmgr024.tcl │ │ │ ├── repmgr025.tcl │ │ │ ├── repmgr026.tcl │ │ │ ├── repmgr027.tcl │ │ │ ├── repmgr028.tcl │ │ │ ├── repmgr028script.tcl │ │ │ ├── repmgr029.tcl │ │ │ ├── repmgr029script.tcl │ │ │ ├── repmgr029script2.tcl │ │ │ ├── repmgr030.tcl │ │ │ ├── repmgr031.tcl │ │ │ ├── repmgr032.tcl │ │ │ ├── repmgr033.tcl │ │ │ ├── repmgr034.tcl │ │ │ ├── repmgr100.tcl │ │ │ ├── repmgr101.tcl │ │ │ ├── repmgr102.tcl │ │ │ ├── repmgr105.tcl │ │ │ ├── repmgr106.tcl │ │ │ ├── repmgr107.tcl │ │ │ ├── repmgr108.tcl │ │ │ ├── repmgr109.tcl │ │ │ ├── repmgr110.tcl │ │ │ ├── repmgr111.tcl │ │ │ ├── repmgr112.tcl │ │ │ ├── reputils.tcl │ │ │ ├── reputilsnoenv.tcl │ │ │ ├── rsrc001.tcl │ │ │ ├── rsrc002.tcl │ │ │ ├── rsrc003.tcl │ │ │ ├── rsrc004.tcl │ │ │ ├── sdb001.tcl │ │ │ ├── sdb002.tcl │ │ │ ├── sdb003.tcl │ │ │ ├── sdb004.tcl │ │ │ ├── sdb005.tcl │ │ │ ├── sdb006.tcl │ │ │ ├── sdb007.tcl │ │ │ ├── sdb008.tcl │ │ │ ├── sdb009.tcl │ │ │ ├── sdb010.tcl │ │ │ ├── sdb011.tcl │ │ │ ├── sdb012.tcl │ │ │ ├── sdb013.tcl │ │ │ ├── sdb014.tcl │ │ │ ├── sdb015.tcl │ │ │ ├── sdb016.tcl │ │ │ ├── sdb017.tcl │ │ │ ├── sdb018.tcl │ │ │ ├── sdb019.tcl │ │ │ ├── sdb020.tcl │ │ │ ├── sdbscript.tcl │ │ │ ├── sdbtest001.tcl │ │ │ ├── sdbtest002.tcl │ │ │ ├── sdbutils.tcl │ │ │ ├── sec001.tcl │ │ │ ├── sec002.tcl │ │ │ ├── shelltest.tcl │ │ │ ├── si001.tcl │ │ │ ├── si002.tcl │ │ │ ├── si003.tcl │ │ │ ├── si004.tcl │ │ │ ├── si005.tcl │ │ │ ├── si006.tcl │ │ │ ├── si007.tcl │ │ │ ├── si008.tcl │ │ │ ├── sijointest.tcl │ │ │ ├── siutils.tcl │ │ │ ├── sql001.tcl │ │ │ ├── sysscript.tcl │ │ │ ├── t106script.tcl │ │ │ ├── test.tcl │ │ │ ├── test001.tcl │ │ │ ├── test002.tcl │ │ │ ├── test003.tcl │ │ │ ├── test004.tcl │ │ │ ├── test005.tcl │ │ │ ├── test006.tcl │ │ │ ├── test007.tcl │ │ │ ├── test008.tcl │ │ │ ├── test009.tcl │ │ │ ├── test010.tcl │ │ │ ├── test011.tcl │ │ │ ├── test012.tcl │ │ │ ├── test013.tcl │ │ │ ├── test014.tcl │ │ │ ├── test015.tcl │ │ │ ├── test016.tcl │ │ │ ├── test017.tcl │ │ │ ├── test018.tcl │ │ │ ├── test019.tcl │ │ │ ├── test020.tcl │ │ │ ├── test021.tcl │ │ │ ├── test022.tcl │ │ │ ├── test023.tcl │ │ │ ├── test024.tcl │ │ │ ├── test025.tcl │ │ │ ├── test026.tcl │ │ │ ├── test027.tcl │ │ │ ├── test028.tcl │ │ │ ├── test029.tcl │ │ │ ├── test030.tcl │ │ │ ├── test031.tcl │ │ │ ├── test032.tcl │ │ │ ├── test033.tcl │ │ │ ├── test034.tcl │ │ │ ├── test035.tcl │ │ │ ├── test036.tcl │ │ │ ├── test037.tcl │ │ │ ├── test038.tcl │ │ │ ├── test039.tcl │ │ │ ├── test040.tcl │ │ │ ├── test041.tcl │ │ │ ├── test042.tcl │ │ │ ├── test043.tcl │ │ │ ├── test044.tcl │ │ │ ├── test045.tcl │ │ │ ├── test046.tcl │ │ │ ├── test047.tcl │ │ │ ├── test048.tcl │ │ │ ├── test049.tcl │ │ │ ├── test050.tcl │ │ │ ├── test051.tcl │ │ │ ├── test052.tcl │ │ │ ├── test053.tcl │ │ │ ├── test054.tcl │ │ │ ├── test055.tcl │ │ │ ├── test056.tcl │ │ │ ├── test057.tcl │ │ │ ├── test058.tcl │ │ │ ├── test059.tcl │ │ │ ├── test060.tcl │ │ │ ├── test061.tcl │ │ │ ├── test062.tcl │ │ │ ├── test063.tcl │ │ │ ├── test064.tcl │ │ │ ├── test065.tcl │ │ │ ├── test066.tcl │ │ │ ├── test067.tcl │ │ │ ├── test068.tcl │ │ │ ├── test069.tcl │ │ │ ├── test070.tcl │ │ │ ├── test071.tcl │ │ │ ├── test072.tcl │ │ │ ├── test073.tcl │ │ │ ├── test074.tcl │ │ │ ├── test076.tcl │ │ │ ├── test077.tcl │ │ │ ├── test078.tcl │ │ │ ├── test079.tcl │ │ │ ├── test081.tcl │ │ │ ├── test082.tcl │ │ │ ├── test083.tcl │ │ │ ├── test084.tcl │ │ │ ├── test085.tcl │ │ │ ├── test086.tcl │ │ │ ├── test087.tcl │ │ │ ├── test088.tcl │ │ │ ├── test089.tcl │ │ │ ├── test090.tcl │ │ │ ├── test091.tcl │ │ │ ├── test092.tcl │ │ │ ├── test093.tcl │ │ │ ├── test094.tcl │ │ │ ├── test095.tcl │ │ │ ├── test096.tcl │ │ │ ├── test097.tcl │ │ │ ├── test098.tcl │ │ │ ├── test099.tcl │ │ │ ├── test100.tcl │ │ │ ├── test101.tcl │ │ │ ├── test102.tcl │ │ │ ├── test103.tcl │ │ │ ├── test106.tcl │ │ │ ├── test107.tcl │ │ │ ├── test109.tcl │ │ │ ├── test110.tcl │ │ │ ├── test111.tcl │ │ │ ├── test112.tcl │ │ │ ├── test113.tcl │ │ │ ├── test114.tcl │ │ │ ├── test115.tcl │ │ │ ├── test116.tcl │ │ │ ├── test117.tcl │ │ │ ├── test119.tcl │ │ │ ├── test120.tcl │ │ │ ├── test121.tcl │ │ │ ├── test122.tcl │ │ │ ├── test123.tcl │ │ │ ├── test124.tcl │ │ │ ├── test125.tcl │ │ │ ├── test126.tcl │ │ │ ├── test127.tcl │ │ │ ├── test128.tcl │ │ │ ├── test129.tcl │ │ │ ├── test130.tcl │ │ │ ├── test131.tcl │ │ │ ├── test132.tcl │ │ │ ├── test133.tcl │ │ │ ├── test134.tcl │ │ │ ├── test135.tcl │ │ │ ├── test136.tcl │ │ │ ├── test137.tcl │ │ │ ├── test138.tcl │ │ │ ├── test139.tcl │ │ │ ├── test140.tcl │ │ │ ├── test141.tcl │ │ │ ├── test142.tcl │ │ │ ├── testparams.tcl │ │ │ ├── testutils.tcl │ │ │ ├── txn001.tcl │ │ │ ├── txn002.tcl │ │ │ ├── txn003.tcl │ │ │ ├── txn004.tcl │ │ │ ├── txn005.tcl │ │ │ ├── txn006.tcl │ │ │ ├── txn007.tcl │ │ │ ├── txn008.tcl │ │ │ ├── txn009.tcl │ │ │ ├── txn010.tcl │ │ │ ├── txn011.tcl │ │ │ ├── txn012.tcl │ │ │ ├── txn012script.tcl │ │ │ ├── txn013.tcl │ │ │ ├── txn014.tcl │ │ │ ├── txnscript.tcl │ │ │ ├── update.tcl │ │ │ ├── upgrade.tcl │ │ │ ├── wordlist │ │ │ ├── wrap.tcl │ │ │ └── wrap_reptest.tcl │ │ ├── tcl_utils │ │ │ ├── common_test_utils.tcl │ │ │ └── multi_proc_utils.tcl │ │ └── xa │ │ │ ├── chk.xa │ │ │ ├── src1 │ │ │ ├── client.c │ │ │ ├── datafml.fml │ │ │ ├── datafml.h │ │ │ ├── hdbrec.h │ │ │ ├── htimestampxa.c │ │ │ ├── htimestampxa.h │ │ │ ├── run.sh │ │ │ └── server.c │ │ │ ├── src2 │ │ │ ├── bdb1.c │ │ │ ├── bdb2.c │ │ │ ├── client.c │ │ │ ├── run.sh │ │ │ └── tuxconfig.sh │ │ │ ├── src3 │ │ │ ├── client.c │ │ │ ├── run.sh │ │ │ └── server.c │ │ │ ├── src4 │ │ │ ├── client.c │ │ │ ├── run.sh │ │ │ └── server.c │ │ │ ├── src5 │ │ │ ├── DB_CONFIG │ │ │ ├── client.c │ │ │ ├── run.sh │ │ │ └── server.c │ │ │ └── utilities │ │ │ ├── bdb_xa_util.c │ │ │ ├── bdb_xa_util.h │ │ │ ├── multi_1thr_tuxconfig.sh │ │ │ ├── multi_tuxconfig.sh │ │ │ └── tuxconfig.sh │ └── util │ │ ├── db_archive.c │ │ ├── db_checkpoint.c │ │ ├── db_deadlock.c │ │ ├── db_dump.c │ │ ├── db_dump185.c │ │ ├── db_hotbackup.c │ │ ├── db_load.c │ │ ├── db_log_verify.c │ │ ├── db_printlog.c │ │ ├── db_printlog │ │ ├── README │ │ ├── commit.awk │ │ ├── count.awk │ │ ├── dbname.awk │ │ ├── fileid.awk │ │ ├── logstat.awk │ │ ├── pgno.awk │ │ ├── range.awk │ │ ├── rectype.awk │ │ ├── status.awk │ │ └── txn.awk │ │ ├── db_recover.c │ │ ├── db_replicate.c │ │ ├── db_sql_codegen │ │ ├── buildpt.c │ │ ├── db_sql_codegen.c │ │ ├── db_sql_codegen.h │ │ ├── example │ │ │ ├── README │ │ │ └── sample.sql │ │ ├── generate.c │ │ ├── generate_test.c │ │ ├── generate_verification.c │ │ ├── generation.h │ │ ├── generation_utils.c │ │ ├── hint_comment.c │ │ ├── parsefuncs.c │ │ ├── preparser.c │ │ ├── sqlite │ │ │ ├── keywordhash.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── sqlite3.h │ │ │ ├── sqliteInt.h │ │ │ ├── sqliteLimit.h │ │ │ └── sqlprintf.c │ │ ├── tokenize.c │ │ └── utils.c │ │ ├── db_stat.c │ │ ├── db_stat │ │ └── dd.sh │ │ ├── db_tuner.c │ │ ├── db_upgrade.c │ │ ├── db_verify.c │ │ ├── dtrace │ │ ├── apicalls.d │ │ ├── apitimes.d │ │ ├── apitrace.d │ │ ├── cache.d │ │ ├── dbdefs.d │ │ ├── locktimes.d │ │ ├── locktimesid.d │ │ ├── mutex.d │ │ └── showerror.d │ │ └── systemtap │ │ ├── apicalls.stp │ │ ├── apitimes.stp │ │ ├── apitrace.stp │ │ ├── cache.stp │ │ ├── locktimes.stp │ │ ├── locktimesid.stp │ │ ├── mutex.stp │ │ └── showerror.stp ├── fc │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── CMakeLists.txt.bak │ ├── CMakeModules │ │ ├── ArgumentParser.cmake │ │ ├── FindBoost.cmake │ │ ├── FindReadline.cmake │ │ ├── FindVLD.cmake │ │ ├── FindWt.cmake │ │ ├── ParseLibraryList.cmake │ │ ├── SetupTargetMacros.cmake │ │ ├── UseLibraryMacros.cmake │ │ └── VersionMacros.cmake │ ├── GitVersionGen │ │ ├── GetGitRevisionDescription.cmake │ │ └── GetGitRevisionDescription.cmake.in │ ├── README-ecc.md │ ├── README.md │ ├── cmake_install.cmake │ ├── fc.natvis │ ├── git_revision.cpp │ ├── include │ │ ├── fc │ │ │ ├── actor.hpp │ │ │ ├── aligned.hpp │ │ │ ├── any.hpp │ │ │ ├── api.hpp │ │ │ ├── array.hpp │ │ │ ├── asio.hpp │ │ │ ├── bitutil.hpp │ │ │ ├── bloom_filter.hpp │ │ │ ├── compress │ │ │ │ ├── lzma.hpp │ │ │ │ ├── smaz.hpp │ │ │ │ └── zlib.hpp │ │ │ ├── container │ │ │ │ ├── deque.hpp │ │ │ │ ├── deque_fwd.hpp │ │ │ │ ├── flat.hpp │ │ │ │ └── flat_fwd.hpp │ │ │ ├── crypto │ │ │ │ ├── aes.hpp │ │ │ │ ├── base32.hpp │ │ │ │ ├── base36.hpp │ │ │ │ ├── base58.hpp │ │ │ │ ├── base64.hpp │ │ │ │ ├── bigint.hpp │ │ │ │ ├── blowfish.hpp │ │ │ │ ├── city.hpp │ │ │ │ ├── dh.hpp │ │ │ │ ├── digest.hpp │ │ │ │ ├── elliptic.hpp │ │ │ │ ├── hex.hpp │ │ │ │ ├── hmac.hpp │ │ │ │ ├── openssl.hpp │ │ │ │ ├── pke.hpp │ │ │ │ ├── rand.hpp │ │ │ │ ├── ripemd160.hpp │ │ │ │ ├── romix.hpp │ │ │ │ ├── salsa20.hpp │ │ │ │ ├── scrypt.hpp │ │ │ │ ├── sha1.hpp │ │ │ │ ├── sha224.hpp │ │ │ │ ├── sha256.hpp │ │ │ │ ├── sha512.hpp │ │ │ │ ├── sm3.h │ │ │ │ └── sms4.h │ │ │ ├── exception │ │ │ │ └── exception.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── fwd.hpp │ │ │ ├── fwd_impl.hpp │ │ │ ├── git_revision.hpp │ │ │ ├── interprocess │ │ │ │ ├── file_mapping.hpp │ │ │ │ ├── iprocess.hpp │ │ │ │ ├── mmap_struct.hpp │ │ │ │ ├── process.hpp │ │ │ │ └── signals.hpp │ │ │ ├── io │ │ │ │ ├── buffered_iostream.hpp │ │ │ │ ├── console.hpp │ │ │ │ ├── datastream.hpp │ │ │ │ ├── datastream_back.hpp │ │ │ │ ├── enum_type.hpp │ │ │ │ ├── fstream.hpp │ │ │ │ ├── iobuffer.hpp │ │ │ │ ├── iostream.hpp │ │ │ │ ├── json.hpp │ │ │ │ ├── json_relaxed.hpp │ │ │ │ ├── raw.hpp │ │ │ │ ├── raw_fwd.hpp │ │ │ │ ├── raw_unpack_file.hpp │ │ │ │ ├── raw_variant.hpp │ │ │ │ ├── sstream.hpp │ │ │ │ ├── stdio.hpp │ │ │ │ └── varint.hpp │ │ │ ├── log │ │ │ │ ├── appender.hpp │ │ │ │ ├── console_appender.hpp │ │ │ │ ├── file_appender.hpp │ │ │ │ ├── gelf_appender.hpp │ │ │ │ ├── log_message.hpp │ │ │ │ ├── logger.hpp │ │ │ │ └── logger_config.hpp │ │ │ ├── make_fused.hpp │ │ │ ├── network │ │ │ │ ├── gntp.hpp │ │ │ │ ├── http │ │ │ │ │ ├── connection.hpp │ │ │ │ │ ├── server.hpp │ │ │ │ │ └── websocket.hpp │ │ │ │ ├── ip.hpp │ │ │ │ ├── ntp.hpp │ │ │ │ ├── rate_limiting.hpp │ │ │ │ ├── resolve.hpp │ │ │ │ ├── tcp_socket.hpp │ │ │ │ ├── tcp_socket_io_hooks.hpp │ │ │ │ ├── udp_socket.hpp │ │ │ │ ├── udt_socket.hpp │ │ │ │ └── url.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── optional.hpp │ │ │ ├── platform_independence.hpp │ │ │ ├── real128.hpp │ │ │ ├── reflect │ │ │ │ ├── reflect.hpp │ │ │ │ ├── typename.hpp │ │ │ │ └── variant.hpp │ │ │ ├── rpc │ │ │ │ ├── api_connection.hpp │ │ │ │ ├── cli.hpp │ │ │ │ ├── http_api.hpp │ │ │ │ ├── json_connection.hpp │ │ │ │ ├── state.hpp │ │ │ │ ├── variant_connection.hpp │ │ │ │ ├── variant_stream.hpp │ │ │ │ └── websocket_api.hpp │ │ │ ├── safe.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── signal.hpp │ │ │ ├── signals.hpp │ │ │ ├── smart_ref_fwd.hpp │ │ │ ├── smart_ref_impl.hpp │ │ │ ├── ssh │ │ │ │ ├── client.hpp │ │ │ │ ├── error.hpp │ │ │ │ └── process.hpp │ │ │ ├── static_variant.hpp │ │ │ ├── string.hpp │ │ │ ├── thread │ │ │ │ ├── future.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── non_preemptable_scope_check.hpp │ │ │ │ ├── priority.hpp │ │ │ │ ├── scoped_lock.hpp │ │ │ │ ├── spin_lock.hpp │ │ │ │ ├── spin_yield_lock.hpp │ │ │ │ ├── task.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_specific.hpp │ │ │ │ ├── unique_lock.hpp │ │ │ │ └── wait_condition.hpp │ │ │ ├── time.hpp │ │ │ ├── tuple.hpp │ │ │ ├── uint128.hpp │ │ │ ├── unique_ptr.hpp │ │ │ ├── utf8.hpp │ │ │ ├── utility.hpp │ │ │ ├── variant.hpp │ │ │ ├── variant_object.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector_fwd.hpp │ │ │ └── wait_any.hpp │ │ └── secp256k1.h │ ├── src │ │ ├── asio.cpp │ │ ├── byteswap.hpp │ │ ├── compress │ │ │ ├── lzma.cpp │ │ │ ├── miniz.c │ │ │ ├── smaz.cpp │ │ │ └── zlib.cpp │ │ ├── crypto │ │ │ ├── _digest_common.cpp │ │ │ ├── _digest_common.hpp │ │ │ ├── _elliptic_impl_priv.hpp │ │ │ ├── _elliptic_impl_pub.hpp │ │ │ ├── aes.cpp │ │ │ ├── base32.cpp │ │ │ ├── base36.cpp │ │ │ ├── base58.cpp │ │ │ ├── base64.cpp │ │ │ ├── bigint.cpp │ │ │ ├── blowfish.cpp │ │ │ ├── city.cpp │ │ │ ├── crc.cpp │ │ │ ├── dh.cpp │ │ │ ├── elliptic_common.cpp │ │ │ ├── elliptic_impl_priv.cpp │ │ │ ├── elliptic_impl_pub.cpp │ │ │ ├── elliptic_mixed.cpp │ │ │ ├── elliptic_openssl.cpp │ │ │ ├── elliptic_secp256k1.cpp │ │ │ ├── hex.cpp │ │ │ ├── openssl.cpp │ │ │ ├── pke.cpp │ │ │ ├── rand.cpp │ │ │ ├── ripemd160.cpp │ │ │ ├── romix.cpp │ │ │ ├── salsa20.cpp │ │ │ ├── scrypt.cpp │ │ │ ├── sha1.cpp │ │ │ ├── sha224.cpp │ │ │ ├── sha256.cpp │ │ │ ├── sha512.cpp │ │ │ ├── sm3.cpp │ │ │ ├── sms4.c │ │ │ └── sms4_imp.cpp │ │ ├── exception.cpp │ │ ├── filesystem.cpp │ │ ├── git_revision.cpp.in │ │ ├── interprocess │ │ │ ├── file_mapping.cpp │ │ │ ├── mmap_struct.cpp │ │ │ ├── process.cpp │ │ │ └── signals.cpp │ │ ├── io │ │ │ ├── buffered_iostream.cpp │ │ │ ├── console.cpp │ │ │ ├── datastream.cpp │ │ │ ├── fstream.cpp │ │ │ ├── iostream.cpp │ │ │ ├── json.cpp │ │ │ ├── sstream.cpp │ │ │ └── varint.cpp │ │ ├── log │ │ │ ├── appender.cpp │ │ │ ├── console_appender.cpp │ │ │ ├── console_defines.h │ │ │ ├── file_appender.cpp │ │ │ ├── gelf_appender.cpp │ │ │ ├── log_message.cpp │ │ │ ├── logger.cpp │ │ │ └── logger_config.cpp │ │ ├── network │ │ │ ├── gntp.cpp │ │ │ ├── http │ │ │ │ ├── http_connection.cpp │ │ │ │ ├── http_server.cpp │ │ │ │ └── websocket.cpp │ │ │ ├── ip.cpp │ │ │ ├── ntp.cpp │ │ │ ├── ntp.cpp.bak │ │ │ ├── rate_limiting.cpp │ │ │ ├── resolve.cpp │ │ │ ├── tcp_socket.cpp │ │ │ ├── udp_socket.cpp │ │ │ ├── udt_socket.cpp │ │ │ └── url.cpp │ │ ├── real128.cpp │ │ ├── rpc │ │ │ ├── cli.cpp │ │ │ ├── http_api.cpp │ │ │ ├── json_connection.cpp │ │ │ ├── state.cpp │ │ │ └── websocket_api.cpp │ │ ├── shared_ptr.cpp │ │ ├── ssh │ │ │ ├── client.cpp │ │ │ ├── client_impl.hpp │ │ │ └── process.cpp │ │ ├── string.cpp │ │ ├── thread │ │ │ ├── context.hpp │ │ │ ├── future.cpp │ │ │ ├── mutex.cpp │ │ │ ├── mutex.cpp.bak │ │ │ ├── non_preemptable_scope_check.cpp │ │ │ ├── spin_lock.cpp │ │ │ ├── spin_yield_lock.cpp │ │ │ ├── task.cpp │ │ │ ├── thread.cpp │ │ │ ├── thread.cpp.bak │ │ │ ├── thread_d.hpp │ │ │ ├── thread_d.hpp.bak │ │ │ └── thread_specific.cpp │ │ ├── time.cpp │ │ ├── uint128.cpp │ │ ├── utf8.cpp │ │ ├── utf8 │ │ │ ├── ReleaseNotes │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ ├── unchecked.h │ │ │ └── utf8cpp.html │ │ ├── variant.cpp │ │ └── variant_object.cpp │ ├── tests │ │ ├── all_tests.cpp │ │ ├── api.cpp │ │ ├── blinding_test.cpp │ │ ├── bloom_test.cpp │ │ ├── compress │ │ │ └── compress.cpp │ │ ├── crypto │ │ │ ├── aes_test.cpp │ │ │ ├── base_n_tests.cpp │ │ │ ├── bigint_test.cpp │ │ │ ├── blind.cpp │ │ │ ├── blowfish_test.cpp │ │ │ ├── dh_test.cpp │ │ │ ├── ecc-interop.sh │ │ │ ├── ecc_test.cpp │ │ │ ├── rand_test.cpp │ │ │ └── sha_tests.cpp │ │ ├── hmac_test.cpp │ │ ├── network │ │ │ ├── http │ │ │ │ └── websocket_test.cpp │ │ │ └── ntp_test.cpp │ │ ├── rate_limiting.cpp │ │ ├── real128_test.cpp │ │ ├── rpc.cpp │ │ ├── sleep.cpp │ │ ├── thread │ │ │ └── task_cancel.cpp │ │ ├── udt_client.cpp │ │ ├── udt_server.cpp │ │ ├── udtc.cpp │ │ ├── udts.cpp │ │ └── utf8_test.cpp │ └── vendor │ │ ├── boost_1.51 │ │ ├── include │ │ │ └── boost │ │ │ │ ├── process.hpp │ │ │ │ └── process │ │ │ │ ├── all.hpp │ │ │ │ ├── child.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── context.hpp │ │ │ │ ├── detail │ │ │ │ ├── basic_status.hpp │ │ │ │ ├── basic_status_service.hpp │ │ │ │ ├── posix_helpers.hpp │ │ │ │ ├── status_impl.hpp │ │ │ │ ├── systembuf.hpp │ │ │ │ └── windows_helpers.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── handle.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── pid_type.hpp │ │ │ │ ├── pipe.hpp │ │ │ │ ├── pistream.hpp │ │ │ │ ├── postream.hpp │ │ │ │ ├── process.hpp │ │ │ │ ├── self.hpp │ │ │ │ ├── status.hpp │ │ │ │ ├── stream_behavior.hpp │ │ │ │ ├── stream_ends.hpp │ │ │ │ ├── stream_id.hpp │ │ │ │ └── stream_type.hpp │ │ └── libs │ │ │ └── context │ │ │ ├── asm │ │ │ ├── fcontext_arm_aapcs_elf_gas.S │ │ │ ├── fcontext_i386_ms_pe_masm.asm │ │ │ ├── fcontext_i386_sysv_elf_gas.S │ │ │ ├── fcontext_i386_sysv_macho_gas.S │ │ │ ├── fcontext_mips32_o32_elf_gas.S │ │ │ ├── fcontext_ppc32_sysv_elf_gas.S │ │ │ ├── fcontext_ppc64_sysv_elf_gas.S │ │ │ ├── fcontext_x86_64_ms_pe_masm.asm │ │ │ ├── fcontext_x86_64_sysv_elf_gas.S │ │ │ └── fcontext_x86_64_sysv_macho_gas.S │ │ │ ├── fcontext.cpp │ │ │ ├── seh.cpp │ │ │ ├── stack_allocator_posix.cpp │ │ │ ├── stack_allocator_windows.cpp │ │ │ ├── stack_utils_posix.cpp │ │ │ └── stack_utils_windows.cpp │ │ ├── cyoencode-1.0.2 │ │ ├── LICENSE.TXT │ │ ├── README.TXT │ │ └── src │ │ │ ├── CyoDecode.c │ │ │ ├── CyoDecode.h │ │ │ ├── CyoEncode.c │ │ │ ├── CyoEncode.h │ │ │ ├── build.sh │ │ │ ├── cyoencode-vc100.vcxproj │ │ │ ├── cyoencode-vc71.vcproj │ │ │ ├── cyoencode-vc80.vcproj │ │ │ ├── cyoencode-vc90.vcproj │ │ │ └── test.c │ │ ├── easylzma │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── common_internal.c │ │ │ ├── common_internal.h │ │ │ ├── compress.c │ │ │ ├── decompress.c │ │ │ ├── easylzma │ │ │ ├── common.h │ │ │ ├── compress.h │ │ │ └── decompress.h │ │ │ ├── lzip_header.c │ │ │ ├── lzip_header.h │ │ │ ├── lzma_c.c │ │ │ ├── lzma_c.h │ │ │ ├── lzma_header.c │ │ │ ├── lzma_header.h │ │ │ └── pavlov │ │ │ ├── 7zBuf.c │ │ │ ├── 7zBuf.h │ │ │ ├── 7zBuf2.c │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zFile.c │ │ │ ├── 7zFile.h │ │ │ ├── 7zStream.c │ │ │ ├── 7zVersion.h │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── Bcj2.c │ │ │ ├── Bcj2.h │ │ │ ├── Bra.c │ │ │ ├── Bra.h │ │ │ ├── Bra86.c │ │ │ ├── BraIA64.c │ │ │ ├── CpuArch.h │ │ │ ├── LzFind.c │ │ │ ├── LzFind.h │ │ │ ├── LzHash.h │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.c │ │ │ ├── LzmaEnc.h │ │ │ ├── LzmaLib.c │ │ │ ├── LzmaLib.h │ │ │ └── Types.h │ │ ├── salsa20 │ │ ├── ecrypt-config.h │ │ ├── ecrypt-machine.h │ │ ├── ecrypt-portable.h │ │ ├── ecrypt-sync.h │ │ ├── ecrypt.c │ │ └── salsa20.s │ │ ├── scrypt-jane │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── code │ │ │ ├── scrypt-conf.h │ │ │ ├── scrypt-jane-chacha.h │ │ │ ├── scrypt-jane-hash.h │ │ │ ├── scrypt-jane-hash_blake256.h │ │ │ ├── scrypt-jane-hash_blake512.h │ │ │ ├── scrypt-jane-hash_keccak.h │ │ │ ├── scrypt-jane-hash_sha256.h │ │ │ ├── scrypt-jane-hash_sha512.h │ │ │ ├── scrypt-jane-hash_skein512.h │ │ │ ├── scrypt-jane-mix_chacha-avx.h │ │ │ ├── scrypt-jane-mix_chacha-sse2.h │ │ │ ├── scrypt-jane-mix_chacha-ssse3.h │ │ │ ├── scrypt-jane-mix_chacha-xop.h │ │ │ ├── scrypt-jane-mix_chacha.h │ │ │ ├── scrypt-jane-mix_salsa-avx.h │ │ │ ├── scrypt-jane-mix_salsa-sse2.h │ │ │ ├── scrypt-jane-mix_salsa-xop.h │ │ │ ├── scrypt-jane-mix_salsa.h │ │ │ ├── scrypt-jane-mix_salsa64-avx.h │ │ │ ├── scrypt-jane-mix_salsa64-avx2.h │ │ │ ├── scrypt-jane-mix_salsa64-sse2.h │ │ │ ├── scrypt-jane-mix_salsa64-ssse3.h │ │ │ ├── scrypt-jane-mix_salsa64-xop.h │ │ │ ├── scrypt-jane-mix_salsa64.h │ │ │ ├── scrypt-jane-pbkdf2.h │ │ │ ├── scrypt-jane-portable-x86.h │ │ │ ├── scrypt-jane-portable.h │ │ │ ├── scrypt-jane-romix-basic.h │ │ │ ├── scrypt-jane-romix-template.h │ │ │ ├── scrypt-jane-romix.h │ │ │ ├── scrypt-jane-salsa.h │ │ │ ├── scrypt-jane-salsa64.h │ │ │ └── scrypt-jane-test-vectors.h │ │ ├── example.c │ │ ├── scrypt-jane-speed.c │ │ ├── scrypt-jane-test.c │ │ ├── scrypt-jane.c │ │ ├── scrypt-jane.h │ │ ├── test-speed.sh │ │ └── test.sh │ │ ├── secp256k1-zkp │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── build-aux │ │ │ ├── compile │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── m4 │ │ │ │ ├── bitcoin_secp.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── missing │ │ │ └── test-driver │ │ ├── configure │ │ ├── configure.ac │ │ ├── include │ │ │ └── secp256k1.h │ │ ├── libsecp256k1.pc.in │ │ ├── obj │ │ │ └── .gitignore │ │ ├── src │ │ │ ├── bench.h │ │ │ ├── bench_ecdh.c │ │ │ ├── bench_internal.c │ │ │ ├── bench_rangeproof.c │ │ │ ├── bench_recover.c │ │ │ ├── bench_sign.c │ │ │ ├── bench_verify.c │ │ │ ├── borromean.h │ │ │ ├── borromean_impl.h │ │ │ ├── ecdh.h │ │ │ ├── ecdh_impl.h │ │ │ ├── ecdsa.h │ │ │ ├── ecdsa_impl.h │ │ │ ├── eckey.h │ │ │ ├── eckey_impl.h │ │ │ ├── ecmult.h │ │ │ ├── ecmult_gen.h │ │ │ ├── ecmult_gen_impl.h │ │ │ ├── ecmult_impl.h │ │ │ ├── field.h │ │ │ ├── field_10x26.h │ │ │ ├── field_10x26_impl.h │ │ │ ├── field_5x52.h │ │ │ ├── field_5x52_asm_impl.h │ │ │ ├── field_5x52_impl.h │ │ │ ├── field_5x52_int128_impl.h │ │ │ ├── field_impl.h │ │ │ ├── group.h │ │ │ ├── group_impl.h │ │ │ ├── hash.h │ │ │ ├── hash_impl.h │ │ │ ├── java │ │ │ │ ├── org │ │ │ │ │ └── bitcoin │ │ │ │ │ │ └── NativeSecp256k1.java │ │ │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ │ │ └── org_bitcoin_NativeSecp256k1.h │ │ │ ├── libsecp256k1-config.h.in │ │ │ ├── libsecp256k1-config.h.in~ │ │ │ ├── num.h │ │ │ ├── num_gmp.h │ │ │ ├── num_gmp_impl.h │ │ │ ├── num_impl.h │ │ │ ├── rangeproof.h │ │ │ ├── rangeproof_impl.h │ │ │ ├── scalar.h │ │ │ ├── scalar_4x64.h │ │ │ ├── scalar_4x64_impl.h │ │ │ ├── scalar_8x32.h │ │ │ ├── scalar_8x32_impl.h │ │ │ ├── scalar_impl.h │ │ │ ├── secp256k1.c │ │ │ ├── testrand.h │ │ │ ├── testrand_impl.h │ │ │ ├── tests.c │ │ │ └── util.h │ │ └── tmp │ │ │ ├── project_secp256k1-cfgcmd.txt │ │ │ └── project_secp256k1-cfgcmd.txt.in │ │ ├── udt4 │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── progress.marks │ │ │ └── udt.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.txt │ │ ├── cmake_install.cmake │ │ └── src │ │ │ ├── api.cpp │ │ │ ├── api.h │ │ │ ├── buffer.cpp │ │ │ ├── buffer.h │ │ │ ├── cache.cpp │ │ │ ├── cache.h │ │ │ ├── ccc.cpp │ │ │ ├── ccc.h │ │ │ ├── channel.cpp │ │ │ ├── channel.h │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── core.cpp │ │ │ ├── core.h │ │ │ ├── epoll.cpp │ │ │ ├── epoll.h │ │ │ ├── list.cpp │ │ │ ├── list.h │ │ │ ├── md5.cpp │ │ │ ├── md5.h │ │ │ ├── packet.cpp │ │ │ ├── packet.h │ │ │ ├── queue.cpp │ │ │ ├── queue.h │ │ │ ├── udt.h │ │ │ ├── window.cpp │ │ │ └── window.h │ │ └── websocketpp │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeFiles │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── progress.marks │ │ ├── websocketpp-config.cmake │ │ └── websocketpp-configVersion.cmake │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── SConstruct │ │ ├── changelog.md │ │ ├── cmake │ │ └── CMakeHelpers.cmake │ │ ├── cmake_install.cmake │ │ ├── docs │ │ ├── simple_broadcast_server.cpp │ │ └── simple_count_server_thread.cpp │ │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── associative_storage │ │ │ └── associative_storage.cpp │ │ ├── broadcast_server │ │ │ ├── SConscript │ │ │ └── broadcast_server.cpp │ │ ├── debug_client │ │ │ ├── SConscript │ │ │ └── debug_client.cpp │ │ ├── debug_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── debug_server.cpp │ │ ├── dev │ │ │ ├── SConscript │ │ │ └── main.cpp │ │ ├── echo_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── echo_handler.hpp │ │ │ └── echo_server.cpp │ │ ├── echo_server_both │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── echo_server_both.cpp │ │ │ └── server.pem │ │ ├── echo_server_tls │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── dh.pem │ │ │ ├── echo_server_tls.cpp │ │ │ └── server.pem │ │ ├── enriched_storage │ │ │ └── enriched_storage.cpp │ │ ├── handler_switch │ │ │ └── handler_switch.cpp │ │ ├── iostream_server │ │ │ ├── SConscript │ │ │ └── iostream_server.cpp │ │ ├── print_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── print_server.cpp │ │ ├── simple_broadcast_server │ │ │ └── simple_broadcast_server.cpp │ │ ├── sip_client │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── SConscript │ │ │ └── sip_client.cpp │ │ ├── subprotocol_server │ │ │ ├── SConscript │ │ │ └── subprotocol_server.cpp │ │ ├── telemetry_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── telemetry_client.cpp │ │ ├── telemetry_server │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ ├── index.html │ │ │ └── telemetry_server.cpp │ │ ├── testee_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── testee_client.cpp │ │ ├── testee_server │ │ │ ├── SConscript │ │ │ └── testee_server.cpp │ │ └── utility_client │ │ │ ├── CMakeLists.txt │ │ │ ├── SConscript │ │ │ └── utility_client.cpp │ │ ├── readme.md │ │ ├── roadmap.md │ │ ├── test │ │ ├── connection │ │ │ ├── SConscript │ │ │ ├── connection.cpp │ │ │ ├── connection_tu2.cpp │ │ │ └── connection_tu2.hpp │ │ ├── endpoint │ │ │ ├── SConscript │ │ │ └── endpoint.cpp │ │ ├── extension │ │ │ ├── SConscript │ │ │ ├── extension.cpp │ │ │ └── permessage_deflate.cpp │ │ ├── http │ │ │ ├── SConscript │ │ │ ├── a.out │ │ │ ├── parser.cpp │ │ │ ├── parser_perf.cpp │ │ │ ├── perf.out │ │ │ └── test.out │ │ ├── logger │ │ │ ├── SConscript │ │ │ └── basic.cpp │ │ ├── message_buffer │ │ │ ├── SConscript │ │ │ ├── alloc.cpp │ │ │ ├── message.cpp │ │ │ └── pool.cpp │ │ ├── processors │ │ │ ├── SConscript │ │ │ ├── extension_permessage_compress.cpp │ │ │ ├── hybi00.cpp │ │ │ ├── hybi07.cpp │ │ │ ├── hybi08.cpp │ │ │ ├── hybi13.cpp │ │ │ └── processor.cpp │ │ ├── random │ │ │ ├── SConscript │ │ │ ├── none.cpp │ │ │ └── random_device.cpp │ │ ├── roles │ │ │ ├── SConscript │ │ │ ├── client.cpp │ │ │ └── server.cpp │ │ ├── transport │ │ │ ├── SConscript │ │ │ ├── asio │ │ │ │ ├── SConscript │ │ │ │ ├── base.cpp │ │ │ │ └── timers.cpp │ │ │ ├── hybi_util.cpp │ │ │ ├── integration.cpp │ │ │ └── iostream │ │ │ │ ├── SConscript │ │ │ │ ├── base.cpp │ │ │ │ ├── connection.cpp │ │ │ │ └── endpoint.cpp │ │ └── utility │ │ │ ├── SConscript │ │ │ ├── close.cpp │ │ │ ├── error.cpp │ │ │ ├── frame.cpp │ │ │ ├── sha1.cpp │ │ │ ├── uri.cpp │ │ │ └── utilities.cpp │ │ ├── tutorials │ │ ├── broadcast_tutorial │ │ │ └── broadcast_tutorial.md │ │ ├── chat_tutorial │ │ │ └── chat_tutorial.md │ │ └── utility_client │ │ │ ├── step1.cpp │ │ │ ├── step2.cpp │ │ │ ├── step3.cpp │ │ │ ├── step4.cpp │ │ │ ├── step5.cpp │ │ │ ├── step6.cpp │ │ │ └── utility_client.md │ │ ├── websocketpp-config.cmake.in │ │ ├── websocketpp-configVersion.cmake.in │ │ └── websocketpp │ │ ├── CMakeFiles │ │ ├── CMakeDirectoryInformation.cmake │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── base64 │ │ └── base64.hpp │ │ ├── client.hpp │ │ ├── close.hpp │ │ ├── cmake_install.cmake │ │ ├── common │ │ ├── asio.hpp │ │ ├── asio_ssl.hpp │ │ ├── chrono.hpp │ │ ├── connection_hdl.hpp │ │ ├── cpp11.hpp │ │ ├── functional.hpp │ │ ├── md5.hpp │ │ ├── memory.hpp │ │ ├── network.hpp │ │ ├── platforms.hpp │ │ ├── random.hpp │ │ ├── regex.hpp │ │ ├── stdint.hpp │ │ ├── system_error.hpp │ │ ├── thread.hpp │ │ ├── time.hpp │ │ └── type_traits.hpp │ │ ├── concurrency │ │ ├── basic.hpp │ │ └── none.hpp │ │ ├── config │ │ ├── asio.hpp │ │ ├── asio_client.hpp │ │ ├── asio_no_tls.hpp │ │ ├── asio_no_tls_client.hpp │ │ ├── boost_config.hpp │ │ ├── core.hpp │ │ ├── core_client.hpp │ │ ├── debug.hpp │ │ ├── debug_asio.hpp │ │ ├── debug_asio_no_tls.hpp │ │ ├── minimal_client.hpp │ │ └── minimal_server.hpp │ │ ├── connection.hpp │ │ ├── connection_base.hpp │ │ ├── endpoint.hpp │ │ ├── endpoint_base.hpp │ │ ├── error.hpp │ │ ├── extensions │ │ ├── extension.hpp │ │ └── permessage_deflate │ │ │ ├── disabled.hpp │ │ │ └── enabled.hpp │ │ ├── frame.hpp │ │ ├── http │ │ ├── constants.hpp │ │ ├── impl │ │ │ ├── parser.hpp │ │ │ ├── request.hpp │ │ │ └── response.hpp │ │ ├── parser.hpp │ │ ├── request.hpp │ │ └── response.hpp │ │ ├── impl │ │ ├── connection_impl.hpp │ │ ├── endpoint_impl.hpp │ │ └── utilities_impl.hpp │ │ ├── logger │ │ ├── basic.hpp │ │ ├── levels.hpp │ │ ├── stub.hpp │ │ └── syslog.hpp │ │ ├── message_buffer │ │ ├── alloc.hpp │ │ ├── message.hpp │ │ └── pool.hpp │ │ ├── processors │ │ ├── base.hpp │ │ ├── hybi00.hpp │ │ ├── hybi07.hpp │ │ ├── hybi08.hpp │ │ ├── hybi13.hpp │ │ └── processor.hpp │ │ ├── random │ │ ├── none.hpp │ │ └── random_device.hpp │ │ ├── roles │ │ ├── client_endpoint.hpp │ │ └── server_endpoint.hpp │ │ ├── server.hpp │ │ ├── sha1 │ │ └── sha1.hpp │ │ ├── transport │ │ ├── asio │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ ├── endpoint.hpp │ │ │ └── security │ │ │ │ ├── base.hpp │ │ │ │ ├── none.hpp │ │ │ │ └── tls.hpp │ │ ├── base │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── debug │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── iostream │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ └── stub │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── uri.hpp │ │ ├── utf8_validator.hpp │ │ ├── utilities.hpp │ │ └── version.hpp ├── leveldb │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── NEWS │ ├── README │ ├── README.md │ ├── TODO │ ├── WINDOWS.md │ ├── build_detect_platform │ ├── db │ │ ├── autocompact_test.cc │ │ ├── builder.cc │ │ ├── builder.h │ │ ├── c.cc │ │ ├── c_test.c │ │ ├── corruption_test.cc │ │ ├── db_bench.cc │ │ ├── db_impl.cc │ │ ├── db_impl.h │ │ ├── db_iter.cc │ │ ├── db_iter.h │ │ ├── db_test.cc │ │ ├── dbformat.cc │ │ ├── dbformat.h │ │ ├── dbformat_test.cc │ │ ├── dumpfile.cc │ │ ├── filename.cc │ │ ├── filename.h │ │ ├── filename_test.cc │ │ ├── leveldb_main.cc │ │ ├── log_format.h │ │ ├── log_reader.cc │ │ ├── log_reader.h │ │ ├── log_test.cc │ │ ├── log_writer.cc │ │ ├── log_writer.h │ │ ├── memtable.cc │ │ ├── memtable.h │ │ ├── repair.cc │ │ ├── skiplist.h │ │ ├── skiplist_test.cc │ │ ├── snapshot.h │ │ ├── table_cache.cc │ │ ├── table_cache.h │ │ ├── version_edit.cc │ │ ├── version_edit.h │ │ ├── version_edit_test.cc │ │ ├── version_set.cc │ │ ├── version_set.h │ │ ├── version_set_test.cc │ │ ├── write_batch.cc │ │ ├── write_batch_internal.h │ │ └── write_batch_test.cc │ ├── doc │ │ ├── bench │ │ │ ├── db_bench_sqlite3.cc │ │ │ └── db_bench_tree_db.cc │ │ ├── benchmark.html │ │ ├── doc.css │ │ ├── impl.html │ │ ├── index.html │ │ ├── log_format.txt │ │ └── table_format.txt │ ├── helpers │ │ └── memenv │ │ │ ├── memenv.cc │ │ │ ├── memenv.h │ │ │ └── memenv_test.cc │ ├── include │ │ └── leveldb │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ ├── issues │ │ ├── issue178_test.cc │ │ └── issue200_test.cc │ ├── port │ │ ├── README │ │ ├── atomic_pointer.h │ │ ├── port.h │ │ ├── port_example.h │ │ ├── port_posix.cc │ │ ├── port_posix.h │ │ ├── port_win.cc │ │ ├── port_win.h │ │ ├── thread_annotations.h │ │ └── win │ │ │ └── stdint.h │ ├── table │ │ ├── block.cc │ │ ├── block.h │ │ ├── block_builder.cc │ │ ├── block_builder.h │ │ ├── filter_block.cc │ │ ├── filter_block.h │ │ ├── filter_block_test.cc │ │ ├── format.cc │ │ ├── format.h │ │ ├── iterator.cc │ │ ├── iterator_wrapper.h │ │ ├── merger.cc │ │ ├── merger.h │ │ ├── table.cc │ │ ├── table_builder.cc │ │ ├── table_test.cc │ │ ├── two_level_iterator.cc │ │ └── two_level_iterator.h │ └── util │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_test.cc │ │ ├── bloom.cc │ │ ├── bloom_test.cc │ │ ├── cache.cc │ │ ├── cache_test.cc │ │ ├── coding.cc │ │ ├── coding.h │ │ ├── coding_test.cc │ │ ├── comparator.cc │ │ ├── crc32c.cc │ │ ├── crc32c.h │ │ ├── crc32c_test.cc │ │ ├── env.cc │ │ ├── env_posix.cc │ │ ├── env_test.cc │ │ ├── env_win.cc │ │ ├── filter_policy.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── hash_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── mutexlock.h │ │ ├── options.cc │ │ ├── posix_logger.h │ │ ├── random.h │ │ ├── status.cc │ │ ├── testharness.cc │ │ ├── testharness.h │ │ ├── testutil.cc │ │ └── testutil.h └── miniupnp │ └── miniupnpc │ ├── CMakeLists.txt │ ├── bsdqueue.h │ ├── codelength.h │ ├── connecthostport.c │ ├── connecthostport.h │ ├── declspec.h │ ├── igd_desc_parse.c │ ├── igd_desc_parse.h │ ├── minihttptestserver.c │ ├── minisoap.c │ ├── minisoap.h │ ├── minissdpc.c │ ├── minissdpc.h │ ├── miniupnpc.c │ ├── miniupnpc.h │ ├── miniupnpcmodule.c │ ├── miniupnpcstrings.h.cmake │ ├── miniupnpctypes.h │ ├── miniwget.c │ ├── miniwget.h │ ├── minixml.c │ ├── minixml.h │ ├── minixmlvalid.c │ ├── portlistingparse.c │ ├── portlistingparse.h │ ├── receivedata.c │ ├── receivedata.h │ ├── testigddescparse.c │ ├── testminiwget.c │ ├── testminixml.c │ ├── testupnpreplyparse.c │ ├── upnpc.c │ ├── upnpcommands.c │ ├── upnpcommands.h │ ├── upnperrors.c │ ├── upnperrors.h │ ├── upnpreplyparse.c │ ├── upnpreplyparse.h │ └── wingenminiupnpcstrings.c ├── libraries ├── HSRit.vcxproj ├── HSRit.vcxproj.filters ├── UnitTest++ │ ├── AssertException.cpp │ ├── Checks.cpp │ ├── CompositeTestReporter.cpp │ ├── CurrentTest.cpp │ ├── DeferredTestReporter.cpp │ ├── DeferredTestResult.cpp │ ├── Makefile.am │ ├── MemoryOutStream.cpp │ ├── Posix │ │ ├── SignalTranslator.cpp │ │ └── TimeHelpers.cpp │ ├── ReportAssert.cpp │ ├── RequiredCheckException.cpp │ ├── RequiredCheckTestReporter.cpp │ ├── Test.cpp │ ├── TestDetails.cpp │ ├── TestList.cpp │ ├── TestReporter.cpp │ ├── TestReporterStdout.cpp │ ├── TestResults.cpp │ ├── TestRunner.cpp │ ├── ThrowingTestReporter.cpp │ ├── TimeConstraint.cpp │ ├── Win32 │ │ └── TimeHelpers.cpp │ └── XmlTestReporter.cpp ├── api │ ├── ConversionFunctions.cpp │ └── GlobalApiLogger.cpp ├── blockchain │ ├── AccountEntry.cpp │ ├── AccountOperations.cpp │ ├── Address.cpp │ ├── Asset.cpp │ ├── AssetEntry.cpp │ ├── AssetOperations.cpp │ ├── BalanceEntry.cpp │ ├── BalanceOperations.cpp │ ├── Block.cpp │ ├── ChainDatabase.cpp │ ├── ChainInterface.cpp │ ├── ContractEntry.cpp │ ├── ContractOperations.cpp │ ├── EventOperations.cpp │ ├── ExtendedAddress.cpp │ ├── ForkBlocks.cpp │ ├── GenesisJson.cpp │ ├── ImessageOperations.cpp │ ├── Operations.cpp │ ├── PendingChainState.cpp │ ├── PropertyEntry.cpp │ ├── PtsAddress.cpp │ ├── SlateEntry.cpp │ ├── SlateOperations.cpp │ ├── SlotEntry.cpp │ ├── StorageOperations.cpp │ ├── StorageTypes.cpp │ ├── Time.cpp │ ├── Transaction.cpp │ ├── TransactionCreationState.cpp │ ├── TransactionEntry.cpp │ ├── TransactionEvaluationState.cpp │ ├── TransactionOperations.cpp │ ├── Types.cpp │ ├── WithdrawTypes.cpp │ ├── applink.c │ └── hsrcore_lua_api.cpp ├── cli │ ├── Cli.cpp │ ├── Pretty.cpp │ └── PrintResult.cpp ├── client │ ├── ApiLogger.cpp │ ├── BlockchainApi.cpp │ ├── Client.cpp │ ├── ContractApi.cpp │ ├── DebugApi.cpp │ ├── DelegateApi.cpp │ ├── GeneralApi.cpp │ ├── Messages.cpp │ ├── MiningApi.cpp │ ├── NetworkApi.cpp │ ├── Notifier.cpp │ ├── SandboxContractApi.cpp │ ├── ScriptApi.cpp │ └── WalletApi.cpp ├── contract_engine │ ├── contract_engine.cpp │ ├── contract_engine_builder.cpp │ └── glua_contract_engine.cpp ├── db │ └── UpgradeLeveldb.cpp ├── glua │ ├── CMakeLists.txt │ ├── glua.exe │ ├── glua_api_types.cpp │ ├── glua_astparser.cpp │ ├── glua_debug_file.cpp │ ├── glua_decompile.cpp │ ├── glua_disassemble.cpp │ ├── glua_loader.cpp │ ├── glua_lutil.cpp │ ├── glua_proto_info.cpp │ ├── glua_state_scope.cpp │ ├── glua_statement.cpp │ ├── glua_structs.cpp │ ├── glua_tokenparser.cpp │ ├── glua_vm.cpp │ ├── glua_x86.exe │ ├── hsrcore_lua_lib.cpp │ ├── hypcore_lua_modules │ │ ├── .gitignore │ │ ├── hsrcore_contract_contract_transfer_demo.lua │ │ └── hsrcore_contract_demo1.lua │ ├── init_debugger_info.db │ ├── language_server.cpp │ ├── language_server.md │ ├── lapi.cpp │ ├── lauxlib.cpp │ ├── lbaselib.cpp │ ├── lbitlib.cpp │ ├── lcode.cpp │ ├── lcompile.cpp │ ├── lcorolib.cpp │ ├── lctype.cpp │ ├── ldblib.cpp │ ├── ldebug.cpp │ ├── ldo.cpp │ ├── ldump.cpp │ ├── lfunc.cpp │ ├── lgc.cpp │ ├── lhashmap.cpp │ ├── lhsrcorelib.cpp │ ├── lhttplib.cpp │ ├── linit.cpp │ ├── liolib.cpp │ ├── ljsonlib.cpp │ ├── ljsonrpclib.cpp │ ├── llex.cpp │ ├── lmathlib.cpp │ ├── lmem.cpp │ ├── lnetlib.cpp │ ├── loadlib.cpp │ ├── lobject.cpp │ ├── lopcodes.cpp │ ├── loslib.cpp │ ├── lparser.cpp │ ├── lparsercombinator.cpp │ ├── lprefix.cpp │ ├── lremote_debugger.cpp │ ├── lrepl.cpp │ ├── lstate.cpp │ ├── lstring.cpp │ ├── lstrlib.cpp │ ├── ltable.cpp │ ├── ltablib.cpp │ ├── ltimelib.cpp │ ├── ltm.cpp │ ├── ltype_checker_type_info.cpp │ ├── ltypechecker.cpp │ ├── lua.cpp │ ├── luac.cpp │ ├── lundump.cpp │ ├── lutf8lib.cpp │ ├── lvm.cpp │ ├── lzio.cpp │ ├── sample.bytes │ ├── single_glua_src │ │ ├── cdemo1.cpp │ │ ├── hsrcore_lua_api.demo.cpp │ │ ├── hsrcore_lua_api.demo.h │ │ └── main.cpp │ ├── tests_lua │ │ ├── .gitignore │ │ ├── error_syntax.lua │ │ ├── test1.lua │ │ ├── test2.lua │ │ ├── test3.lua │ │ ├── test4.lua │ │ ├── test_c_function.lua │ │ ├── test_c_module_inject.lua │ │ ├── test_compile_error.lua │ │ ├── test_contract_transfer.lua │ │ ├── test_debugger.lua │ │ ├── test_error.lua │ │ ├── test_error_syntax.lua │ │ ├── test_error_use_api.lua │ │ ├── test_exit_contract.lua │ │ ├── test_for_loop_goto.lua │ │ ├── test_get_global_table.lua │ │ ├── test_import_not_found.lua │ │ ├── test_load_contract.lua │ │ ├── test_no_return_contract.lua │ │ ├── test_stop_vm.lua │ │ ├── test_too_many_localvars.lua │ │ ├── test_tostring.lua │ │ ├── test_upval.lua │ │ ├── test_use_error_function.lua │ │ ├── test_without_init.lua │ │ ├── test_wrong_contract.lua │ │ └── 测试中文.lua │ ├── tests_typed │ │ ├── bin_and_un_op_type.lua │ │ ├── call_without_brackets.lua │ │ ├── call_without_brackets_error.lua │ │ ├── correct_nested_table.glua │ │ ├── declare_with_type.lua │ │ ├── duplicate_return.glua │ │ ├── empty_correct_contract.glua │ │ ├── full_correct_typed.glua │ │ ├── full_demo.lua │ │ ├── function_type_and_call.lua │ │ ├── function_type_declare.lua │ │ ├── generic_type.lua │ │ ├── let_var.lua │ │ ├── nested_function_define.lua │ │ ├── nested_record.lua │ │ ├── record_table_parse.lua │ │ ├── return_union_type.lua │ │ ├── self_type.lua │ │ ├── simple_record.lua │ │ ├── test_api_return.glua │ │ ├── test_array_fetch.glua │ │ ├── test_break.glua │ │ ├── test_calculate.glua │ │ ├── test_call_contract_it_self.glua │ │ ├── test_change_contract_id.glua │ │ ├── test_contract_return_wrong_type.glua │ │ ├── test_contract_storage_property_type.glua │ │ ├── test_control_scopes.glua │ │ ├── test_correct_contract.glua │ │ ├── test_define_contract_api_using_dot.glua │ │ ├── test_define_global_in_contract.glua │ │ ├── test_deny_call_special_apis.glua │ │ ├── test_echo_http_server.lua │ │ ├── test_emit_events.glua │ │ ├── test_for_variable1.glua │ │ ├── test_function_type_up.glua │ │ ├── test_goto.glua │ │ ├── test_if_stat.glua │ │ ├── test_import_contract.lua │ │ ├── test_import_correct_contract.glua │ │ ├── test_inner_module_type_info.glua │ │ ├── test_int_number_parse.glua │ │ ├── test_json_lib.glua │ │ ├── test_market.lua │ │ ├── test_missing_end.glua │ │ ├── test_missing_record_colon.glua │ │ ├── test_multi_lines_lambda.glua │ │ ├── test_multiline_comment_and_string.glua │ │ ├── test_new_array_and_map_type.glua │ │ ├── test_over_number_limit.glua │ │ ├── test_pairs.glua │ │ ├── test_quick_storage_change.glua │ │ ├── test_record_constructor_and_call_as_func.glua │ │ ├── test_storage.glua │ │ ├── test_storage_not_init_contract.glua │ │ ├── test_storage_performance.glua │ │ ├── test_stream_type.glua │ │ ├── test_table_module.glua │ │ ├── test_table_property_function_call.glua │ │ ├── test_tojsonstring.glua │ │ ├── test_typed_exit_contract.glua │ │ ├── test_typed_too_many_locals.glua │ │ ├── test_use_keyword_as_varname.glua │ │ ├── test_use_not_init_variable.glua │ │ ├── test_var_and_type_namespace.glua │ │ ├── test_wrong_new_array_and_map_type.glua │ │ ├── test_wrong_syntax_structure1.glua │ │ ├── type_parse.lua │ │ ├── typedef_and_partial.lua │ │ ├── un_op_run_error1.lua │ │ ├── un_op_run_error2.lua │ │ ├── unicode.lua │ │ ├── variable_scope.lua │ │ └── visit_prop.lua │ └── wrong_byte_code.bytes ├── include │ ├── UnitTest++ │ │ ├── AssertException.h │ │ ├── CheckMacros.h │ │ ├── Checks.h │ │ ├── CompositeTestReporter.h │ │ ├── Config.h │ │ ├── CurrentTest.h │ │ ├── DeferredTestReporter.h │ │ ├── DeferredTestResult.h │ │ ├── ExceptionMacros.h │ │ ├── ExecuteTest.h │ │ ├── HelperMacros.h │ │ ├── MemoryOutStream.h │ │ ├── Posix │ │ │ ├── SignalTranslator.h │ │ │ └── TimeHelpers.h │ │ ├── ReportAssert.h │ │ ├── ReportAssertImpl.h │ │ ├── RequireMacros.h │ │ ├── RequiredCheckException.h │ │ ├── RequiredCheckTestReporter.h │ │ ├── Test.h │ │ ├── TestDetails.h │ │ ├── TestList.h │ │ ├── TestMacros.h │ │ ├── TestReporter.h │ │ ├── TestReporterStdout.h │ │ ├── TestResults.h │ │ ├── TestRunner.h │ │ ├── TestSuite.h │ │ ├── ThrowingTestReporter.h │ │ ├── TimeConstraint.h │ │ ├── TimeHelpers.h │ │ ├── UnitTest++.h │ │ ├── UnitTestPP.h │ │ ├── Win32 │ │ │ └── TimeHelpers.h │ │ └── XmlTestReporter.h │ ├── api │ │ ├── ApiMetadata.hpp │ │ ├── CommonApi.hpp │ │ ├── ConversionFunctions.hpp │ │ └── GlobalApiLogger.hpp │ ├── blockchain │ │ ├── AccountEntry.hpp │ │ ├── AccountOperations.hpp │ │ ├── Address.hpp │ │ ├── Asset.hpp │ │ ├── AssetEntry.hpp │ │ ├── AssetOperations.hpp │ │ ├── BalanceEntry.hpp │ │ ├── BalanceOperations.hpp │ │ ├── Block.hpp │ │ ├── BlockEntry.hpp │ │ ├── ChainDatabase.hpp │ │ ├── ChainDatabaseImpl.hpp │ │ ├── ChainInterface.hpp │ │ ├── Checkpoints.hpp │ │ ├── Condition.hpp │ │ ├── Config.hpp │ │ ├── ContractEntry.hpp │ │ ├── ContractOperations.hpp │ │ ├── DelegateConfig.hpp │ │ ├── EventOperations.hpp │ │ ├── Exceptions.hpp │ │ ├── ExtendedAddress.hpp │ │ ├── ForkBlocks.hpp │ │ ├── GenesisJson.hpp │ │ ├── GenesisState.hpp │ │ ├── GluaChainApi.hpp │ │ ├── ImessageOperations.hpp │ │ ├── MiningTypes.hpp │ │ ├── OperationFactory.hpp │ │ ├── Operations.hpp │ │ ├── PendingChainState.hpp │ │ ├── PropertyEntry.hpp │ │ ├── PtsAddress.hpp │ │ ├── SlateEntry.hpp │ │ ├── SlateOperations.hpp │ │ ├── SlotEntry.hpp │ │ ├── StorageOperations.hpp │ │ ├── StorageTypes.hpp │ │ ├── Time.hpp │ │ ├── Transaction.hpp │ │ ├── TransactionCreationState.hpp │ │ ├── TransactionEntry.hpp │ │ ├── TransactionEvaluationState.hpp │ │ ├── TransactionOperations.hpp │ │ ├── Types.hpp │ │ ├── WithdrawTypes.hpp │ │ └── api_extern.hpp │ ├── cli │ │ ├── Cli.hpp │ │ ├── Pretty.hpp │ │ ├── PrintResult.hpp │ │ └── locale.hpp │ ├── client │ │ ├── ApiLogger.hpp │ │ ├── Client.hpp │ │ ├── ClientImpl.hpp │ │ ├── Messages.hpp │ │ ├── Notifier.hpp │ │ ├── SeedNodes.hpp │ │ └── build_info.hpp.in │ ├── contract_engine │ │ ├── contract_engine.hpp │ │ ├── contract_engine_builder.hpp │ │ └── glua_contract_engine.hpp │ ├── db │ │ ├── CachedLevelMap.hpp │ │ ├── Exception.hpp │ │ ├── FastLevelMap.hpp │ │ ├── FsHashMap.hpp │ │ ├── Fwd.hpp │ │ ├── LevelMap.hpp │ │ ├── LevelPodMap.hpp │ │ └── UpgradeLeveldb.hpp │ ├── glua │ │ ├── exceptions.h │ │ ├── glua_api_types.h │ │ ├── glua_astparser.h │ │ ├── glua_common.h │ │ ├── glua_compat.h │ │ ├── glua_debug_file.h │ │ ├── glua_decompile.h │ │ ├── glua_disassemble.h │ │ ├── glua_loader.h │ │ ├── glua_lutil.h │ │ ├── glua_parser.h │ │ ├── glua_proto_info.h │ │ ├── glua_statement.h │ │ ├── glua_structs.h │ │ ├── glua_tokenparser.h │ │ ├── glua_vm.h │ │ ├── hsrcore_lua_api.h │ │ ├── hsrcore_lua_lib.h │ │ ├── lapi.h │ │ ├── lauxlib.h │ │ ├── lcode.h │ │ ├── lcompile.h │ │ ├── lctype.h │ │ ├── ldebug.h │ │ ├── ldo.h │ │ ├── lfunc.h │ │ ├── lgc.h │ │ ├── lhashmap.h │ │ ├── lhsrcorelib.h │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmem.h │ │ ├── lnetlib.h │ │ ├── lobject.h │ │ ├── lopcodes.h │ │ ├── lparser.h │ │ ├── lparsercombinator.h │ │ ├── lprefix.h │ │ ├── lremote_debugger.h │ │ ├── lrepl.h │ │ ├── lstate.h │ │ ├── lstring.h │ │ ├── ltable.h │ │ ├── ltm.h │ │ ├── ltype_checker_type_info.h │ │ ├── ltypechecker.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.h │ │ ├── lvm.h │ │ └── lzio.h │ ├── hshare_wallet │ │ ├── allocators.h │ │ ├── clientversion.h │ │ ├── db.cpp │ │ ├── db.h │ │ ├── hshare_addr_util.cpp │ │ ├── hshare_addr_util.h │ │ ├── privateConvert.cpp │ │ ├── privateConvert.hpp │ │ ├── serialize.h │ │ ├── sync.cpp │ │ ├── sync.h │ │ ├── threadsafety.h │ │ ├── version.cpp │ │ └── version.h │ ├── net │ │ ├── ChainConnection.hpp │ │ ├── ChainDownloader.hpp │ │ ├── ChainMessages.hpp │ │ ├── ChainServer.hpp │ │ ├── ChainServerCommands.hpp │ │ ├── Config.hpp │ │ ├── Connection.hpp │ │ ├── CoreMessages.hpp │ │ ├── Exceptions.hpp │ │ ├── Message.hpp │ │ ├── MessageOrientedConnection.hpp │ │ ├── Node.hpp │ │ ├── PeerConnection.hpp │ │ ├── PeerDatabase.hpp │ │ ├── StcpSocket.hpp │ │ └── Upnp.hpp │ ├── rpc │ │ ├── Exceptions.hpp │ │ ├── RpcClient.hpp │ │ ├── RpcClientApi.hpp │ │ └── RpcServer.hpp │ ├── rpc_stubs │ │ ├── CommonApiClient.hpp │ │ ├── CommonApiOverrides.ipp │ │ ├── CommonApiRpcClient.hpp │ │ └── CommonApiRpcServer.hpp │ ├── utilities │ │ ├── CharacterRecognition.hpp │ │ ├── CommonApi.hpp │ │ ├── GitRevision.hpp │ │ ├── KeyConversion.hpp │ │ ├── PaddingOstream.hpp │ │ ├── StringEscape.hpp │ │ ├── ThreadPool.hpp │ │ ├── Words.hpp │ │ ├── bignum.hpp │ │ ├── blake.hpp │ │ ├── hash.hpp │ │ ├── uint256.hpp │ │ └── util.hpp │ └── wallet │ │ ├── Config.hpp │ │ ├── Exceptions.hpp │ │ ├── Pretty.hpp │ │ ├── TransactionBuilder.hpp │ │ ├── Url.hpp │ │ ├── Wallet.hpp │ │ ├── WalletDb.hpp │ │ ├── WalletEntrys.hpp │ │ ├── WalletImpl.hpp │ │ └── url.hpp.in ├── net │ ├── ChainDownloader.cpp │ ├── ChainServer.cpp │ ├── CoreMessages.cpp │ ├── MessageOrientedConnection.cpp │ ├── Node.cpp │ ├── PeerConnection.cpp │ ├── PeerDatabase.cpp │ ├── StcpSocket.cpp │ └── Upnp.cpp ├── rpc │ ├── RpcClient.cpp │ └── RpcServer.cpp ├── rpc_stubs │ ├── CommonApiClient.cpp │ ├── CommonApiRpcClient.cpp │ └── CommonApiRpcServer.cpp ├── utilities │ ├── CharacterRecognition.cpp │ ├── CommonApi.cpp │ ├── GitRevision.cpp │ ├── KeyConversion.cpp │ ├── StringEscape.cpp │ ├── Words.cpp │ └── blake256.cpp └── wallet │ ├── Login.cpp │ ├── TransactionBuilder.cpp │ ├── TransactionLedger.cpp │ ├── TransactionLedgerExperimental.cpp │ ├── Wallet.cpp │ ├── WalletDb.cpp │ └── WalletEntrys.cpp ├── miningpool_test ├── blake_lib.dll ├── lib │ ├── blake.hpp │ └── blake256.cpp ├── mining_test.py └── rpc_client.py ├── wallet use tutorial.docx └── 钱包使用教程.docx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/Main.cpp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/README.md -------------------------------------------------------------------------------- /bit_genesis_to_bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/bit_genesis_to_bin.cpp -------------------------------------------------------------------------------- /db/include/db/cached_level_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/cached_level_map.hpp -------------------------------------------------------------------------------- /db/include/db/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/exception.hpp -------------------------------------------------------------------------------- /db/include/db/fast_level_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/fast_level_map.hpp -------------------------------------------------------------------------------- /db/include/db/fs_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/fs_hash_map.hpp -------------------------------------------------------------------------------- /db/include/db/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/fwd.hpp -------------------------------------------------------------------------------- /db/include/db/level_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/level_map.hpp -------------------------------------------------------------------------------- /db/include/db/level_pod_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/level_pod_map.hpp -------------------------------------------------------------------------------- /db/include/db/upgrade_leveldb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/include/db/upgrade_leveldb.hpp -------------------------------------------------------------------------------- /db/pow_production.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/db/pow_production.lnk -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/LICENSE -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/build_wince/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/build_wince/db.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/build_windows/libdb_tcl.def: -------------------------------------------------------------------------------- 1 | ; $Id$ 2 | 3 | EXPORTS 4 | Db_tcl_Init 5 | _NameToPtr 6 | 7 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/ChangeLog -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/Makefile.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/RELEASE -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/api_flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/api_flags -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/api_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/api_flags.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/buildpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/buildpkg -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/bumprel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/bumprel -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/clib_port.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/clib_port.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/config.guess -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/config.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/config.hin -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/config.sub -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/configure -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/configure.ac -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/errno.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/events.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/events.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/gen_inc.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/gen_inc.awk -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/gen_msg.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/gen_msg.awk -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/gen_rec.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/gen_rec.awk -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/install-sh -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/ltmain.sh -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/pubdef.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/pubdef.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_all -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_android -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_apiflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_apiflags -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_config -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_crypto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_crypto -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_cscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_cscope -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_csharp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_csharp -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_csharp_doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_csharp_doc -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_docs -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_include -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_java -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_java_const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_java_const -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_java_stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_java_stat -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_java_swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_java_swig -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_javadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_javadoc -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_je2db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_je2db -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_message -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_message_id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_message_id -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_perm -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_php -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_readme -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_recover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_recover -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_sig -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_sql -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_symlink -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_tags -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_test -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_validate -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_vxworks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_vxworks -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_windows -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/s_winmsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/s_winmsi -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/srcfiles.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/srcfiles.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/vx_6/cfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/vx_6/cfile -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/vx_6/cxxfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/vx_6/cxxfile -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/vx_buildcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/vx_buildcd -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/dist/vx_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/dist/vx_config.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/docs/index.html -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/examples/c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/examples/c/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/dbm/dbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/lang/dbm/dbm.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/lang/sql/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/adapter/pcache1.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/jdbc/META-INF/services/java.sql.Driver: -------------------------------------------------------------------------------- 1 | SQLite.JDBCDriver 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/jdbc/VERSION: -------------------------------------------------------------------------------- 1 | 20120209 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/jdbc/doc/package-list: -------------------------------------------------------------------------------- 1 | SQLite 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/jdbc/manifest: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: SQLite.Shell 3 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/jdbc/native/dummy.c: -------------------------------------------------------------------------------- 1 | /* Empty file, placeholder for sqlite3.c */ 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/odbc/VERSION: -------------------------------------------------------------------------------- 1 | 0.93 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/odbc/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/odbc/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/odbc/debian/install: -------------------------------------------------------------------------------- 1 | debian/unixodbc.ini /usr/share/sqliteodbc 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/sqlite/VERSION: -------------------------------------------------------------------------------- 1 | 3.7.6.2 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/sql/sqlite/manifest.uuid: -------------------------------------------------------------------------------- 1 | 154ddbc17120be2915eb03edc52af1225eb7cb5e 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/tcl/tcl_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/lang/tcl/tcl_db.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/lang/tcl/tcl_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/lang/tcl/tcl_mp.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/atoi.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/atol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/atol.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/getcwd.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/getopt.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/memcmp.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/printf.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/qsort.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/raise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/raise.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/rand.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/strcat.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/strchr.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/strdup.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/strsep.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/strtol.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/clib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/clib/time.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/common/dbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/common/dbt.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/crdel.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/crdel.src -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db.src -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_am.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_auto.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_autop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_autop.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_cam.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_cds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_cds.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_conv.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_copy.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_dup.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_iface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_iface.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_join.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_meta.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_open.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_pr.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_rec.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_ret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_ret.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_setid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_setid.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_stati.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_stati.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_upg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_upg.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/db/db_vrfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/db/db_vrfy.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/btree.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/clock.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/db.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/db.in -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/db_am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/db_am.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/debug.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/fop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/fop.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/hash.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/heap.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/hmac.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/lock.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/log.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/mp.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/mutex.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/os.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/qam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/qam.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/queue.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/rep.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/txn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/txn.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbinc/xa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbinc/xa.h -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/dbreg/dbreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/dbreg/dbreg.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/env/env_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/env/env_sig.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/hash/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/hash/hash.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/hash/hash.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/hash/hash.src -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/heap/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/heap/heap.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/heap/heap.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/heap/heap.src -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/hmac/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/hmac/hmac.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/hmac/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/hmac/sha1.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/lock/Design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/lock/Design -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/lock/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/lock/lock.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/log/log.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/log/log_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/log/log_get.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/log/log_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/log/log_put.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_alloc.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_bh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_bh.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_fget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_fget.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_fopen.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_fput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_fput.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_fset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_fset.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_mvcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_mvcc.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_stat.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mp/mp_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mp/mp_sync.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/mutex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/mutex/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_abort.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_abs.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_alloc.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_clock.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_cpu.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_ctime.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_dir.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_errno.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_fid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_fid.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_flock.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_fsync.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_map.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_mkdir.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_open.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_path.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_pid.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_root.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_rpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_rpath.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_rw.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_seek.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_stack.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_stat.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_uid.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/os/os_yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/os/os_yield.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/qam/qam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/qam/qam.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/qam/qam.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/qam/qam.src -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/qam/qam_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/qam/qam_rec.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/rep/rep.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/rep/rep.msg -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/rep/rep_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/rep/rep_log.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/txn/txn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/txn/txn.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/txn/txn.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/txn/txn.src -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/txn/txn_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/txn/txn_rec.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/xa/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/xa/xa.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/src/xa/xa_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/src/xa/xa_map.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/c/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/c/chk.ctests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/c/chk.ctests -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/cxx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/cxx/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/cxx/TestConstruct01.testerr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/cxx/TestLogc.testout: -------------------------------------------------------------------------------- 1 | TestLogc done. 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/cxx/ignore: -------------------------------------------------------------------------------- 1 | # 2 | # $Id$ 3 | # 4 | # A list of tests to ignore 5 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/cxx/testall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/cxx/testall -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/cxx/testone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/cxx/testone -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/micro/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/micro/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/micro/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/micro/report -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/sql/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/sql/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/sql_codegen/data/only_database.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE numismatics; 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/sql_codegen/data/only_index.sql: -------------------------------------------------------------------------------- 1 | 2 | CREATE INDEX unit_index ON coin(unit); 3 | 4 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/sql_codegen/data/sample_env_txn_no_db.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE numismatics; /*+ MODE = TRANSACTIONAL */ 2 | -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/README -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/TESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/TESTS -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/dbm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/dbm.tcl -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/join.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/join.tcl -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/ndbm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/ndbm.tcl -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/test.tcl -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/wordlist -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/tcl/wrap.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/tcl/wrap.tcl -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/test/xa/chk.xa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/test/xa/chk.xa -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_archive.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_dump.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_dump185.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_dump185.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_load.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_recover.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_stat.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_tuner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_tuner.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_upgrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_upgrade.c -------------------------------------------------------------------------------- /dependence/db-5.3.28.NC/util/db_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/db-5.3.28.NC/util/db_verify.c -------------------------------------------------------------------------------- /dependence/fc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/.gitignore -------------------------------------------------------------------------------- /dependence/fc/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/.gitmodules -------------------------------------------------------------------------------- /dependence/fc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/CMakeLists.txt -------------------------------------------------------------------------------- /dependence/fc/CMakeLists.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/CMakeLists.txt.bak -------------------------------------------------------------------------------- /dependence/fc/CMakeModules/FindVLD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/CMakeModules/FindVLD.cmake -------------------------------------------------------------------------------- /dependence/fc/CMakeModules/FindWt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/CMakeModules/FindWt.cmake -------------------------------------------------------------------------------- /dependence/fc/README-ecc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/README-ecc.md -------------------------------------------------------------------------------- /dependence/fc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/README.md -------------------------------------------------------------------------------- /dependence/fc/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/cmake_install.cmake -------------------------------------------------------------------------------- /dependence/fc/fc.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/fc.natvis -------------------------------------------------------------------------------- /dependence/fc/git_revision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/git_revision.cpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/actor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/actor.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/aligned.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/any.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/api.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/array.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/asio.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/bitutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/bitutil.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/bloom_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/bloom_filter.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/aes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/aes.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/city.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/city.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/dh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/dh.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/hex.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/hmac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/hmac.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/pke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/pke.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/rand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/rand.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/romix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/romix.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/sha1.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/sm3.h -------------------------------------------------------------------------------- /dependence/fc/include/fc/crypto/sms4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/crypto/sms4.h -------------------------------------------------------------------------------- /dependence/fc/include/fc/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/filesystem.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/fwd.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/fwd_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/fwd_impl.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/git_revision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/git_revision.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/console.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/enum_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/enum_type.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/fstream.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/iobuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/iobuffer.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/iostream.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/json.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/raw.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/raw_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/raw_fwd.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/sstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/sstream.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/stdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/stdio.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/io/varint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/io/varint.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/log/appender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/log/appender.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/log/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/log/logger.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/make_fused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/make_fused.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/network/gntp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/network/gntp.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/network/ip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/network/ip.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/network/ntp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/network/ntp.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/network/url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/network/url.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/noncopyable.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/optional.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/real128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/real128.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/rpc/cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/rpc/cli.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/rpc/http_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/rpc/http_api.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/rpc/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/rpc/state.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/safe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/safe.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/shared_ptr.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/signal.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/signals.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/ssh/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/ssh/client.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/ssh/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/ssh/error.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/ssh/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/ssh/process.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/string.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/thread/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/thread/mutex.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/thread/task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/thread/task.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/time.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/tuple.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/uint128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/uint128.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/unique_ptr.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/utf8.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/utility.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/variant.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/vector.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /dependence/fc/include/fc/vector_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/vector_fwd.hpp -------------------------------------------------------------------------------- /dependence/fc/include/fc/wait_any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/fc/wait_any.hpp -------------------------------------------------------------------------------- /dependence/fc/include/secp256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/include/secp256k1.h -------------------------------------------------------------------------------- /dependence/fc/src/asio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/asio.cpp -------------------------------------------------------------------------------- /dependence/fc/src/byteswap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/byteswap.hpp -------------------------------------------------------------------------------- /dependence/fc/src/compress/lzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/compress/lzma.cpp -------------------------------------------------------------------------------- /dependence/fc/src/compress/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/compress/miniz.c -------------------------------------------------------------------------------- /dependence/fc/src/compress/smaz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/compress/smaz.cpp -------------------------------------------------------------------------------- /dependence/fc/src/compress/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/compress/zlib.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/aes.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/base32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/base32.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/base36.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/base36.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/base58.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/base58.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/base64.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/bigint.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/blowfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/blowfish.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/city.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/city.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/crc.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/dh.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/hex.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/openssl.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/pke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/pke.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/rand.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/ripemd160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/ripemd160.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/romix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/romix.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/salsa20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/salsa20.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/scrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/scrypt.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sha1.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sha224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sha224.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sha256.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sha512.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sm3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sm3.cpp -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sms4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sms4.c -------------------------------------------------------------------------------- /dependence/fc/src/crypto/sms4_imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/crypto/sms4_imp.cpp -------------------------------------------------------------------------------- /dependence/fc/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/exception.cpp -------------------------------------------------------------------------------- /dependence/fc/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/filesystem.cpp -------------------------------------------------------------------------------- /dependence/fc/src/git_revision.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/git_revision.cpp.in -------------------------------------------------------------------------------- /dependence/fc/src/io/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/console.cpp -------------------------------------------------------------------------------- /dependence/fc/src/io/datastream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/datastream.cpp -------------------------------------------------------------------------------- /dependence/fc/src/io/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/fstream.cpp -------------------------------------------------------------------------------- /dependence/fc/src/io/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/iostream.cpp -------------------------------------------------------------------------------- /dependence/fc/src/io/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/json.cpp -------------------------------------------------------------------------------- /dependence/fc/src/io/sstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/sstream.cpp -------------------------------------------------------------------------------- /dependence/fc/src/io/varint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/io/varint.cpp -------------------------------------------------------------------------------- /dependence/fc/src/log/appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/appender.cpp -------------------------------------------------------------------------------- /dependence/fc/src/log/console_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/console_defines.h -------------------------------------------------------------------------------- /dependence/fc/src/log/file_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/file_appender.cpp -------------------------------------------------------------------------------- /dependence/fc/src/log/gelf_appender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/gelf_appender.cpp -------------------------------------------------------------------------------- /dependence/fc/src/log/log_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/log_message.cpp -------------------------------------------------------------------------------- /dependence/fc/src/log/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/logger.cpp -------------------------------------------------------------------------------- /dependence/fc/src/log/logger_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/log/logger_config.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/gntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/gntp.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/ip.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/ntp.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/ntp.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/ntp.cpp.bak -------------------------------------------------------------------------------- /dependence/fc/src/network/resolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/resolve.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/tcp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/tcp_socket.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/udp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/udp_socket.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/udt_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/udt_socket.cpp -------------------------------------------------------------------------------- /dependence/fc/src/network/url.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/network/url.cpp -------------------------------------------------------------------------------- /dependence/fc/src/real128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/real128.cpp -------------------------------------------------------------------------------- /dependence/fc/src/rpc/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/rpc/cli.cpp -------------------------------------------------------------------------------- /dependence/fc/src/rpc/http_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/rpc/http_api.cpp -------------------------------------------------------------------------------- /dependence/fc/src/rpc/json_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/rpc/json_connection.cpp -------------------------------------------------------------------------------- /dependence/fc/src/rpc/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/rpc/state.cpp -------------------------------------------------------------------------------- /dependence/fc/src/rpc/websocket_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/rpc/websocket_api.cpp -------------------------------------------------------------------------------- /dependence/fc/src/shared_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/shared_ptr.cpp -------------------------------------------------------------------------------- /dependence/fc/src/ssh/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/ssh/client.cpp -------------------------------------------------------------------------------- /dependence/fc/src/ssh/client_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/ssh/client_impl.hpp -------------------------------------------------------------------------------- /dependence/fc/src/ssh/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/ssh/process.cpp -------------------------------------------------------------------------------- /dependence/fc/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/string.cpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/context.hpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/future.cpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/mutex.cpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/mutex.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/mutex.cpp.bak -------------------------------------------------------------------------------- /dependence/fc/src/thread/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/spin_lock.cpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/task.cpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/thread.cpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/thread.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/thread.cpp.bak -------------------------------------------------------------------------------- /dependence/fc/src/thread/thread_d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/thread_d.hpp -------------------------------------------------------------------------------- /dependence/fc/src/thread/thread_d.hpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/thread/thread_d.hpp.bak -------------------------------------------------------------------------------- /dependence/fc/src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/time.cpp -------------------------------------------------------------------------------- /dependence/fc/src/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/uint128.cpp -------------------------------------------------------------------------------- /dependence/fc/src/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/utf8.cpp -------------------------------------------------------------------------------- /dependence/fc/src/utf8/ReleaseNotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/utf8/ReleaseNotes -------------------------------------------------------------------------------- /dependence/fc/src/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/utf8/checked.h -------------------------------------------------------------------------------- /dependence/fc/src/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/utf8/core.h -------------------------------------------------------------------------------- /dependence/fc/src/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/utf8/unchecked.h -------------------------------------------------------------------------------- /dependence/fc/src/utf8/utf8cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/utf8/utf8cpp.html -------------------------------------------------------------------------------- /dependence/fc/src/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/variant.cpp -------------------------------------------------------------------------------- /dependence/fc/src/variant_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/src/variant_object.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/all_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/all_tests.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/api.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/blinding_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/blinding_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/bloom_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/bloom_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/compress/compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/compress/compress.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/aes_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/aes_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/blind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/blind.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/dh_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/dh_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/ecc-interop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/ecc-interop.sh -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/ecc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/ecc_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/rand_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/rand_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/crypto/sha_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/crypto/sha_tests.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/hmac_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/hmac_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/network/ntp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/network/ntp_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/rate_limiting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/rate_limiting.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/real128_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/real128_test.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/rpc.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/sleep.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/udt_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/udt_client.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/udt_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/udt_server.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/udtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/udtc.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/udts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/udts.cpp -------------------------------------------------------------------------------- /dependence/fc/tests/utf8_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/tests/utf8_test.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/easylzma/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/easylzma/src/README -------------------------------------------------------------------------------- /dependence/fc/vendor/salsa20/ecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/salsa20/ecrypt.c -------------------------------------------------------------------------------- /dependence/fc/vendor/salsa20/salsa20.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/salsa20/salsa20.s -------------------------------------------------------------------------------- /dependence/fc/vendor/scrypt-jane/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/scrypt-jane/test.sh -------------------------------------------------------------------------------- /dependence/fc/vendor/secp256k1-zkp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/secp256k1-zkp/TODO -------------------------------------------------------------------------------- /dependence/fc/vendor/secp256k1-zkp/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /dependence/fc/vendor/secp256k1-zkp/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependence/fc/vendor/secp256k1-zkp/tmp/project_secp256k1-cfgcmd.txt.in: -------------------------------------------------------------------------------- 1 | cmd='@cmd@' 2 | -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/CMakeFiles/udt.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libudt.a" 3 | ) 4 | -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/LICENSE.txt -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/Makefile -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/README.txt -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/api.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/api.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/buffer.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/cache.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/cache.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/ccc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/ccc.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/ccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/ccc.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/channel.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/common.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/core.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/core.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/epoll.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/epoll.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/list.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/list.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/md5.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/md5.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/packet.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/queue.cpp -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/queue.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/udt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/udt.h -------------------------------------------------------------------------------- /dependence/fc/vendor/udt4/src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/fc/vendor/udt4/src/window.h -------------------------------------------------------------------------------- /dependence/fc/vendor/websocketpp/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /dependence/fc/vendor/websocketpp/websocketpp/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /dependence/leveldb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/.gitignore -------------------------------------------------------------------------------- /dependence/leveldb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/AUTHORS -------------------------------------------------------------------------------- /dependence/leveldb/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/CONTRIBUTING.md -------------------------------------------------------------------------------- /dependence/leveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/LICENSE -------------------------------------------------------------------------------- /dependence/leveldb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/Makefile -------------------------------------------------------------------------------- /dependence/leveldb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/NEWS -------------------------------------------------------------------------------- /dependence/leveldb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/README -------------------------------------------------------------------------------- /dependence/leveldb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/README.md -------------------------------------------------------------------------------- /dependence/leveldb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/TODO -------------------------------------------------------------------------------- /dependence/leveldb/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/WINDOWS.md -------------------------------------------------------------------------------- /dependence/leveldb/db/builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/builder.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/builder.h -------------------------------------------------------------------------------- /dependence/leveldb/db/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/c.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/c_test.c -------------------------------------------------------------------------------- /dependence/leveldb/db/db_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/db_bench.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/db_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/db_impl.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/db_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/db_impl.h -------------------------------------------------------------------------------- /dependence/leveldb/db/db_iter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/db_iter.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/db_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/db_iter.h -------------------------------------------------------------------------------- /dependence/leveldb/db/db_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/db_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/dbformat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/dbformat.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/dbformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/dbformat.h -------------------------------------------------------------------------------- /dependence/leveldb/db/dbformat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/dbformat_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/dumpfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/dumpfile.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/filename.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/filename.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/filename.h -------------------------------------------------------------------------------- /dependence/leveldb/db/filename_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/filename_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/leveldb_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/leveldb_main.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/log_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/log_format.h -------------------------------------------------------------------------------- /dependence/leveldb/db/log_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/log_reader.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/log_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/log_reader.h -------------------------------------------------------------------------------- /dependence/leveldb/db/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/log_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/log_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/log_writer.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/log_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/log_writer.h -------------------------------------------------------------------------------- /dependence/leveldb/db/memtable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/memtable.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/memtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/memtable.h -------------------------------------------------------------------------------- /dependence/leveldb/db/repair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/repair.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/skiplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/skiplist.h -------------------------------------------------------------------------------- /dependence/leveldb/db/skiplist_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/skiplist_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/snapshot.h -------------------------------------------------------------------------------- /dependence/leveldb/db/table_cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/table_cache.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/table_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/table_cache.h -------------------------------------------------------------------------------- /dependence/leveldb/db/version_edit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/version_edit.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/version_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/version_edit.h -------------------------------------------------------------------------------- /dependence/leveldb/db/version_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/version_set.cc -------------------------------------------------------------------------------- /dependence/leveldb/db/version_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/version_set.h -------------------------------------------------------------------------------- /dependence/leveldb/db/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/db/write_batch.cc -------------------------------------------------------------------------------- /dependence/leveldb/doc/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/doc/benchmark.html -------------------------------------------------------------------------------- /dependence/leveldb/doc/doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/doc/doc.css -------------------------------------------------------------------------------- /dependence/leveldb/doc/impl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/doc/impl.html -------------------------------------------------------------------------------- /dependence/leveldb/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/doc/index.html -------------------------------------------------------------------------------- /dependence/leveldb/doc/log_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/doc/log_format.txt -------------------------------------------------------------------------------- /dependence/leveldb/doc/table_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/doc/table_format.txt -------------------------------------------------------------------------------- /dependence/leveldb/include/leveldb/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/include/leveldb/c.h -------------------------------------------------------------------------------- /dependence/leveldb/include/leveldb/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/include/leveldb/db.h -------------------------------------------------------------------------------- /dependence/leveldb/port/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/README -------------------------------------------------------------------------------- /dependence/leveldb/port/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/port.h -------------------------------------------------------------------------------- /dependence/leveldb/port/port_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/port_example.h -------------------------------------------------------------------------------- /dependence/leveldb/port/port_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/port_posix.cc -------------------------------------------------------------------------------- /dependence/leveldb/port/port_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/port_posix.h -------------------------------------------------------------------------------- /dependence/leveldb/port/port_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/port_win.cc -------------------------------------------------------------------------------- /dependence/leveldb/port/port_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/port_win.h -------------------------------------------------------------------------------- /dependence/leveldb/port/win/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/port/win/stdint.h -------------------------------------------------------------------------------- /dependence/leveldb/table/block.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/block.cc -------------------------------------------------------------------------------- /dependence/leveldb/table/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/block.h -------------------------------------------------------------------------------- /dependence/leveldb/table/filter_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/filter_block.h -------------------------------------------------------------------------------- /dependence/leveldb/table/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/format.cc -------------------------------------------------------------------------------- /dependence/leveldb/table/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/format.h -------------------------------------------------------------------------------- /dependence/leveldb/table/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/iterator.cc -------------------------------------------------------------------------------- /dependence/leveldb/table/merger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/merger.cc -------------------------------------------------------------------------------- /dependence/leveldb/table/merger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/merger.h -------------------------------------------------------------------------------- /dependence/leveldb/table/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/table.cc -------------------------------------------------------------------------------- /dependence/leveldb/table/table_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/table/table_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/arena.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/arena.h -------------------------------------------------------------------------------- /dependence/leveldb/util/arena_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/arena_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/bloom.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/bloom.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/bloom_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/bloom_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/cache.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/cache_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/cache_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/coding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/coding.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/coding.h -------------------------------------------------------------------------------- /dependence/leveldb/util/coding_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/coding_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/comparator.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/crc32c.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/crc32c.h -------------------------------------------------------------------------------- /dependence/leveldb/util/crc32c_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/crc32c_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/env.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/env_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/env_posix.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/env_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/env_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/env_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/env_win.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/hash.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/hash.h -------------------------------------------------------------------------------- /dependence/leveldb/util/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/hash_test.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/histogram.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/histogram.h -------------------------------------------------------------------------------- /dependence/leveldb/util/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/logging.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/logging.h -------------------------------------------------------------------------------- /dependence/leveldb/util/mutexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/mutexlock.h -------------------------------------------------------------------------------- /dependence/leveldb/util/options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/options.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/posix_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/posix_logger.h -------------------------------------------------------------------------------- /dependence/leveldb/util/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/random.h -------------------------------------------------------------------------------- /dependence/leveldb/util/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/status.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/testharness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/testharness.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/testharness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/testharness.h -------------------------------------------------------------------------------- /dependence/leveldb/util/testutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/testutil.cc -------------------------------------------------------------------------------- /dependence/leveldb/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/leveldb/util/testutil.h -------------------------------------------------------------------------------- /dependence/miniupnp/miniupnpc/minixml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/miniupnp/miniupnpc/minixml.c -------------------------------------------------------------------------------- /dependence/miniupnp/miniupnpc/minixml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/miniupnp/miniupnpc/minixml.h -------------------------------------------------------------------------------- /dependence/miniupnp/miniupnpc/upnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/dependence/miniupnp/miniupnpc/upnpc.c -------------------------------------------------------------------------------- /libraries/HSRit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/HSRit.vcxproj -------------------------------------------------------------------------------- /libraries/HSRit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/HSRit.vcxproj.filters -------------------------------------------------------------------------------- /libraries/UnitTest++/Checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/Checks.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/CurrentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/CurrentTest.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/Makefile.am -------------------------------------------------------------------------------- /libraries/UnitTest++/ReportAssert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/ReportAssert.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/Test.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/TestDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/TestDetails.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/TestList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/TestList.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/TestReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/TestReporter.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/TestResults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/TestResults.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/TestRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/TestRunner.cpp -------------------------------------------------------------------------------- /libraries/UnitTest++/TimeConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/UnitTest++/TimeConstraint.cpp -------------------------------------------------------------------------------- /libraries/api/ConversionFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/api/ConversionFunctions.cpp -------------------------------------------------------------------------------- /libraries/api/GlobalApiLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/api/GlobalApiLogger.cpp -------------------------------------------------------------------------------- /libraries/blockchain/AccountEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/AccountEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Address.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Asset.cpp -------------------------------------------------------------------------------- /libraries/blockchain/AssetEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/AssetEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/BalanceEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/BalanceEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Block.cpp -------------------------------------------------------------------------------- /libraries/blockchain/ChainDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/ChainDatabase.cpp -------------------------------------------------------------------------------- /libraries/blockchain/ChainInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/ChainInterface.cpp -------------------------------------------------------------------------------- /libraries/blockchain/ContractEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/ContractEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/ForkBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/ForkBlocks.cpp -------------------------------------------------------------------------------- /libraries/blockchain/GenesisJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/GenesisJson.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Operations.cpp -------------------------------------------------------------------------------- /libraries/blockchain/PropertyEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/PropertyEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/PtsAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/PtsAddress.cpp -------------------------------------------------------------------------------- /libraries/blockchain/SlateEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/SlateEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/SlotEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/SlotEntry.cpp -------------------------------------------------------------------------------- /libraries/blockchain/StorageTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/StorageTypes.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Time.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Transaction.cpp -------------------------------------------------------------------------------- /libraries/blockchain/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/Types.cpp -------------------------------------------------------------------------------- /libraries/blockchain/WithdrawTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/WithdrawTypes.cpp -------------------------------------------------------------------------------- /libraries/blockchain/applink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/blockchain/applink.c -------------------------------------------------------------------------------- /libraries/cli/Cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/cli/Cli.cpp -------------------------------------------------------------------------------- /libraries/cli/Pretty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/cli/Pretty.cpp -------------------------------------------------------------------------------- /libraries/cli/PrintResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/cli/PrintResult.cpp -------------------------------------------------------------------------------- /libraries/client/ApiLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/ApiLogger.cpp -------------------------------------------------------------------------------- /libraries/client/BlockchainApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/BlockchainApi.cpp -------------------------------------------------------------------------------- /libraries/client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/Client.cpp -------------------------------------------------------------------------------- /libraries/client/ContractApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/ContractApi.cpp -------------------------------------------------------------------------------- /libraries/client/DebugApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/DebugApi.cpp -------------------------------------------------------------------------------- /libraries/client/DelegateApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/DelegateApi.cpp -------------------------------------------------------------------------------- /libraries/client/GeneralApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/GeneralApi.cpp -------------------------------------------------------------------------------- /libraries/client/Messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/Messages.cpp -------------------------------------------------------------------------------- /libraries/client/MiningApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/MiningApi.cpp -------------------------------------------------------------------------------- /libraries/client/NetworkApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/NetworkApi.cpp -------------------------------------------------------------------------------- /libraries/client/Notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/Notifier.cpp -------------------------------------------------------------------------------- /libraries/client/SandboxContractApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/SandboxContractApi.cpp -------------------------------------------------------------------------------- /libraries/client/ScriptApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/ScriptApi.cpp -------------------------------------------------------------------------------- /libraries/client/WalletApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/client/WalletApi.cpp -------------------------------------------------------------------------------- /libraries/db/UpgradeLeveldb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/db/UpgradeLeveldb.cpp -------------------------------------------------------------------------------- /libraries/glua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/glua/glua.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua.exe -------------------------------------------------------------------------------- /libraries/glua/glua_api_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_api_types.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_astparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_astparser.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_debug_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_debug_file.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_decompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_decompile.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_disassemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_disassemble.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_loader.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_lutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_lutil.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_proto_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_proto_info.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_state_scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_state_scope.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_statement.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_structs.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_tokenparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_tokenparser.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_vm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_vm.cpp -------------------------------------------------------------------------------- /libraries/glua/glua_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/glua_x86.exe -------------------------------------------------------------------------------- /libraries/glua/hsrcore_lua_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/hsrcore_lua_lib.cpp -------------------------------------------------------------------------------- /libraries/glua/init_debugger_info.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/init_debugger_info.db -------------------------------------------------------------------------------- /libraries/glua/language_server.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/glua/language_server.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/glua/lapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lapi.cpp -------------------------------------------------------------------------------- /libraries/glua/lauxlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lauxlib.cpp -------------------------------------------------------------------------------- /libraries/glua/lbaselib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lbaselib.cpp -------------------------------------------------------------------------------- /libraries/glua/lbitlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lbitlib.cpp -------------------------------------------------------------------------------- /libraries/glua/lcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lcode.cpp -------------------------------------------------------------------------------- /libraries/glua/lcompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lcompile.cpp -------------------------------------------------------------------------------- /libraries/glua/lcorolib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lcorolib.cpp -------------------------------------------------------------------------------- /libraries/glua/lctype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lctype.cpp -------------------------------------------------------------------------------- /libraries/glua/ldblib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ldblib.cpp -------------------------------------------------------------------------------- /libraries/glua/ldebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ldebug.cpp -------------------------------------------------------------------------------- /libraries/glua/ldo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ldo.cpp -------------------------------------------------------------------------------- /libraries/glua/ldump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ldump.cpp -------------------------------------------------------------------------------- /libraries/glua/lfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lfunc.cpp -------------------------------------------------------------------------------- /libraries/glua/lgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lgc.cpp -------------------------------------------------------------------------------- /libraries/glua/lhashmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lhashmap.cpp -------------------------------------------------------------------------------- /libraries/glua/lhsrcorelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lhsrcorelib.cpp -------------------------------------------------------------------------------- /libraries/glua/lhttplib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lhttplib.cpp -------------------------------------------------------------------------------- /libraries/glua/linit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/linit.cpp -------------------------------------------------------------------------------- /libraries/glua/liolib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/liolib.cpp -------------------------------------------------------------------------------- /libraries/glua/ljsonlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ljsonlib.cpp -------------------------------------------------------------------------------- /libraries/glua/ljsonrpclib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ljsonrpclib.cpp -------------------------------------------------------------------------------- /libraries/glua/llex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/llex.cpp -------------------------------------------------------------------------------- /libraries/glua/lmathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lmathlib.cpp -------------------------------------------------------------------------------- /libraries/glua/lmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lmem.cpp -------------------------------------------------------------------------------- /libraries/glua/lnetlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lnetlib.cpp -------------------------------------------------------------------------------- /libraries/glua/loadlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/loadlib.cpp -------------------------------------------------------------------------------- /libraries/glua/lobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lobject.cpp -------------------------------------------------------------------------------- /libraries/glua/lopcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lopcodes.cpp -------------------------------------------------------------------------------- /libraries/glua/loslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/loslib.cpp -------------------------------------------------------------------------------- /libraries/glua/lparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lparser.cpp -------------------------------------------------------------------------------- /libraries/glua/lparsercombinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lparsercombinator.cpp -------------------------------------------------------------------------------- /libraries/glua/lprefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lprefix.cpp -------------------------------------------------------------------------------- /libraries/glua/lremote_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lremote_debugger.cpp -------------------------------------------------------------------------------- /libraries/glua/lrepl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lrepl.cpp -------------------------------------------------------------------------------- /libraries/glua/lstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lstate.cpp -------------------------------------------------------------------------------- /libraries/glua/lstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lstring.cpp -------------------------------------------------------------------------------- /libraries/glua/lstrlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lstrlib.cpp -------------------------------------------------------------------------------- /libraries/glua/ltable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ltable.cpp -------------------------------------------------------------------------------- /libraries/glua/ltablib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ltablib.cpp -------------------------------------------------------------------------------- /libraries/glua/ltimelib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ltimelib.cpp -------------------------------------------------------------------------------- /libraries/glua/ltm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ltm.cpp -------------------------------------------------------------------------------- /libraries/glua/ltypechecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/ltypechecker.cpp -------------------------------------------------------------------------------- /libraries/glua/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lua.cpp -------------------------------------------------------------------------------- /libraries/glua/luac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/luac.cpp -------------------------------------------------------------------------------- /libraries/glua/lundump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lundump.cpp -------------------------------------------------------------------------------- /libraries/glua/lutf8lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lutf8lib.cpp -------------------------------------------------------------------------------- /libraries/glua/lvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lvm.cpp -------------------------------------------------------------------------------- /libraries/glua/lzio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/lzio.cpp -------------------------------------------------------------------------------- /libraries/glua/sample.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/sample.bytes -------------------------------------------------------------------------------- /libraries/glua/single_glua_src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/single_glua_src/main.cpp -------------------------------------------------------------------------------- /libraries/glua/tests_lua/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp* 2 | /*.out.* -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/test1.lua -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/test2.lua -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/test3.lua -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/test4.lua -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test_error.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/test_error.lua -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test_no_return_contract.lua: -------------------------------------------------------------------------------- 1 | print("hello") 2 | -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test_upval.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/test_upval.lua -------------------------------------------------------------------------------- /libraries/glua/tests_lua/test_use_error_function.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/glua/tests_lua/测试中文.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_lua/测试中文.lua -------------------------------------------------------------------------------- /libraries/glua/tests_typed/call_without_brackets_error.lua: -------------------------------------------------------------------------------- 1 | let a = 1 2 | pprint a 3 | -------------------------------------------------------------------------------- /libraries/glua/tests_typed/correct_nested_table.glua: -------------------------------------------------------------------------------- 1 | let nested_table1 = [ {name='hi',age=100} ] 2 | -------------------------------------------------------------------------------- /libraries/glua/tests_typed/let_var.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/tests_typed/let_var.lua -------------------------------------------------------------------------------- /libraries/glua/tests_typed/test_wrong_syntax_structure1.glua: -------------------------------------------------------------------------------- 1 | function hello() 2 | let a default 123 3 | end -------------------------------------------------------------------------------- /libraries/glua/tests_typed/un_op_run_error2.lua: -------------------------------------------------------------------------------- 1 | let a = #nil 2 | -------------------------------------------------------------------------------- /libraries/glua/tests_typed/unicode.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/glua/wrong_byte_code.bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/glua/wrong_byte_code.bytes -------------------------------------------------------------------------------- /libraries/include/UnitTest++/Checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/UnitTest++/Checks.h -------------------------------------------------------------------------------- /libraries/include/UnitTest++/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/UnitTest++/Config.h -------------------------------------------------------------------------------- /libraries/include/UnitTest++/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/UnitTest++/Test.h -------------------------------------------------------------------------------- /libraries/include/UnitTest++/TestList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/UnitTest++/TestList.h -------------------------------------------------------------------------------- /libraries/include/UnitTest++/UnitTest++.h: -------------------------------------------------------------------------------- 1 | #include "UnitTestPP.h" 2 | -------------------------------------------------------------------------------- /libraries/include/api/ApiMetadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/api/ApiMetadata.hpp -------------------------------------------------------------------------------- /libraries/include/api/CommonApi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/api/CommonApi.hpp -------------------------------------------------------------------------------- /libraries/include/blockchain/Asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/blockchain/Asset.hpp -------------------------------------------------------------------------------- /libraries/include/blockchain/Block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/blockchain/Block.hpp -------------------------------------------------------------------------------- /libraries/include/blockchain/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/blockchain/Config.hpp -------------------------------------------------------------------------------- /libraries/include/blockchain/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/blockchain/Time.hpp -------------------------------------------------------------------------------- /libraries/include/blockchain/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/blockchain/Types.hpp -------------------------------------------------------------------------------- /libraries/include/cli/Cli.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/cli/Cli.hpp -------------------------------------------------------------------------------- /libraries/include/cli/Pretty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/cli/Pretty.hpp -------------------------------------------------------------------------------- /libraries/include/cli/PrintResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/cli/PrintResult.hpp -------------------------------------------------------------------------------- /libraries/include/cli/locale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/cli/locale.hpp -------------------------------------------------------------------------------- /libraries/include/client/ApiLogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/client/ApiLogger.hpp -------------------------------------------------------------------------------- /libraries/include/client/Client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/client/Client.hpp -------------------------------------------------------------------------------- /libraries/include/client/ClientImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/client/ClientImpl.hpp -------------------------------------------------------------------------------- /libraries/include/client/Messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/client/Messages.hpp -------------------------------------------------------------------------------- /libraries/include/client/Notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/client/Notifier.hpp -------------------------------------------------------------------------------- /libraries/include/client/SeedNodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/client/SeedNodes.hpp -------------------------------------------------------------------------------- /libraries/include/db/CachedLevelMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/CachedLevelMap.hpp -------------------------------------------------------------------------------- /libraries/include/db/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/Exception.hpp -------------------------------------------------------------------------------- /libraries/include/db/FastLevelMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/FastLevelMap.hpp -------------------------------------------------------------------------------- /libraries/include/db/FsHashMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/FsHashMap.hpp -------------------------------------------------------------------------------- /libraries/include/db/Fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/Fwd.hpp -------------------------------------------------------------------------------- /libraries/include/db/LevelMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/LevelMap.hpp -------------------------------------------------------------------------------- /libraries/include/db/LevelPodMap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/LevelPodMap.hpp -------------------------------------------------------------------------------- /libraries/include/db/UpgradeLeveldb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/db/UpgradeLeveldb.hpp -------------------------------------------------------------------------------- /libraries/include/glua/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/exceptions.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_api_types.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_astparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_astparser.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_common.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_compat.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_decompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_decompile.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_loader.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_lutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_lutil.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_parser.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_statement.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_structs.h -------------------------------------------------------------------------------- /libraries/include/glua/glua_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/glua_vm.h -------------------------------------------------------------------------------- /libraries/include/glua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lapi.h -------------------------------------------------------------------------------- /libraries/include/glua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lauxlib.h -------------------------------------------------------------------------------- /libraries/include/glua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lcode.h -------------------------------------------------------------------------------- /libraries/include/glua/lcompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lcompile.h -------------------------------------------------------------------------------- /libraries/include/glua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lctype.h -------------------------------------------------------------------------------- /libraries/include/glua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/ldebug.h -------------------------------------------------------------------------------- /libraries/include/glua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/ldo.h -------------------------------------------------------------------------------- /libraries/include/glua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lfunc.h -------------------------------------------------------------------------------- /libraries/include/glua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lgc.h -------------------------------------------------------------------------------- /libraries/include/glua/lhashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lhashmap.h -------------------------------------------------------------------------------- /libraries/include/glua/lhsrcorelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lhsrcorelib.h -------------------------------------------------------------------------------- /libraries/include/glua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/llex.h -------------------------------------------------------------------------------- /libraries/include/glua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/llimits.h -------------------------------------------------------------------------------- /libraries/include/glua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lmem.h -------------------------------------------------------------------------------- /libraries/include/glua/lnetlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lnetlib.h -------------------------------------------------------------------------------- /libraries/include/glua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lobject.h -------------------------------------------------------------------------------- /libraries/include/glua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lopcodes.h -------------------------------------------------------------------------------- /libraries/include/glua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lparser.h -------------------------------------------------------------------------------- /libraries/include/glua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lprefix.h -------------------------------------------------------------------------------- /libraries/include/glua/lrepl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lrepl.h -------------------------------------------------------------------------------- /libraries/include/glua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lstate.h -------------------------------------------------------------------------------- /libraries/include/glua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lstring.h -------------------------------------------------------------------------------- /libraries/include/glua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/ltable.h -------------------------------------------------------------------------------- /libraries/include/glua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/ltm.h -------------------------------------------------------------------------------- /libraries/include/glua/ltypechecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/ltypechecker.h -------------------------------------------------------------------------------- /libraries/include/glua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lua.h -------------------------------------------------------------------------------- /libraries/include/glua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lua.hpp -------------------------------------------------------------------------------- /libraries/include/glua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/luaconf.h -------------------------------------------------------------------------------- /libraries/include/glua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lualib.h -------------------------------------------------------------------------------- /libraries/include/glua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lundump.h -------------------------------------------------------------------------------- /libraries/include/glua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lvm.h -------------------------------------------------------------------------------- /libraries/include/glua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/glua/lzio.h -------------------------------------------------------------------------------- /libraries/include/hshare_wallet/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/hshare_wallet/db.cpp -------------------------------------------------------------------------------- /libraries/include/hshare_wallet/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/hshare_wallet/db.h -------------------------------------------------------------------------------- /libraries/include/hshare_wallet/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/hshare_wallet/sync.h -------------------------------------------------------------------------------- /libraries/include/net/ChainMessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/ChainMessages.hpp -------------------------------------------------------------------------------- /libraries/include/net/ChainServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/ChainServer.hpp -------------------------------------------------------------------------------- /libraries/include/net/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/Config.hpp -------------------------------------------------------------------------------- /libraries/include/net/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/Connection.hpp -------------------------------------------------------------------------------- /libraries/include/net/CoreMessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/CoreMessages.hpp -------------------------------------------------------------------------------- /libraries/include/net/Exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/Exceptions.hpp -------------------------------------------------------------------------------- /libraries/include/net/Message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/Message.hpp -------------------------------------------------------------------------------- /libraries/include/net/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/Node.hpp -------------------------------------------------------------------------------- /libraries/include/net/PeerDatabase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/PeerDatabase.hpp -------------------------------------------------------------------------------- /libraries/include/net/StcpSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/StcpSocket.hpp -------------------------------------------------------------------------------- /libraries/include/net/Upnp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/net/Upnp.hpp -------------------------------------------------------------------------------- /libraries/include/rpc/Exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/rpc/Exceptions.hpp -------------------------------------------------------------------------------- /libraries/include/rpc/RpcClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/rpc/RpcClient.hpp -------------------------------------------------------------------------------- /libraries/include/rpc/RpcClientApi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/rpc/RpcClientApi.hpp -------------------------------------------------------------------------------- /libraries/include/rpc/RpcServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/rpc/RpcServer.hpp -------------------------------------------------------------------------------- /libraries/include/utilities/Words.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/utilities/Words.hpp -------------------------------------------------------------------------------- /libraries/include/utilities/bignum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/utilities/bignum.hpp -------------------------------------------------------------------------------- /libraries/include/utilities/blake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/utilities/blake.hpp -------------------------------------------------------------------------------- /libraries/include/utilities/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/utilities/hash.hpp -------------------------------------------------------------------------------- /libraries/include/utilities/uint256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/utilities/uint256.hpp -------------------------------------------------------------------------------- /libraries/include/utilities/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/utilities/util.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/Config.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/Exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/Exceptions.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/Pretty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/Pretty.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/Url.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/Url.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/Wallet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/Wallet.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/WalletDb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/WalletDb.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/WalletImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/WalletImpl.hpp -------------------------------------------------------------------------------- /libraries/include/wallet/url.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/include/wallet/url.hpp.in -------------------------------------------------------------------------------- /libraries/net/ChainDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/ChainDownloader.cpp -------------------------------------------------------------------------------- /libraries/net/ChainServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/ChainServer.cpp -------------------------------------------------------------------------------- /libraries/net/CoreMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/CoreMessages.cpp -------------------------------------------------------------------------------- /libraries/net/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/Node.cpp -------------------------------------------------------------------------------- /libraries/net/PeerConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/PeerConnection.cpp -------------------------------------------------------------------------------- /libraries/net/PeerDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/PeerDatabase.cpp -------------------------------------------------------------------------------- /libraries/net/StcpSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/StcpSocket.cpp -------------------------------------------------------------------------------- /libraries/net/Upnp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/net/Upnp.cpp -------------------------------------------------------------------------------- /libraries/rpc/RpcClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/rpc/RpcClient.cpp -------------------------------------------------------------------------------- /libraries/rpc/RpcServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/rpc/RpcServer.cpp -------------------------------------------------------------------------------- /libraries/rpc_stubs/CommonApiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/rpc_stubs/CommonApiClient.cpp -------------------------------------------------------------------------------- /libraries/utilities/CommonApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/utilities/CommonApi.cpp -------------------------------------------------------------------------------- /libraries/utilities/GitRevision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/utilities/GitRevision.cpp -------------------------------------------------------------------------------- /libraries/utilities/KeyConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/utilities/KeyConversion.cpp -------------------------------------------------------------------------------- /libraries/utilities/StringEscape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/utilities/StringEscape.cpp -------------------------------------------------------------------------------- /libraries/utilities/Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/utilities/Words.cpp -------------------------------------------------------------------------------- /libraries/utilities/blake256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/utilities/blake256.cpp -------------------------------------------------------------------------------- /libraries/wallet/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/wallet/Login.cpp -------------------------------------------------------------------------------- /libraries/wallet/TransactionBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/wallet/TransactionBuilder.cpp -------------------------------------------------------------------------------- /libraries/wallet/TransactionLedger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/wallet/TransactionLedger.cpp -------------------------------------------------------------------------------- /libraries/wallet/Wallet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/wallet/Wallet.cpp -------------------------------------------------------------------------------- /libraries/wallet/WalletDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/wallet/WalletDb.cpp -------------------------------------------------------------------------------- /libraries/wallet/WalletEntrys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/libraries/wallet/WalletEntrys.cpp -------------------------------------------------------------------------------- /miningpool_test/blake_lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/miningpool_test/blake_lib.dll -------------------------------------------------------------------------------- /miningpool_test/lib/blake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/miningpool_test/lib/blake.hpp -------------------------------------------------------------------------------- /miningpool_test/lib/blake256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/miningpool_test/lib/blake256.cpp -------------------------------------------------------------------------------- /miningpool_test/mining_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/miningpool_test/mining_test.py -------------------------------------------------------------------------------- /miningpool_test/rpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/miningpool_test/rpc_client.py -------------------------------------------------------------------------------- /wallet use tutorial.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/wallet use tutorial.docx -------------------------------------------------------------------------------- /钱包使用教程.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HcashOrg/Hcash/HEAD/钱包使用教程.docx --------------------------------------------------------------------------------