Searched refs:sqlite3_config (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmem0.c17 ** sqlite3_config() before SQLite will operate.
56 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
H A Dtest_init.c174 sqlite3_config(SQLITE_CONFIG_GETMUTEX, &wrapped.mutex);
175 sqlite3_config(SQLITE_CONFIG_GETMALLOC, &wrapped.mem);
176 sqlite3_config(SQLITE_CONFIG_GETPCACHE, &wrapped.pcache);
177 sqlite3_config(SQLITE_CONFIG_MUTEX, &mutexmethods);
178 sqlite3_config(SQLITE_CONFIG_MALLOC, &memmethods);
179 sqlite3_config(SQLITE_CONFIG_PCACHE, &pcachemethods);
219 sqlite3_config(SQLITE_CONFIG_MUTEX, &wrapped.mutex);
220 sqlite3_config(SQLITE_CONFIG_MALLOC, &wrapped.mem);
221 sqlite3_config(SQLITE_CONFIG_PCACHE, &wrapped.pcache);
H A Dmem1.c147 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
H A Dtest_malloc.c181 ** Add or remove the fault-simulation layer using sqlite3_config(). If
205 rc = sqlite3_config(SQLITE_CONFIG_GETMALLOC, &memfault.m);
208 rc = sqlite3_config(SQLITE_CONFIG_MALLOC, &m);
220 sqlite3_config(SQLITE_CONFIG_MALLOC, &m);
221 sqlite3_config(SQLITE_CONFIG_GETMALLOC, &m);
224 rc = sqlite3_config(SQLITE_CONFIG_MALLOC, &memfault.m);
906 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, 0, 0, 0);
909 rc = sqlite3_config(SQLITE_CONFIG_SCRATCH, buf, sz, N);
946 rc = sqlite3_config(SQLITE_CONFIG_PAGECACHE, 0, 0, 0);
949 rc = sqlite3_config(SQLITE_CONFIG_PAGECACH
[all...]
H A Dtest_mutex.c218 rc = sqlite3_config(SQLITE_CONFIG_GETMUTEX, &g.m);
220 sqlite3_config(SQLITE_CONFIG_MUTEX, &counter_methods);
225 rc = sqlite3_config(SQLITE_CONFIG_MUTEX, &g.m);
314 ** sqlite3_config OPTION
356 rc = sqlite3_config(i);
419 { "sqlite3_config", (Tcl_ObjCmdProc*)test_config },
H A Dtest_pcache.c449 sqlite3_config(SQLITE_CONFIG_GETPCACHE, &defaultPcache);
451 sqlite3_config(SQLITE_CONFIG_PCACHE, &testPcache);
454 sqlite3_config(SQLITE_CONFIG_PCACHE, &defaultPcache);
H A Dshell.c2652 sqlite3_config(SQLITE_CONFIG_LOG, shellLog, data);
2655 sqlite3_config(SQLITE_CONFIG_SINGLETHREAD);
2720 sqlite3_config(SQLITE_CONFIG_HEAP, malloc((int)szHeap), (int)szHeap, 64);
H A Dmem2.c375 sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods);
H A Dpcache1.c173 ** verb to sqlite3_config(). Parameter pBuf points to an allocation large
201 ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no
323 ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer
916 sqlite3_config(SQLITE_CONFIG_PCACHE, &defaultMethods);
H A Dsqlite.h.in197 ** can be fully or partially disabled using a call to [sqlite3_config()]
202 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
203 ** is unchanged by calls to sqlite3_config().)^
1070 ** a default configuration using [sqlite3_config()].
1095 ** The sqlite3_config() interface is used to make global configuration
1101 ** The sqlite3_config() interface is not threadsafe. The application
1103 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1106 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1108 ** Note, however, that ^sqlite3_config() ca
[all...]
H A Dmain.c279 int sqlite3_config(int op, ...){ function
283 /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while
H A Dtest1.c5325 sqlite3_config(SQLITE_CONFIG_LOG, 0, 0);
5331 sqlite3_config(SQLITE_CONFIG_LOG, xLogcallback, 0);
H A Dtclsqlite.c3647 sqlite3_config(SQLITE_CONFIG_SINGLETHREAD);
/external/sqlite/dist/orig/
H A Dshell.c3811 sqlite3_config(SQLITE_CONFIG_URI, 1);
3812 sqlite3_config(SQLITE_CONFIG_LOG, shellLog, data);
3815 sqlite3_config(SQLITE_CONFIG_SINGLETHREAD);
3922 sqlite3_config(SQLITE_CONFIG_HEAP, malloc((int)szHeap), (int)szHeap, 64);
3942 sqlite3_config(SQLITE_CONFIG_MMAP_SIZE, sz, sz);
H A Dsqlite3.h202 ** can be fully or partially disabled using a call to [sqlite3_config()]
207 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
208 ** is unchanged by calls to sqlite3_config().)^
1303 ** a default configuration using [sqlite3_config()].
1328 ** The sqlite3_config() interface is used to make global configuration
1334 ** The sqlite3_config() interface is not threadsafe. The application
1336 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1339 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1341 ** Note, however, that ^sqlite3_config() ca
[all...]
H A Dsqlite3.c317 ** can be fully or partially disabled using a call to [sqlite3_config()]
322 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
323 ** is unchanged by calls to sqlite3_config().)^
1418 ** a default configuration using [sqlite3_config()].
1443 ** The sqlite3_config() interface is used to make global configuration
1449 ** The sqlite3_config() interface is not threadsafe. The application
1451 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1454 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1456 ** Note, however, that ^sqlite3_config() ca
122482 SQLITE_API int sqlite3_config(int op, ...){ function
[all...]
/external/sqlite/dist/
H A Dshell.c3831 sqlite3_config(SQLITE_CONFIG_URI, 1);
3832 sqlite3_config(SQLITE_CONFIG_LOG, shellLog, data);
3835 sqlite3_config(SQLITE_CONFIG_SINGLETHREAD);
3942 sqlite3_config(SQLITE_CONFIG_HEAP, malloc((int)szHeap), (int)szHeap, 64);
3962 sqlite3_config(SQLITE_CONFIG_MMAP_SIZE, sz, sz);
H A Dsqlite3.h202 ** can be fully or partially disabled using a call to [sqlite3_config()]
207 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
208 ** is unchanged by calls to sqlite3_config().)^
1303 ** a default configuration using [sqlite3_config()].
1328 ** The sqlite3_config() interface is used to make global configuration
1334 ** The sqlite3_config() interface is not threadsafe. The application
1336 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1339 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1341 ** Note, however, that ^sqlite3_config() ca
[all...]
H A Dsqlite3.c317 ** can be fully or partially disabled using a call to [sqlite3_config()]
322 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
323 ** is unchanged by calls to sqlite3_config().)^
1418 ** a default configuration using [sqlite3_config()].
1443 ** The sqlite3_config() interface is used to make global configuration
1449 ** The sqlite3_config() interface is not threadsafe. The application
1451 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1454 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1456 ** Note, however, that ^sqlite3_config() ca
122502 SQLITE_API int sqlite3_config(int op, ...){ function
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h202 ** can be fully or partially disabled using a call to [sqlite3_config()]
207 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
208 ** is unchanged by calls to sqlite3_config().)^
1075 ** a default configuration using [sqlite3_config()].
1100 ** The sqlite3_config() interface is used to make global configuration
1106 ** The sqlite3_config() interface is not threadsafe. The application
1108 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1111 ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
1113 ** Note, however, that ^sqlite3_config() ca
[all...]
H A Dsqlite3.c379 ** be overridden at runtime using the sqlite3_config() API.
745 ** can be fully or partially disabled using a call to [sqlite3_config()]
750 ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
751 ** is unchanged by calls to sqlite3_config().)^
1618 ** a default configuration using [sqlite3_config()].
1643 ** The sqlite3_config() interface is used to make global configuration
1649 ** The sqlite3_config() interface is not threadsafe. The application
1651 ** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
1654 ** ^If sqlite3_config() i
107524 SQLITE_API int sqlite3_config(int op, ...){ function
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest3.c1435 sqlite3_config(SQLITE_CONFIG_MULTITHREAD);

Completed in 445 milliseconds