Lines Matching defs:sqlite3_config

317 ** can be fully or partially disabled using a call to [sqlite3_config()]
322 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
323 ** is unchanged by calls to sqlite3_config().)^
1418 ** a default configuration using [sqlite3_config()].
1443 ** The sqlite3_config() interface is used to make global configuration
1449 ** The sqlite3_config() interface is not threadsafe. The application
1451 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1454 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1456 ** Note, however, that ^sqlite3_config() can be called as part of the
1459 ** The first argument to sqlite3_config() is an integer
1465 ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
1469 SQLITE_API int sqlite3_config(int, ...);
1476 ** [sqlite3_config()] except that the changes apply to a single
1497 ** [sqlite3_config()] when the configuration option is
1500 ** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC])
1569 ** can be passed as the first argument to the [sqlite3_config()] interface.
1573 ** should check the return code from [sqlite3_config()] to make sure that
1574 ** the call worked. The [sqlite3_config()] interface will return a
1586 ** value of Single-thread and so [sqlite3_config()] will return
1601 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
1617 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
1626 ** before the [sqlite3_config()] call returns.</dd>
1712 ** [sqlite3_config()] returns. ^If SQLite is compiled with
1715 ** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will
1728 ** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will
2838 ** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option.
5162 ** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and
5165 ** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...).
5167 ** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than
5960 ** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
6063 ** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
6638 ** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can
6655 ** internal buffer by SQLite within the call to [sqlite3_config]. Hence
6657 ** [sqlite3_config()] returns.)^
7188 ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
7925 ** be overridden at runtime using the sqlite3_config() API.
16232 ** sqlite3_config() before SQLite will operate.
16270 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
16567 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
16947 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
17135 ** sqlite3_config().
17772 ** This routine is only called by sqlite3_config(), and therefore
18260 assert( zByte!=0 ); /* sqlite3_config() does not allow otherwise */
18262 /* boundaries on sqlite3GlobalConfig.mnReq are enforced in sqlite3_config() */
18405 ** install a mutex implementation via sqlite3_config() prior to
18545 ** sqlite3_config(SQLITE_CONFIG_MUTEX,...)
33531 ** This routine is only called by sqlite3_config(), and therefore
33549 sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32());
38743 ** verb to sqlite3_config(). Parameter pBuf points to an allocation large
38771 ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no
38921 ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer
39556 sqlite3_config(SQLITE_CONFIG_PCACHE2, &defaultMethods);
99387 ** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set.
122502 SQLITE_API int sqlite3_config(int op, ...){
122506 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while