| /freebsd-12.1/crypto/heimdal/lib/sqlite/ |
| H A D | sqlite3ext.h | 50 int (*changes)(sqlite3*); 51 int (*close)(sqlite3*); 52 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const char*)); 53 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const void*)); 87 int (*errcode)(sqlite3*db); 88 const char * (*errmsg)(sqlite3*); 99 void (*interruptx)(sqlite3*); 132 int (*total_changes)(sqlite3*); 190 int (*limit)(sqlite3*,int,int); 195 sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); [all …]
|
| H A D | sqlite3.h | 227 typedef struct sqlite3 sqlite3; typedef 2245 sqlite3*, 3708 sqlite3 *db, 4161 sqlite3*, 4168 sqlite3*, 4176 sqlite3*, 4210 sqlite3*, 4215 sqlite3*, 4459 sqlite3*, 5093 sqlite3*, [all …]
|
| H A D | Makefile.am | 7 noinst_HEADERS = sqlite3.h sqlite3ext.h 9 libheimsqlite_la_SOURCES = sqlite3.c
|
| H A D | sqlite3.c | 780 typedef struct sqlite3 sqlite3; typedef 2798 sqlite3*, 4714 sqlite3*, 4721 sqlite3*, 4729 sqlite3*, 5646 sqlite3*, 111054 sqlite3 *db = (sqlite3 *)ptr; 111073 sqlite3 *db = (sqlite3 *)ptr; 112993 sqlite3 *db = va_arg(ap, sqlite3*); 113011 sqlite3 *db = va_arg(ap, sqlite3*); [all …]
|
| H A D | NTMakefile | 37 $(INCDIR)\sqlite3.h \ 40 $(LIBSQLITE): $(OBJ)\sqlite3.obj
|
| /freebsd-12.1/contrib/sqlite3/ |
| H A D | sqlite3ext.h | 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*, 95 int (*errcode)(sqlite3*db); 107 void (*interruptx)(sqlite3*); 205 int (*limit)(sqlite3*,int,int); 210 sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); 233 void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*); 238 int (*close_v2)(sqlite3*); [all …]
|
| H A D | sqlite3.h | 249 typedef struct sqlite3 sqlite3; typedef 3030 sqlite3*, 3229 sqlite3*, 5889 sqlite3*, 5896 sqlite3*, 5904 sqlite3*, 5939 sqlite3*, 5944 sqlite3*, 6303 sqlite3*, 7160 sqlite3*, [all …]
|
| H A D | Makefile.am | 4 libsqlite3_la_SOURCES = sqlite3.c 7 bin_PROGRAMS = sqlite3 program 8 sqlite3_SOURCES = shell.c sqlite3.h 9 EXTRA_sqlite3_SOURCES = sqlite3.c 14 include_HEADERS = sqlite3.h sqlite3ext.h 16 EXTRA_DIST = sqlite3.1 tea Makefile.msc sqlite3.rc README.txt Replace.cs Makefile.fallback 18 pkgconfig_DATA = sqlite3.pc 20 man_MANS = sqlite3.1
|
| H A D | Makefile.in | 376 man_MANS = sqlite3.1 414 sqlite3.pc: $(top_builddir)/config.status $(srcdir)/sqlite3.pc.in 505 @rm -f sqlite3$(EXEEXT) 515 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqlite3-sqlite3.Po@am__quote@ 539 sqlite3-shell.o: shell.c 546 sqlite3-shell.obj: shell.c 553 sqlite3-sqlite3.o: sqlite3.c 554 …LAGS) -MT sqlite3-sqlite3.o -MD -MP -MF $(DEPDIR)/sqlite3-sqlite3.Tpo -c -o sqlite3-sqlite3.o `tes… 555 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sqlite3-sqlite3.Tpo $(DEPDIR)/sqlite3-sqlite3.Po 560 sqlite3-sqlite3.obj: sqlite3.c [all …]
|
| H A D | Makefile.fallback | 18 sqlite3: shell.c sqlite3.c 19 $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)
|
| H A D | Makefile.msc | 225 SQLITE3C = sqlite3-all.c 227 SQLITE3C = sqlite3.c 235 SQLITE3H = sqlite3.h 244 SQLITE3DLL = sqlite3.dll 254 SQLITE3LIB = sqlite3.lib 264 SQLITE3EXE = sqlite3.exe 536 CORE_LINK_DEP = sqlite3.def 938 LIBOBJS1 = sqlite3.lo 993 echo EXPORTS > sqlite3.def 996 | sort >> sqlite3.def [all …]
|
| H A D | README.txt | 3 * 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 D | configure.ac | 14 AC_CONFIG_SRCDIR([sqlite3.c]) 31 AC_CONFIG_FILES([Makefile sqlite3.pc]) 199 EXTRA_SHELL_OBJ=sqlite3-sqlite3.$OBJEXT
|
| H A D | sqlite3.rc | 26 #include "sqlite3.h" 72 VALUE "InternalName", "sqlite3"
|
| H A D | sqlite3.c | 1288 typedef struct sqlite3 sqlite3; typedef 4069 sqlite3*, 4268 sqlite3*, 161794 sqlite3 *db = (sqlite3 *)ptr; 161815 sqlite3 *db = (sqlite3 *)ptr; 164053 sqlite3 *db = va_arg(ap, sqlite3*); 164216 sqlite3 *db = va_arg(ap, sqlite3*); 164237 sqlite3 *db = va_arg(ap, sqlite3*); 164293 sqlite3 *db = va_arg(ap, sqlite3*); 164325 sqlite3 *db = va_arg(ap, sqlite3*); [all …]
|
| /freebsd-12.1/lib/libsqlite3/ |
| H A D | Makefile | 5 LIB= sqlite3 9 SRCS= sqlite3.c 10 INCS= sqlite3.h sqlite3ext.h 12 SQLITE= ${SRCTOP}/contrib/sqlite3
|
| /freebsd-12.1/contrib/sqlite3/tea/win/ |
| H A D | makefile.vc | 209 DLLOBJS = $(TMP_DIR)\sqlite3.obj $(TMP_DIR)\tclsqlite.obj 352 $(TMP_DIR)\sqlite3.obj: $(SQLITE_SRCDIR)\sqlite3.c 354 -c $(SQLITE_SRCDIR)\sqlite3.c 399 [list load [file join $$dir $(PRJLIBNAME)] sqlite3]
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | sql | 100 !:mime application/x-sqlite3 101 # seldom found extension sqlite3 like in SyncData.sqlite3 107 !:ext sqlite/sqlite3/db/dbe 137 #!:mime application/x-panasonic-sqlite3
|
| /freebsd-12.1/kerberos5/lib/libhdb/ |
| H A D | Makefile | 6 LIBADD= asn1 com_err krb5 roken sqlite3 60 -I${KRB5DIR}/lib/roken -I${SRCTOP}/contrib/sqlite3/ \
|
| /freebsd-12.1/contrib/sqlite3/tea/ |
| H A D | pkgIndex.tcl.in | 6 package ifneeded sqlite3 @PACKAGE_VERSION@ \
|
| /freebsd-12.1/usr.bin/svn/lib/ |
| H A D | Makefile.inc | 8 SQLITE= ${SRCTOP}/contrib/sqlite3
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | libsvn_subr.pc.in | 10 Requires.private: sqlite3
|
| /freebsd-12.1/contrib/apr-util/test/ |
| H A D | Makefile.win | 164 echo Testing dbd sqlite3 && $(OUTDIR)\dbd.exe sqlite3 || echo Failed
|
| /freebsd-12.1/crypto/heimdal/lib/hdb/ |
| H A D | hdb-sqlite.c | 41 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-12.1/contrib/wpa/hostapd/ |
| H A D | hlr_auc_gw.c | 108 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()
|