Lines Matching defs:sqlite3_config

1244 ** can be fully or partially disabled using a call to [sqlite3_config()]
1249 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
1250 ** is unchanged by calls to sqlite3_config().)^
2478 ** a default configuration using [sqlite3_config()].
2503 ** The sqlite3_config() interface is used to make global configuration
2509 ** <b>The sqlite3_config() interface is not threadsafe. The application
2511 ** threads while sqlite3_config() is running.</b>
2513 ** The sqlite3_config() interface
2516 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
2518 ** Note, however, that ^sqlite3_config() can be called as part of the
2521 ** The first argument to sqlite3_config() is an integer
2527 ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
2531 SQLITE_API int sqlite3_config(int, ...);
2539 ** [sqlite3_config()] except that the changes apply to a single
2560 ** [sqlite3_config()] when the configuration option is
2563 ** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC])
2632 ** can be passed as the first argument to the [sqlite3_config()] interface.
2636 ** should check the return code from [sqlite3_config()] to make sure that
2637 ** the call worked. The [sqlite3_config()] interface will return a
2649 ** value of Single-thread and so [sqlite3_config()] will return
2664 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
2680 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
2690 ** before the [sqlite3_config()] call returns.</dd>
2787 ** [sqlite3_config()] returns. ^If SQLite is compiled with
2790 ** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will
2803 ** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will
4190 ** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option.
6847 ** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and
6850 ** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...).
6852 ** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than
7755 ** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
7857 ** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
8465 ** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can
8482 ** internal buffer by SQLite within the call to [sqlite3_config]. Hence
8484 ** [sqlite3_config()] returns.)^
9045 ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
18499 ** changed as start-time using sqlite3_config(SQLITE_CONFIG_LOOKASIDE)
21337 ** sqlite3_config() before SQLite will operate.
21376 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
21670 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
22051 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
22240 ** sqlite3_config().
22877 ** This routine is only called by sqlite3_config(), and therefore
23366 assert( zByte!=0 ); /* sqlite3_config() does not allow otherwise */
23368 /* boundaries on sqlite3GlobalConfig.mnReq are enforced in sqlite3_config() */
23699 ** install a mutex implementation via sqlite3_config() prior to
23860 ** sqlite3_config(SQLITE_CONFIG_MUTEX,...)
40349 ** This routine is only called by sqlite3_config(), and therefore
40367 sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32());
46089 ** runtime using sqlite3_config(SQLITE_CONFIG_PCACHE_HDRSZ, &size). The
46112 ** (2) Global page-cache memory provided using sqlite3_config() with
46120 ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, (void*)0, 0, N).
46297 ** verb to sqlite3_config(). Parameter pBuf points to an allocation large
46364 ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no
46526 ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer
46748 ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, pBuf, sz, N) with non-NULL
47237 sqlite3_config(SQLITE_CONFIG_PCACHE2, &defaultMethods);
116126 ** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set.
143725 SQLITE_API int sqlite3_config(int op, ...){
143729 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
143930 ** sqlite3_config(SQLITE_CONFIG_URI,1) or
143931 ** sqlite3_config(SQLITE_CONFIG_URI,0) configuration calls.