Searched refs:sqlite3_open_v2 (Results 1 - 14 of 14) sorted by relevance

/netbsd-current/external/bsd/kyua-cli/dist/utils/sqlite/
H A Dc_gate_test.cpp45 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2(":memory:", &raw_db,
H A Dexceptions_test.cpp62 ATF_REQUIRE_EQ(SQLITE_CANTOPEN, ::sqlite3_open_v2("missing.db", &raw_db,
H A Ddatabase.cpp80 /// Exception-safe version of sqlite3_open_v2.
94 const int error = ::sqlite3_open_v2(file, &db, flags, NULL);
101 "sqlite3_open_v2");
H A Ddatabase_test.cpp59 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2("test.db", &db,
75 REQUIRE_API_ERROR("sqlite3_open_v2",
92 ATF_REQUIRE_EQ(SQLITE_OK, ::sqlite3_open_v2("test.db", &db,
108 REQUIRE_API_ERROR("sqlite3_open_v2",
/netbsd-current/lib/lua/sqlite/
H A Dsqlite.c88 lua_pushinteger(L, sqlite3_open_v2(luaL_checkstring(L, -3), db,
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dscache.c239 ret = sqlite3_open_v2(name, db, SQLITE_OPEN_READWRITE, NULL);
345 ret = sqlite3_open_v2(s->file, &s->db, SQLITE_OPEN_READWRITE|flags, NULL);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dhdb-sqlite.c336 ret = sqlite3_open_v2(hsdb->db_file, &hsdb->db,
/netbsd-current/usr.sbin/makemandb/
H A Dapropos-utils.c394 rc = sqlite3_open_v2(dbpath, &db, db_flag, NULL);
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3ext.h539 #define sqlite3_open_v2 sqlite3_api->open_v2 macro
H A Dsqlite3.h265 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
349 ** [sqlite3_open_v2()], and not previously closed.
577 ** 3rd parameter to the [sqlite3_open_v2()] interface and
580 ** Only those flags marked as "Ok for sqlite3_open_v2()" may be
581 ** used as the third argument to the [sqlite3_open_v2()] interface.
582 ** The other flags have historically been ignored by sqlite3_open_v2(),
584 ** raised if any of the disallowed bits are passed into sqlite3_open_v2().
588 ** [sqlite3_open_v2()] does *not* cause the underlying database file
590 ** [sqlite3_open_v2()] has historically be a no-op and might become an
593 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
[all...]
H A Dshell.c16191 if( sqlite3_open_v2(p->zUri, &db, flags, 0) ){
22154 sqlite3_open_v2(zDbFilename, &p->db,
22168 sqlite3_open_v2(zDbFilename, &p->db,
22174 sqlite3_open_v2(zDbFilename, &p->db,
24357 rc = sqlite3_open_v2(cmd.zFile, &cmd.db, flags,
24861 rc = sqlite3_open_v2(zDestFile, &pDest,
H A Dsqlite3.c578 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
662 ** [sqlite3_open_v2()], and not previously closed.
890 ** 3rd parameter to the [sqlite3_open_v2()] interface and
893 ** Only those flags marked as "Ok for sqlite3_open_v2()" may be
894 ** used as the third argument to the [sqlite3_open_v2()] interface.
895 ** The other flags have historically been ignored by sqlite3_open_v2(),
897 ** raised if any of the disallowed bits are passed into sqlite3_open_v2().
901 ** [sqlite3_open_v2()] does *not* cause the underlying database file
903 ** [sqlite3_open_v2()] has historically be a no-op and might become an
906 #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
136011 #define sqlite3_open_v2 macro
181756 SQLITE_API int sqlite3_open_v2( function
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d212 SQLITE_OPEN_READONLY = 0x00000001, /** Ok for sqlite3_open_v2() */
213 SQLITE_OPEN_READWRITE = 0x00000002, /** Ok for sqlite3_open_v2() */
214 SQLITE_OPEN_CREATE = 0x00000004, /** Ok for sqlite3_open_v2() */
218 SQLITE_OPEN_URI = 0x00000040, /** Ok for sqlite3_open_v2() */
219 SQLITE_OPEN_MEMORY = 0x00000080, /** Ok for sqlite3_open_v2() */
227 SQLITE_OPEN_NOMUTEX = 0x00008000, /** Ok for sqlite3_open_v2() */
228 SQLITE_OPEN_FULLMUTEX = 0x00010000, /** Ok for sqlite3_open_v2() */
229 SQLITE_OPEN_SHAREDCACHE = 0x00020000, /** Ok for sqlite3_open_v2() */
230 SQLITE_OPEN_PRIVATECACHE = 0x00040000, /** Ok for sqlite3_open_v2() */
683 int sqlite3_open_v2(
[all...]
/netbsd-current/external/public-domain/sqlite/dist/tea/generic/
H A Dtclsqlite3.c2089 rc = sqlite3_open_v2(zDestFile, &pDest,
3191 rc = sqlite3_open_v2(zSrcFile, &pSrc,
3882 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs);

Completed in 601 milliseconds