Lines Matching refs:sqlite3_config

379 ** be overridden at runtime using the sqlite3_config() API.
755 ** can be fully or partially disabled using a call to [sqlite3_config()]
760 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
761 ** is unchanged by calls to sqlite3_config().)^
1670 ** a default configuration using [sqlite3_config()].
1695 ** The sqlite3_config() interface is used to make global configuration
1701 ** The sqlite3_config() interface is not threadsafe. The application
1703 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1706 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1708 ** Note, however, that ^sqlite3_config() can be called as part of the
1711 ** The first argument to sqlite3_config() is an integer
1717 ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
1721 SQLITE_API int sqlite3_config(int, ...);
1728 ** [sqlite3_config()] except that the changes apply to a single
1749 ** [sqlite3_config()] when the configuration option is
1752 ** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC])
1821 ** can be passed as the first argument to the [sqlite3_config()] interface.
1825 ** should check the return code from [sqlite3_config()] to make sure that
1826 ** the call worked. The [sqlite3_config()] interface will return a
1838 ** value of Single-thread and so [sqlite3_config()] will return
1853 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
1869 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
1878 ** before the [sqlite3_config()] call returns.</dd>
1964 ** [sqlite3_config()] returns. ^If SQLite is compiled with
1967 ** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will
1980 ** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will
3022 ** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option.
5087 ** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and
5090 ** [sqlite3_config]([SQLITE_CONFIG_PCACHE],...).
5092 ** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than
5847 ** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
5948 ** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
6458 ** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE], ...) interface can
6475 ** internal buffer by SQLite within the call to [sqlite3_config]. Hence
6477 ** [sqlite3_config()] returns.)^
6959 ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
14774 ** sqlite3_config() before SQLite will operate.
14812 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
14964 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
15344 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
15532 ** sqlite3_config().
16169 ** This routine is only called by sqlite3_config(), and therefore
16662 assert( zByte!=0 ); /* sqlite3_config() does not allow otherwise */
16664 /* boundaries on sqlite3GlobalConfig.mnReq are enforced in sqlite3_config() */
16807 ** install a mutex implementation via sqlite3_config() prior to
16947 ** sqlite3_config(SQLITE_CONFIG_MUTEX,...)
31964 ** This routine is only called by sqlite3_config(), and therefore
31982 sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32());
36016 ** verb to sqlite3_config(). Parameter pBuf points to an allocation large
36044 ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no
36342 ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer
36929 sqlite3_config(SQLITE_CONFIG_PCACHE, &defaultMethods);
110433 SQLITE_API int sqlite3_config(int op, ...){
110437 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while