Home
last modified time | relevance | path

Searched refs:sqlite3GlobalConfig (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dmutex.c34 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ in sqlite3MutexInit()
43 if( sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexInit()
59 assert( sqlite3GlobalConfig.mutex.xMutexInit ); in sqlite3MutexInit()
60 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()
75 if( sqlite3GlobalConfig.mutex.xMutexEnd ){ in sqlite3MutexEnd()
76 rc = sqlite3GlobalConfig.mutex.xMutexEnd(); in sqlite3MutexEnd()
94 assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); in sqlite3_mutex_alloc()
99 if( !sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexAlloc()
113 sqlite3GlobalConfig.mutex.xMutexFree(p); in sqlite3_mutex_free()
124 sqlite3GlobalConfig.mutex.xMutexEnter(p); in sqlite3_mutex_enter()
[all …]
H A Dmalloc.c135 if( sqlite3GlobalConfig.pScratch && sqlite3GlobalConfig.szScratch>=100 in sqlite3MallocInit()
142 n = sqlite3GlobalConfig.nScratch; in sqlite3MallocInit()
153 sqlite3GlobalConfig.pScratch = 0; in sqlite3MallocInit()
155 sqlite3GlobalConfig.nScratch = 0; in sqlite3MallocInit()
157 if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 in sqlite3MallocInit()
159 sqlite3GlobalConfig.pPage = 0; in sqlite3MallocInit()
160 sqlite3GlobalConfig.szPage = 0; in sqlite3MallocInit()
162 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
181 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocEnd()
460 sqlite3GlobalConfig.m.xFree(p); in sqlite3_free()
[all …]
H A Dmain.c183 sqlite3GlobalConfig.isMutexInit = 1; in sqlite3_initialize()
190 sqlite3GlobalConfig.pInitMutex = in sqlite3_initialize()
192 if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ in sqlite3_initialize()
223 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ in sqlite3_initialize()
242 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); in sqlite3_initialize()
243 sqlite3GlobalConfig.isInit = 1; in sqlite3_initialize()
256 sqlite3GlobalConfig.nRefInitMutex--; in sqlite3_initialize()
312 if( sqlite3GlobalConfig.isInit ){ in sqlite3_shutdown()
319 sqlite3GlobalConfig.isInit = 0; in sqlite3_shutdown()
530 memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); in sqlite3_config()
[all …]
H A Dpcache.c262 if( sqlite3GlobalConfig.pcache2.xInit==0 ){ in sqlite3PcacheInitialize()
268 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheInitialize()
271 if( sqlite3GlobalConfig.pcache2.xShutdown ){ in sqlite3PcacheShutdown()
273 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheShutdown()
324 pNew = sqlite3GlobalConfig.pcache2.xCreate( in sqlite3PcacheSetPageSize()
331 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheSetPageSize()
674 sqlite3GlobalConfig.pcache2.xTruncate(pCache->pCache, pgno+1); in sqlite3PcacheTruncate()
684 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheClose()
800 return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); in sqlite3PcachePagecount()
818 sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, in sqlite3PcacheSetCachesize()
[all …]
H A Dmem1.c134 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
147 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
204 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
220 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
H A Dmem2.c191 if( !sqlite3GlobalConfig.bMemstat ){ in sqlite3MemInit()
305 assert( sqlite3GlobalConfig.bMemstat || sqlite3GlobalConfig.bCoreMutex==0 in sqlite3MemFree()
382 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){ in sqlite3MemdebugSetType()
401 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){ in sqlite3MemdebugHasType()
423 if( p && sqlite3GlobalConfig.m.xMalloc==sqlite3MemMalloc ){ in sqlite3MemdebugNoType()
/dports/databases/sqlite3/sqlite-src-3350500/src/
H A Dmutex.c221 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ in sqlite3MutexInit()
230 if( sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexInit()
250 assert( sqlite3GlobalConfig.mutex.xMutexInit ); in sqlite3MutexInit()
251 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()
267 if( sqlite3GlobalConfig.mutex.xMutexEnd ){ in sqlite3MutexEnd()
268 rc = sqlite3GlobalConfig.mutex.xMutexEnd(); in sqlite3MutexEnd()
286 assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); in sqlite3_mutex_alloc()
291 if( !sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexAlloc()
305 sqlite3GlobalConfig.mutex.xMutexFree(p); in sqlite3_mutex_free()
316 sqlite3GlobalConfig.mutex.xMutexEnter(p); in sqlite3_mutex_enter()
[all …]
H A Dmain.c227 if( sqlite3GlobalConfig.isInit ){ in sqlite3_initialize()
251 sqlite3GlobalConfig.isMutexInit = 1; in sqlite3_initialize()
258 sqlite3GlobalConfig.pInitMutex = in sqlite3_initialize()
260 if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ in sqlite3_initialize()
291 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ in sqlite3_initialize()
315 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); in sqlite3_initialize()
317 sqlite3GlobalConfig.isInit = 1; in sqlite3_initialize()
386 if( sqlite3GlobalConfig.isInit ){ in sqlite3_shutdown()
393 sqlite3GlobalConfig.isInit = 0; in sqlite3_shutdown()
598 memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); in sqlite3_config()
[all …]
H A Dmalloc.c161 if( sqlite3GlobalConfig.m.xMalloc==0 ){ in sqlite3MallocInit()
166 if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 in sqlite3MallocInit()
167 || sqlite3GlobalConfig.nPage<=0 ){ in sqlite3MallocInit()
168 sqlite3GlobalConfig.pPage = 0; in sqlite3MallocInit()
169 sqlite3GlobalConfig.szPage = 0; in sqlite3MallocInit()
171 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
189 if( sqlite3GlobalConfig.m.xShutdown ){ in sqlite3MallocEnd()
190 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocEnd()
384 if( sqlite3GlobalConfig.bMemstat ){ in sqlite3_free()
388 sqlite3GlobalConfig.m.xFree(p); in sqlite3_free()
[all …]
H A Dpcache.c260 if( sqlite3GlobalConfig.pcache2.xInit==0 ){ in sqlite3PcacheInitialize()
265 assert( sqlite3GlobalConfig.pcache2.xInit!=0 ); in sqlite3PcacheInitialize()
267 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheInitialize()
270 if( sqlite3GlobalConfig.pcache2.xShutdown ){ in sqlite3PcacheShutdown()
272 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheShutdown()
323 pNew = sqlite3GlobalConfig.pcache2.xCreate( in sqlite3PcacheSetPageSize()
330 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheSetPageSize()
678 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheClose()
794 return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); in sqlite3PcachePagecount()
812 sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, in sqlite3PcacheSetCachesize()
[all …]
H A Dmem1.c134 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
147 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
204 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
220 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
H A Dmem2.c191 if( !sqlite3GlobalConfig.bMemstat ){ in sqlite3MemInit()
305 assert( sqlite3GlobalConfig.bMemstat || sqlite3GlobalConfig.bCoreMutex==0 in sqlite3MemFree()
382 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ in sqlite3MemdebugSetType()
401 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ in sqlite3MemdebugHasType()
423 if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ in sqlite3MemdebugNoType()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/src/
H A Dmutex.c221 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ in sqlite3MutexInit()
230 if( sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexInit()
250 assert( sqlite3GlobalConfig.mutex.xMutexInit ); in sqlite3MutexInit()
251 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()
266 if( sqlite3GlobalConfig.mutex.xMutexEnd ){ in sqlite3MutexEnd()
267 rc = sqlite3GlobalConfig.mutex.xMutexEnd(); in sqlite3MutexEnd()
285 assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); in sqlite3_mutex_alloc()
290 if( !sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexAlloc()
304 sqlite3GlobalConfig.mutex.xMutexFree(p); in sqlite3_mutex_free()
315 sqlite3GlobalConfig.mutex.xMutexEnter(p); in sqlite3_mutex_enter()
[all …]
H A Dmain.c185 sqlite3GlobalConfig.isMutexInit = 1; in sqlite3_initialize()
192 sqlite3GlobalConfig.pInitMutex = in sqlite3_initialize()
194 if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ in sqlite3_initialize()
225 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ in sqlite3_initialize()
249 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); in sqlite3_initialize()
250 sqlite3GlobalConfig.isInit = 1; in sqlite3_initialize()
263 sqlite3GlobalConfig.nRefInitMutex--; in sqlite3_initialize()
319 if( sqlite3GlobalConfig.isInit ){ in sqlite3_shutdown()
326 sqlite3GlobalConfig.isInit = 0; in sqlite3_shutdown()
531 memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); in sqlite3_config()
[all …]
H A Dmalloc.c161 if( sqlite3GlobalConfig.m.xMalloc==0 ){ in sqlite3MallocInit()
166 if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 in sqlite3MallocInit()
167 || sqlite3GlobalConfig.nPage<=0 ){ in sqlite3MallocInit()
168 sqlite3GlobalConfig.pPage = 0; in sqlite3MallocInit()
169 sqlite3GlobalConfig.szPage = 0; in sqlite3MallocInit()
171 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
189 if( sqlite3GlobalConfig.m.xShutdown ){ in sqlite3MallocEnd()
190 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocEnd()
384 if( sqlite3GlobalConfig.bMemstat ){ in sqlite3_free()
388 sqlite3GlobalConfig.m.xFree(p); in sqlite3_free()
[all …]
H A Dpcache.c260 if( sqlite3GlobalConfig.pcache2.xInit==0 ){ in sqlite3PcacheInitialize()
265 assert( sqlite3GlobalConfig.pcache2.xInit!=0 ); in sqlite3PcacheInitialize()
267 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheInitialize()
270 if( sqlite3GlobalConfig.pcache2.xShutdown ){ in sqlite3PcacheShutdown()
272 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheShutdown()
323 pNew = sqlite3GlobalConfig.pcache2.xCreate( in sqlite3PcacheSetPageSize()
330 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheSetPageSize()
678 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheClose()
794 return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); in sqlite3PcachePagecount()
812 sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, in sqlite3PcacheSetCachesize()
[all …]
H A Dmem1.c134 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
147 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
204 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
220 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/src/
H A Dmutex.c221 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ in sqlite3MutexInit()
230 if( sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexInit()
250 assert( sqlite3GlobalConfig.mutex.xMutexInit ); in sqlite3MutexInit()
251 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()
267 if( sqlite3GlobalConfig.mutex.xMutexEnd ){ in sqlite3MutexEnd()
268 rc = sqlite3GlobalConfig.mutex.xMutexEnd(); in sqlite3MutexEnd()
286 assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); in sqlite3_mutex_alloc()
291 if( !sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexAlloc()
305 sqlite3GlobalConfig.mutex.xMutexFree(p); in sqlite3_mutex_free()
316 sqlite3GlobalConfig.mutex.xMutexEnter(p); in sqlite3_mutex_enter()
[all …]
H A Dmain.c227 if( sqlite3GlobalConfig.isInit ){ in sqlite3_initialize()
251 sqlite3GlobalConfig.isMutexInit = 1; in sqlite3_initialize()
258 sqlite3GlobalConfig.pInitMutex = in sqlite3_initialize()
260 if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ in sqlite3_initialize()
291 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ in sqlite3_initialize()
315 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); in sqlite3_initialize()
317 sqlite3GlobalConfig.isInit = 1; in sqlite3_initialize()
386 if( sqlite3GlobalConfig.isInit ){ in sqlite3_shutdown()
393 sqlite3GlobalConfig.isInit = 0; in sqlite3_shutdown()
598 memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); in sqlite3_config()
[all …]
H A Dmalloc.c161 if( sqlite3GlobalConfig.m.xMalloc==0 ){ in sqlite3MallocInit()
166 if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 in sqlite3MallocInit()
167 || sqlite3GlobalConfig.nPage<=0 ){ in sqlite3MallocInit()
168 sqlite3GlobalConfig.pPage = 0; in sqlite3MallocInit()
169 sqlite3GlobalConfig.szPage = 0; in sqlite3MallocInit()
171 rc = sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
189 if( sqlite3GlobalConfig.m.xShutdown ){ in sqlite3MallocEnd()
190 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocEnd()
384 if( sqlite3GlobalConfig.bMemstat ){ in sqlite3_free()
388 sqlite3GlobalConfig.m.xFree(p); in sqlite3_free()
[all …]
H A Dpcache.c260 if( sqlite3GlobalConfig.pcache2.xInit==0 ){ in sqlite3PcacheInitialize()
265 assert( sqlite3GlobalConfig.pcache2.xInit!=0 ); in sqlite3PcacheInitialize()
267 return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheInitialize()
270 if( sqlite3GlobalConfig.pcache2.xShutdown ){ in sqlite3PcacheShutdown()
272 sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); in sqlite3PcacheShutdown()
323 pNew = sqlite3GlobalConfig.pcache2.xCreate( in sqlite3PcacheSetPageSize()
330 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheSetPageSize()
678 sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); in sqlite3PcacheClose()
794 return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); in sqlite3PcachePagecount()
812 sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, in sqlite3PcacheSetCachesize()
[all …]
H A Dmem1.c134 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
147 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemMalloc()
204 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
220 testcase( sqlite3GlobalConfig.xLog!=0 ); in sqlite3MemRealloc()
/dports/databases/db5/db-5.3.28/lang/sql/sqlite/src/
H A Dmutex.c34 if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ in sqlite3MutexInit()
43 if( sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexInit()
53 rc = sqlite3GlobalConfig.mutex.xMutexInit(); in sqlite3MutexInit()
68 if( sqlite3GlobalConfig.mutex.xMutexEnd ){ in sqlite3MutexEnd()
69 rc = sqlite3GlobalConfig.mutex.xMutexEnd(); in sqlite3MutexEnd()
86 return sqlite3GlobalConfig.mutex.xMutexAlloc(id); in sqlite3_mutex_alloc()
90 if( !sqlite3GlobalConfig.bCoreMutex ){ in sqlite3MutexAlloc()
102 sqlite3GlobalConfig.mutex.xMutexFree(p); in sqlite3_mutex_free()
112 sqlite3GlobalConfig.mutex.xMutexEnter(p); in sqlite3_mutex_enter()
123 return sqlite3GlobalConfig.mutex.xMutexTry(p); in sqlite3_mutex_try()
[all …]
H A Dmalloc.c164 if( sqlite3GlobalConfig.pScratch && sqlite3GlobalConfig.szScratch>=100 in sqlite3MallocInit()
171 n = sqlite3GlobalConfig.nScratch; in sqlite3MallocInit()
182 sqlite3GlobalConfig.pScratch = 0; in sqlite3MallocInit()
186 if( sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.szPage<512 in sqlite3MallocInit()
188 sqlite3GlobalConfig.pPage = 0; in sqlite3MallocInit()
189 sqlite3GlobalConfig.szPage = 0; in sqlite3MallocInit()
190 sqlite3GlobalConfig.nPage = 0; in sqlite3MallocInit()
192 return sqlite3GlobalConfig.m.xInit(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocInit()
209 sqlite3GlobalConfig.m.xShutdown(sqlite3GlobalConfig.m.pAppData); in sqlite3MallocEnd()
473 sqlite3GlobalConfig.m.xFree(p); in sqlite3_free()
[all …]
H A Dmain.c147 sqlite3GlobalConfig.isMutexInit = 1; in sqlite3_initialize()
154 sqlite3GlobalConfig.pInitMutex = in sqlite3_initialize()
156 if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ in sqlite3_initialize()
187 if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ in sqlite3_initialize()
189 sqlite3GlobalConfig.inProgress = 1; in sqlite3_initialize()
201 sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); in sqlite3_initialize()
202 sqlite3GlobalConfig.isInit = 1; in sqlite3_initialize()
212 sqlite3GlobalConfig.nRefInitMutex--; in sqlite3_initialize()
251 if( sqlite3GlobalConfig.isInit ){ in sqlite3_shutdown()
254 sqlite3GlobalConfig.isInit = 0; in sqlite3_shutdown()
[all …]

12345678910>>...12