Home
last modified time | relevance | path

Searched refs:sqlite3 (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/sqlite3/
H A Dsqlite3ext.h46 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
47 int (*busy_timeout)(sqlite3*,int ms);
48 int (*changes)(sqlite3*);
49 int (*close)(sqlite3*);
50 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,
52 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,
75 void * (*commit_hook)(sqlite3*,int(*)(void*),void*);
78 int (*create_collation)(sqlite3*,const char*,int,void*,
80 int (*create_collation16)(sqlite3*,const void*,int,void*,
82 int (*create_function)(sqlite3*,const char*,int,int,void*,
[all …]
H A Dsqlite3.h272 typedef struct sqlite3 sqlite3; typedef
353 SQLITE_API int sqlite3_close(sqlite3*);
354 SQLITE_API int sqlite3_close_v2(sqlite3*);
428 sqlite3*, /* An open database */
1701 SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...);
2543 SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
2605 SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
2615 SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64);
2676 SQLITE_API int sqlite3_changes(sqlite3*);
2677 SQLITE_API sqlite3_int64 sqlite3_changes64(sqlite3*);
[all …]
H A DMakefile.in94 bin_PROGRAMS = sqlite3$(EXEEXT)
105 CONFIG_CLEAN_FILES = sqlite3.pc
140 am_libsqlite3_la_OBJECTS = sqlite3.lo
149 am_sqlite3_OBJECTS = sqlite3-shell.$(OBJEXT)
169 am__depfiles_remade = ./$(DEPDIR)/sqlite3-shell.Po \
170 ./$(DEPDIR)/sqlite3-sqlite3.Po ./$(DEPDIR)/sqlite3.Plo
222 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/sqlite3.pc.in \
368 libsqlite3_la_SOURCES = sqlite3.c
370 sqlite3_SOURCES = shell.c sqlite3.h
371 EXTRA_sqlite3_SOURCES = sqlite3.c
[all …]
H A DMakefile.am3 libsqlite3_la_SOURCES = sqlite3.c
6 bin_PROGRAMS = sqlite3 program
7 sqlite3_SOURCES = shell.c sqlite3.h
8 EXTRA_sqlite3_SOURCES = sqlite3.c
13 include_HEADERS = sqlite3.h sqlite3ext.h
15 EXTRA_DIST = sqlite3.1 tea Makefile.msc sqlite3.rc sqlite3rc.h README.txt Replace.cs Makefile.fallb…
17 pkgconfig_DATA = sqlite3.pc
19 man_MANS = sqlite3.1
H A DMakefile.fallback18 sqlite3: shell.c sqlite3.c
19 $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)
H A DREADME.txt3 * the SQLite library amalgamation source code file: sqlite3.c
4 * the sqlite3.h and sqlite3ext.h header files that define the C-language
5 interface to the sqlite3.c library file
6 * the shell.c file used to build the sqlite3 command-line shell program
9 * a Makefile.msc, sqlite3.rc, and Replace.cs for building with Microsoft
H A Dconfigure.ac14 AC_CONFIG_SRCDIR([sqlite3.c])
31 AC_CONFIG_FILES([Makefile sqlite3.pc])
230 EXTRA_SHELL_OBJ=sqlite3-sqlite3.$OBJEXT
H A Dsqlite3.rc26 #include "sqlite3.h"
72 VALUE "InternalName", "sqlite3"
H A Dsqlite3.c585 typedef struct sqlite3 sqlite3; typedef
666 SQLITE_API int sqlite3_close(sqlite3*);
667 SQLITE_API int sqlite3_close_v2(sqlite3*);
741 sqlite3*, /* An open database */
2014 SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...);
2856 SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
2918 SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
2928 SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64);
2989 SQLITE_API int sqlite3_changes(sqlite3*);
2990 SQLITE_API sqlite3_int64 sqlite3_changes64(sqlite3*);
[all …]
/freebsd/contrib/kyua/utils/sqlite/
H A Dtest_utils.hpp81 static inline ::sqlite3*
100 static void create_test_table(::sqlite3*) UTILS_UNUSED;
113 create_test_table(::sqlite3* db) in create_test_table()
121 static void verify_test_table(::sqlite3*) UTILS_UNUSED;
132 verify_test_table(::sqlite3* db) in verify_test_table()
H A Dc_gate.cpp70 sqlite::database_c_gate::connect(::sqlite3* raw_database) in connect()
79 ::sqlite3*
82 return static_cast< ::sqlite3* >(_database.raw_database()); in c_database()
H A Ddatabase.cpp61 ::sqlite3* db;
76 impl(optional< fs::path > db_filename_, ::sqlite3* db_, const bool owned_) : in impl()
105 static ::sqlite3*
108 ::sqlite3* db; in safe_open()
152 _pimpl(new impl(db_filename_, static_cast< ::sqlite3* >(db_), owned_)) in database()
H A Dc_gate_test.cpp45 ::sqlite3* raw_db; in ATF_TEST_CASE_BODY()
66 ::sqlite3* raw_db = gate.c_database(); in ATF_TEST_CASE_BODY()
81 ::sqlite3* raw_db; in ATF_TEST_CASE_BODY()
H A Dc_gate.hpp65 static database connect(::sqlite3*);
67 ::sqlite3* c_database(void);
H A Ddatabase_test.cpp61 ::sqlite3* db; in ATF_TEST_CASE_BODY()
94 ::sqlite3* db; in ATF_TEST_CASE_BODY()
/freebsd/contrib/sqlite3/tea/
H A DpkgIndex.tcl.in5 package ifneeded sqlite3 @PACKAGE_VERSION@ \
6 [list load [file join $dir @PKG_LIB_FILE9@] sqlite3]
8 package ifneeded sqlite3 @PACKAGE_VERSION@ \
9 [list load [file join $dir @PKG_LIB_FILE8@] sqlite3]
H A Dconfigure.ac104 AC_CHECK_HEADER([sqlite3.h],
105 [AC_CHECK_LIB([sqlite3],[sqlite3_initialize],
/freebsd/lib/libsqlite3/
H A DMakefile3 LIB= sqlite3
7 SRCS= sqlite3.c
8 INCS= sqlite3.h sqlite3ext.h
10 SQLITE= ${SRCTOP}/contrib/sqlite3
/freebsd/contrib/sqlite3/tea/win/
H A Dmakefile.vc156 PROJECT = sqlite3
209 DLLOBJS = $(TMP_DIR)\sqlite3.obj $(TMP_DIR)\tclsqlite.obj
363 $(TMP_DIR)\sqlite3.obj: $(SQLITE_SRCDIR)\sqlite3.c
365 -c $(SQLITE_SRCDIR)\sqlite3.c
410 [list load [file join $$dir $(PRJLIBNAME)] sqlite3]
/freebsd/contrib/file/magic/Magdir/
H A Dsql113 #!:mime application/x-sqlite3
114 # seldom found extension sqlite3 like in SyncData.sqlite3
144 !:mime application/x-audacity-project+sqlite3
151 !:mime application/vnd.sqlite3
158 !:mime application/vnd.sqlite3
164 !:mime application/vnd.sqlite3
172 !:mime application/vnd.sqlite3
181 # https://www.iana.org/assignments/media-types/application/geopackage+sqlite3
182 !:mime application/geopackage+sqlite3
189 !:mime application/geopackage+sqlite3
[all …]
/freebsd/usr.bin/kyua/
H A DMakefile16 LIBADD= lutok sqlite3
35 CFLAGS+= -I${SRCTOP}/contrib/sqlite3
/freebsd/contrib/kyua/integration/
H A Dcmd_db_migrate_test.sh43 cat "${@}" | sqlite3 "${HOME}/.kyua/store.db"
53 cat "${@}" | sqlite3 "${HOME}/.kyua/store/${dbname}"
/freebsd/kerberos5/lib/libhdb/
H A DMakefile6 LIBADD= asn1 com_err krb5 roken sqlite3
61 -I${KRB5DIR}/lib/roken -I${SRCTOP}/contrib/sqlite3/ \
/freebsd/crypto/heimdal/lib/hdb/
H A Dhdb-sqlite.c41 sqlite3 *db;
127 sqlite3 *db, in hdb_sqlite_prepare_stmt()
165 sqlite3 *database, in hdb_sqlite_exec_stmt()
226 hdb_sqlite_step(krb5_context context, sqlite3 *db, sqlite3_stmt *stmt) in hdb_sqlite_step()
/freebsd/contrib/wpa/hostapd/
H A Dhlr_auc_gw.c108 static sqlite3 *sqlite_db = NULL;
112 static int db_table_exists(sqlite3 *db, const char *name) in db_table_exists()
120 static int db_table_create_milenage(sqlite3 *db) in db_table_create_milenage()
144 static sqlite3 * db_open(const char *db_file) in db_open()
146 sqlite3 *db; in db_open()

12