Lines Matching refs:sqlite3_config

556 ** can be fully or partially disabled using a call to [sqlite3_config()]
561 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
562 ** is unchanged by calls to sqlite3_config().)^
1933 ** a default configuration using [sqlite3_config()].
1958 ** The sqlite3_config() interface is used to make global configuration
1964 ** <b>The sqlite3_config() interface is not threadsafe. The application
1966 ** threads while sqlite3_config() is running.</b>
1968 ** The sqlite3_config() interface
1971 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1973 ** Note, however, that ^sqlite3_config() can be called as part of the
1976 ** The first argument to sqlite3_config() is an integer
1982 ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
1986 SQLITE_API int sqlite3_config(int, ...);
1994 ** [sqlite3_config()] except that the changes apply to a single
2015 ** [sqlite3_config()] when the configuration option is
2018 ** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC])
2087 ** can be passed as the first argument to the [sqlite3_config()] interface.
2091 ** should check the return code from [sqlite3_config()] to make sure that
2092 ** the call worked. The [sqlite3_config()] interface will return a
2104 ** value of Single-thread and so [sqlite3_config()] will return
2119 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
2135 ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
2145 ** before the [sqlite3_config()] call returns.</dd>
2243 ** [sqlite3_config()] returns. ^If SQLite is compiled with
2246 ** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will
2259 ** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will
3836 ** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option.
7116 ** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and
7119 ** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...).
7121 ** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than
8083 ** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
8185 ** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
9018 ** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can
9035 ** internal buffer by SQLite within the call to [sqlite3_config]. Hence
9037 ** [sqlite3_config()] returns.)^
9598 ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()].
22201 ** changed as start-time using sqlite3_config(SQLITE_CONFIG_LOOKASIDE)
25420 ** sqlite3_config() before SQLite will operate.
25459 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
25753 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
26134 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
26323 ** sqlite3_config().
26960 ** This routine is only called by sqlite3_config(), and therefore
27458 assert( zByte!=0 ); /* sqlite3_config() does not allow otherwise */
27460 /* boundaries on sqlite3GlobalConfig.mnReq are enforced in sqlite3_config() */
27791 ** install a mutex implementation via sqlite3_config() prior to
27952 ** sqlite3_config(SQLITE_CONFIG_MUTEX,...)
46722 ** This routine is only called by sqlite3_config(), and therefore
46740 sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32());
53571 ** runtime using sqlite3_config(SQLITE_CONFIG_PCACHE_HDRSZ, &size). The
53595 ** (2) Global page-cache memory provided using sqlite3_config() with
53603 ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, (void*)0, 0, N).
53803 ** verb to sqlite3_config(). Parameter pBuf points to an allocation large
53871 ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no
54022 ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer
54246 ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, pBuf, sz, N) with non-NULL
54744 sqlite3_config(SQLITE_CONFIG_PCACHE2, &defaultMethods);
135153 ** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set.
173836 SQLITE_API int sqlite3_config(int op, ...){
173840 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
174041 ** sqlite3_config(SQLITE_CONFIG_URI,1) or
174042 ** sqlite3_config(SQLITE_CONFIG_URI,0) configuration calls.
246338 sqlite3_config,