Searched defs:sqlite3 (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/components/test/data/autofill/merge/tools/
H A Dserialize_profiles.py7 import sqlite3 namespace
27 connection = sqlite3.connect(database, 0)
30 except sqlite3.OperationalError:
47 except sqlite3.OperationalError:
60 except sqlite3.OperationalError:
72 except sqlite3.OperationalError:
/external/chromium_org/third_party/sqlite/src/test/
H A Dlock_common.tcl41 code2 { sqlite3 db2 test.db }
42 code3 { sqlite3 db3 test.db }
145 if {[sqlite3 -has-codec] && [info exists ::do_not_use_codec]==0} {
147 rename sqlite3 sqlite_orig
148 proc sqlite3 {args} {[info body sqlite3]} procedure
H A Dtester.tcl86 # If the pager codec is available, create a wrapper for the [sqlite3]
89 # sqlite3 db test.db
93 # sqlite3 db test.db -key {xyzzy}
96 rename sqlite3 sqlite_orig
97 proc sqlite3 {args} { procedure
252 sqlite3 db ./test.db
490 sqlite3 versdb :memory:
500 sqlite3 versdb :memory:
528 sqlite3 db {}
836 puts $f "sqlite3 d
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
H A Devent_analyzing_sample.py21 import sqlite3 namespace
35 con = sqlite3.connect("/dev/shm/perf.db")
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dandroid_profiling_helper.py21 import sqlite3 namespace
23 sqlite3 = None variable
137 conn = sqlite3.connect(db_file)
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h30 ** the version number) and changes its name to "sqlite3.h" as
86 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
219 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
225 ** sqlite3 object.
227 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
269 ** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
270 ** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
275 ** the [sqlite3] objec
[all...]
H A Dsqlite3.c11 ** programs, you need this file and the "sqlite3.h" header file that defines
13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within
14 ** the text of this file. Search for "Begin file sqlite3.h" to find the start
15 ** of the embedded sqlite3.h header file.) Additional code files may be needed
17 ** language. The code for the "sqlite3" command-line shell is also in a
542 /************** Include sqlite3.h in the middle of sqliteInt.h ***************/
543 /************** Begin file sqlite3.h *****************************************/
573 ** the version number) and changes its name to "sqlite3.h" as
629 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
762 ** the opaque structure named "sqlite3"
770 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
9145 struct sqlite3 { struct
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h30 ** the version number) and changes its name to "sqlite3.h" as
86 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
219 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
226 ** sqlite3 object.
228 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
271 ** for the [sqlite3] object.
273 ** the [sqlite3] object is successfully destroyed and all associated
290 ** with the [sqlite3] objec
[all...]
H A Dsqlite3.c11 ** programs, you need this file and the "sqlite3.h" header file that defines
13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within
14 ** the text of this file. Search for "Begin file sqlite3.h" to find the start
15 ** of the embedded sqlite3.h header file.) Additional code files may be needed
17 ** language. The code for the "sqlite3" command-line shell is also in a
114 /************** Include sqlite3.h in the middle of sqliteInt.h ***************/
115 /************** Begin file sqlite3.h *****************************************/
145 ** the version number) and changes its name to "sqlite3.h" as
201 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
334 ** the opaque structure named "sqlite3"
343 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
10434 struct sqlite3 { struct
[all...]
/external/sqlite/dist/
H A Dsqlite3.h30 ** the version number) and changes its name to "sqlite3.h" as
86 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
219 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
226 ** sqlite3 object.
228 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
271 ** for the [sqlite3] object.
273 ** the [sqlite3] object is successfully destroyed and all associated
290 ** with the [sqlite3] objec
[all...]
H A Dsqlite3.c11 ** programs, you need this file and the "sqlite3.h" header file that defines
13 ** the "sqlite3.h" header file at hand, you will find a copy embedded within
14 ** the text of this file. Search for "Begin file sqlite3.h" to find the start
15 ** of the embedded sqlite3.h header file.) Additional code files may be needed
17 ** language. The code for the "sqlite3" command-line shell is also in a
114 /************** Include sqlite3.h in the middle of sqliteInt.h ***************/
115 /************** Begin file sqlite3.h *****************************************/
145 ** the version number) and changes its name to "sqlite3.h" as
201 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
334 ** the opaque structure named "sqlite3"
343 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
10434 struct sqlite3 { struct
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A DsqliteInt.h302 #include "sqlite3.h"
673 ** the Schema for the TEMP databaes (sqlite3.aDb[1]) which is free-standing.
683 ** holding a mutex on the sqlite3 connection pointer that owns the Btree.
800 struct sqlite3 { struct
846 int (*xWalCallback)(void *, sqlite3 *, const char *, int);
849 void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*);
850 void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*);
891 ** mutex, not by sqlite3.mutex. They are used by code in notify.c.
900 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */
901 sqlite3 *pUnlockConnectio
[all...]

Completed in 1301 milliseconds