HomeSort by: relevance | last modified time | path
    Searched refs:sqlite3 (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/external/bsd/kyua-cli/dist/utils/sqlite/
c_gate.hpp 36 #include <sqlite3.h>
64 static database connect(::sqlite3*);
66 ::sqlite3* c_database(void);
c_gate.cpp 59 /// take care to properly destroy the input sqlite3 when you are done with it to
66 sqlite::database_c_gate::connect(::sqlite3* raw_database)
74 /// \return A native sqlite3 object holding the SQLite 3 C API database.
75 ::sqlite3*
78 return static_cast< ::sqlite3* >(_database.raw_database());
test_utils.hpp 74 /// Gets the pointer to the internal sqlite3 of a database object.
80 /// \return The internal sqlite3 of the input database.
81 static inline ::sqlite3*
100 static void create_test_table(::sqlite3*) UTILS_UNUSED;
113 create_test_table(::sqlite3* db)
121 static void verify_test_table(::sqlite3*) UTILS_UNUSED;
132 verify_test_table(::sqlite3* db)
database.cpp 32 #include <sqlite3.h>
50 ::sqlite3* db;
60 impl(::sqlite3* db_, const bool owned_) :
90 static ::sqlite3*
93 ::sqlite3* db;
132 _pimpl(new impl(static_cast< ::sqlite3* >(db_), owned_))
209 /// Gets the internal sqlite3 object.
212 /// prevent including the sqlite3.h header file from our public interface. The
c_gate_test.cpp 44 ::sqlite3* raw_db;
65 ::sqlite3* raw_db = gate.c_database();
exceptions.cpp 32 #include <sqlite3.h>
85 ::sqlite3* c_db = database_c_gate(database_).c_database();
exceptions_test.cpp 61 ::sqlite3* raw_db;
database_test.cpp 58 ::sqlite3* db;
91 ::sqlite3* db;
  /src/external/public-domain/sqlite/lib/
Makefile 3 LIB= sqlite3
4 INCS= sqlite3.h sqlite3ext.h
7 SRCS= sqlite3.c
12 FILES+= sqlite3.pc
18 CLEANFILES+=sqlite3.pc
22 COPTS.sqlite3.c+= ${CC_WNO_RETURN_LOCAL_ADDR} ${CC_WNO_STRINGOP_OVERFLOW}
23 COPTS.sqlite3.c+= ${CC_WNO_ARRAY_BOUNDS}
24 COPTS.sqlite3.c+= -Wno-error=misleading-indentation
25 COPTS.sqlite3.c+= ${${ACTIVE_CC} == "gcc":? -Wno-error=restrict :}
35 all: sqlite3.p
    [all...]
  /src/external/public-domain/sqlite/dist/
Makefile.fallback 18 sqlite3: shell.c sqlite3.c
19 $(CC) $(CFLAGS) $(COPTS) -o sqlite3 shell.c sqlite3.c $(LIBS)
sqlite3ext.h 16 ** sqlite3.h.
20 #include "sqlite3.h"
46 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*,
    [all...]
sqlite3.h 30 ** the version number) and changes its name to "sqlite3.h" as
122 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
125 ** SQLite3) and Y is the minor version number and Z is the release number.)^
263 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
270 ** sqlite3 object.
272 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
317 ** DESTRUCTOR: sqlite3
320 ** for the [sqlite3] object
    [all...]
Makefile.msc 238 SQLITE3C = sqlite3-all.c
240 SQLITE3C = sqlite3.c
248 SQLITE3H = sqlite3.h
257 SQLITE3DLL = sqlite3.dll
267 SQLITE3LIB = sqlite3.lib
277 SQLITE3EXE = sqlite3.exe
417 # nmake /f Makefile.msc sqlite3.dll
424 # nmake /f Makefile.msc sqlite3.dll
559 CORE_LINK_DEP = sqlite3.def
571 CORE_LINK_OPTS = /DEF:sqlite3.de
    [all...]
  /src/lib/lua/sqlite/
Makefile 6 LUA_DPLIBS+= sqlite3 \
sqlite.c 34 #include <sqlite3.h>
81 sqlite3 **db;
83 db = lua_newuserdata(L, sizeof(sqlite3 *));
120 sqlite3 **db;
135 sqlite3 **db;
153 sqlite3 **db;
164 sqlite3 **db;
174 sqlite3 **db;
184 sqlite3 **db;
194 sqlite3 **db
    [all...]
  /src/usr.sbin/makemandb/
apropos-utils.h 36 #include "sqlite3.h"
107 sqlite3 *init_db(mandb_access_mode, const char *);
108 void close_db(sqlite3 *);
110 int run_query(sqlite3 *, query_format, query_args *);
whatis.c 49 whatis(sqlite3 *db, const char *cmd)
84 sqlite3 *db;
apropos-utils.c 85 register_tokenizer(sqlite3 *db)
168 close_db(sqlite3 *db)
179 create_db(sqlite3 *db)
349 sqlite3 *
352 sqlite3 *db = NULL;
669 execute_search_query(sqlite3 *db, char *query, query_args *args)
746 run_query_internal(sqlite3 *db, const char *snippet_args[3], query_args *args)
863 run_query_html(sqlite3 *db, query_args *args)
1031 run_query_pager(sqlite3 *db, query_args *args)
1119 run_query_term(sqlite3 *db, query_args *args
    [all...]
makemandb.c 100 static int check_md5(const char *, sqlite3 *, char **, void *, size_t);
104 static int insert_into_db(sqlite3 *, mandb_rec *);
119 static void traversedir(const char *, const char *, sqlite3 *, struct mparse *);
122 static void build_file_cache(sqlite3 *, const char *, const char *,
124 static void update_db(sqlite3 *, struct mparse *, mandb_rec *);
126 static void optimize(sqlite3 *);
302 sqlite3 *db;
460 traversedir(const char *parent, const char *file, sqlite3 *db,
513 build_file_cache(sqlite3 *db, const char *parent, const char *file,
640 update_existing_entry(sqlite3 *db, const char *file, const char *hash
    [all...]
  /src/external/public-domain/sqlite/bin/
Makefile 3 PROG= sqlite3
  /src/external/public-domain/sqlite/sqlite2mdoc/
README.md 4 `sqlite3.h` and produces a set of decently well-formed
14 **Note**: this only works with sqlite3, *not* the original `sqlite.h`
41 - [sqlite3\_open(3)](samples/sqlite3_open.3.md)
  /src/external/public-domain/sqlite/dist/tea/
configure.ac 104 AC_CHECK_HEADER([sqlite3.h],
105 [AC_CHECK_LIB([sqlite3],[sqlite3_initialize],
  /src/external/bsd/kyua-cli/dist/integration/
cmd_db_migrate_test.sh 35 atf_set require.progs "sqlite3"
42 | sqlite3 .kyua/store.db
61 atf_set require.progs "sqlite3"
67 sqlite3 .kyua/store.db <"${data}/schema_v1.sql"
  /src/crypto/external/bsd/heimdal/lib/libhdb/
Makefile 22 sqlite3 ${NETBSDSRCDIR}/external/public-domain/sqlite/lib
  /src/external/ibm-public/postfix/dist/src/global/
dict_sqlite.c 7 /* dictionary manager interface to SQLite3 databases
59 #include <sqlite3.h>
88 sqlite3 *db; /* sqlite handle */

Completed in 67 milliseconds

1 2