Lines Matching refs:sqlite3_initialize
1878 ** ^The sqlite3_initialize() routine initializes the
1880 ** deallocates any resources that were allocated by sqlite3_initialize().
1885 ** A call to sqlite3_initialize() is an "effective" call if it is
1886 ** the first time sqlite3_initialize() is invoked during the lifetime of
1887 ** the process, or if it is the first time sqlite3_initialize() is invoked
1889 ** of sqlite3_initialize() does any initialization. All other calls
1893 ** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only
1897 ** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown()
1903 ** Among other things, ^sqlite3_initialize() will invoke
1907 ** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success.
1908 ** ^If for some reason, sqlite3_initialize() is unable to initialize
1912 ** ^The sqlite3_initialize() routine is called internally by many other
1914 ** invoke sqlite3_initialize() directly. For example, [sqlite3_open()]
1915 ** calls sqlite3_initialize() so the SQLite library will be automatically
1918 ** compile-time option, then the automatic calls to sqlite3_initialize()
1919 ** are omitted and the application must call sqlite3_initialize() directly
1921 ** it is recommended that applications always invoke sqlite3_initialize()
1937 ** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init()
1938 ** interface is called automatically by sqlite3_initialize() and
1950 SQLITE_API int sqlite3_initialize(void);
1970 ** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()].
1971 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
3014 ** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior
3015 ** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked
8084 ** before calling sqlite3_initialize() or any other public sqlite3_
8085 ** function that calls sqlite3_initialize().
8191 ** part of system initialization by the sqlite3_initialize() function.
8193 ** effective call to [sqlite3_initialize()].
9041 ** call to [sqlite3_initialize()])^
19505 sqlite3_mutex *pInitMutex; /* Mutex used by sqlite3_initialize() */
25231 int rc = sqlite3_initialize();
25274 int rc = sqlite3_initialize();
25302 int rc = sqlite3_initialize();
26307 ** before calling sqlite3_initialize() from which allocations
26309 ** implementations. Once sqlite3_initialize() has been called,
26997 ** before calling sqlite3_initialize() from which allocations
26999 ** implementations. Once sqlite3_initialize() has been called,
27792 ** sqlite3_initialize() being called. This block copies pointers to
27851 if( id<=SQLITE_MUTEX_RECURSIVE && sqlite3_initialize() ) return 0;
28758 ** of the sqlite3_initialize() and sqlite3_shutdown() processing, the
29141 int rc = sqlite3_initialize();
29181 int rc = sqlite3_initialize();
29361 if( sqlite3_initialize() ) return 0;
29367 if( sqlite3_initialize() ) return 0;
29607 if( sqlite3_initialize() ) return 0;
29614 if( sqlite3_initialize() ) return 0;
31194 if( sqlite3_initialize() ) return 0;
31210 if( sqlite3_initialize() ) return 0;
32704 if( sqlite3_initialize() ) return;
46900 if( sqlite3_initialize() ) return 0;
46916 if( sqlite3_initialize() ) return 0;
46932 if( sqlite3_initialize() ) return 0;
46948 if( sqlite3_initialize() ) return 0;
46964 if( sqlite3_initialize() ) return 0;
46980 if( sqlite3_initialize() ) return 0;
46996 rc = sqlite3_initialize();
53755 ** fixed at sqlite3_initialize() time and do not require mutex protection.
53806 ** This routine is called from sqlite3_initialize() and so it is guaranteed
54724 ** This function is called during initialization (sqlite3_initialize()) to
126940 ** a consequence of calling sqlite3_initialize()).
133402 rc = sqlite3_initialize();
133471 if( sqlite3_initialize()==SQLITE_OK )
173295 rc = sqlite3_initialize();
173607 SQLITE_API int sqlite3_initialize(void){
173627 ** to sqlite3_initialize() should be a no-op. But the initialization
173683 ** sqlite3_initialize(). The recursive calls normally come through
173775 ** Undo the effects of sqlite3_initialize(). Must not be called while
174000 ** revert to its default implementation when sqlite3_initialize() is run
176645 rc = sqlite3_initialize();
177023 rc = sqlite3_initialize();
246337 sqlite3_initialize,