Home
last modified time | relevance | path

Searched refs:sqlite3_uri_boolean (Results 1 – 12 of 12) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Durifuncs.c84 int iRes = sqlite3_uri_boolean(zFile, zName, iDflt); in func_uri_boolean()
H A Dmemvfs.c340 p->bFreeOnClose = sqlite3_uri_boolean(zName,"freeonclose",0); in memOpen()
/sqlite-3.40.0/src/
H A Dloadext.c392 sqlite3_uri_boolean,
H A Dsqlite3ext.h585 #define sqlite3_uri_boolean sqlite3_api->uri_boolean macro
H A Dutil.c1523 if( sqlite3_uri_boolean(zBaseFilename, "8_3_names", 0) ) in sqlite3FileSuffix3()
H A Dtest_multiplex.c511 pGroup->bTruncate = (unsigned char)sqlite3_uri_boolean(zUri, "truncate", in multiplexOpen()
H A Dos_win.c3975 if( 0==sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){
5156 if( 0==sqlite3_uri_boolean(zName, "exclusive", 0) ){
5307 && sqlite3_uri_boolean(zName, "psow", SQLITE_POWERSAFE_OVERWRITE)
H A Dos_unix.c4657 if( 0==sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){ in unixOpenSharedMemory()
5659 if( sqlite3_uri_boolean(((ctrlFlags & UNIXFILE_URI) ? zFilename : 0), in fillInUnixFile()
H A Dpager.c4926 pPager->noLock = sqlite3_uri_boolean(pPager->zFilename, "nolock", 0); in sqlite3PagerOpen()
4928 || sqlite3_uri_boolean(pPager->zFilename, "immutable", 0) ){ in sqlite3PagerOpen()
H A Dmain.c4590 int sqlite3_uri_boolean(const char *zFilename, const char *zParam, int bDflt){ in sqlite3_uri_boolean() function
H A Dsqlite.h.in1279 ** <li> sqlite3_uri_boolean()
3696 ** The sqlite3_uri_boolean(F,P,B) routine assumes that P is a boolean
3698 ** of P. The sqlite3_uri_boolean(F,P,B) routine returns true (1) if the
3701 ** sqlite3_uri_boolean(F,P,B) routines returns false (0) if the value of
3705 ** above, then sqlite3_uri_boolean(F,P,B) returns (B!=0).
3720 ** sqlite3_uri_boolean(F,P,B) returns B. If F is not a NULL pointer and
3736 int sqlite3_uri_boolean(sqlite3_filename z, const char *zParam, int bDefault);
3803 ** <li> [sqlite3_uri_boolean()],
6370 ** <li> [sqlite3_uri_boolean()]
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c2957 if( sqlite3_uri_boolean(zBase, "8_3_names", 0) ) in rbuFileSuffix3()
3170 return sqlite3_uri_boolean(zUri, RBU_EXCLUSIVE_CHECKPOINT, 0); in rbuExclusiveCheckpoint()
5093 && sqlite3_uri_boolean(zName, "rbu_memory", 0) in rbuVfsOpen()