/external/webkit/WebKitLibraries/WebCoreSQLite3/ |
D | sqlite3.h | 118 typedef struct sqlite3 sqlite3; typedef 161 int sqlite3_close(sqlite3 *); 215 sqlite3*, /* An open database */ 323 int sqlite3_extended_result_codes(sqlite3*, int onoff); 345 sqlite_int64 sqlite3_last_insert_rowid(sqlite3*); 378 int sqlite3_changes(sqlite3*); 400 int sqlite3_total_changes(sqlite3*); 419 void sqlite3_interrupt(sqlite3*); 506 int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); 525 int sqlite3_busy_timeout(sqlite3*, int ms); [all …]
|
D | sqlite3ext.h | 44 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); 45 int (*busy_timeout)(sqlite3*,int ms); 46 int (*changes)(sqlite3*); 47 int (*close)(sqlite3*); 48 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const char*)); 49 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const void*)); 71 void * (*commit_hook)(sqlite3*,int(*)(void*),void*); 74 …int (*create_collation)(sqlite3*,const char*,int,void*,int(*)(void*,int,const void*,int,const voi… 75 …int (*create_collation16)(sqlite3*,const char*,int,void*,int(*)(void*,int,const void*,int,const v… 76 …int (*create_function)(sqlite3*,const char*,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqli… [all …]
|
/external/sqlite/dist/ |
D | sqlite3.h | 200 typedef struct sqlite3 sqlite3; typedef 263 SQLITE_API int sqlite3_close(sqlite3 *); 334 sqlite3*, /* An open database */ 972 SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_db_config(sqlite3*, int op, ...); 1306 SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff); 1351 SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*); 1405 SQLITE_API int sqlite3_changes(sqlite3*); 1431 SQLITE_API int sqlite3_total_changes(sqlite3*); 1470 SQLITE_API void sqlite3_interrupt(sqlite3*); 1572 SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); [all …]
|
D | Android.mk | 9 common_src_files := sqlite3.c 91 LOCAL_MODULE := sqlite3 136 LOCAL_MODULE := sqlite3
|
D | sqlite3.c | 724 typedef struct sqlite3 sqlite3; typedef 787 SQLITE_API int sqlite3_close(sqlite3 *); 858 sqlite3*, /* An open database */ 1496 SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_db_config(sqlite3*, int op, ...); 1830 SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff); 1875 SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*); 1929 SQLITE_API int sqlite3_changes(sqlite3*); 1955 SQLITE_API int sqlite3_total_changes(sqlite3*); 1994 SQLITE_API void sqlite3_interrupt(sqlite3*); 2096 SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*); [all …]
|
D | shell.c | 208 static int genfkey_create_triggers(sqlite3 *, const char *, void *, 295 sqlite3 *db; 320 sqlite3 *db, in schemaCreate() 347 pVtab->db = (sqlite3 *)pAux; in schemaCreate() 575 static int installSchemaModule(sqlite3 *db, sqlite3 *sdb){ in installSchemaModule() 733 sqlite3 *db, /* Database connection */ in detectSchemaProblem() 766 static int populateTempTable(sqlite3 *db, GenfkeyCb *pCallback){ in populateTempTable() 878 sqlite3 *sdb, /* Connection to read schema from */ in genfkey_create_triggers() 1005 sqlite3 *db = 0; in genfkey_create_triggers() 1077 static sqlite3 *db = 0; [all …]
|
D | sqlite3.h.orig | 30 ** the version number) and changes its name to "sqlite3.h" as 86 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header 192 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3 198 ** sqlite3 object. 200 typedef struct sqlite3 sqlite3; 242 ** ^The sqlite3_close() routine is the destructor for the [sqlite3] object. 243 ** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is 248 ** the [sqlite3] object prior to attempting to close the object. ^If 257 ** pointer or an [sqlite3] object pointer obtained 263 SQLITE_API int sqlite3_close(sqlite3 *); [all …]
|
D | sqlite3.c.orig | 11 ** 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 523 /************** Include sqlite3.h in the middle of sqliteInt.h ***************/ 524 /************** Begin file sqlite3.h *****************************************/ 554 ** the version number) and changes its name to "sqlite3.h" as 610 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header 716 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3 [all …]
|
/external/webkit/WebCore/platform/sql/ |
D | SQLiteDatabase.h | 37 struct sqlite3; 99 sqlite3* sqlite3Handle() const { in sqlite3Handle() 118 sqlite3* m_db;
|
D | SQLiteFileSystem.h | 37 struct sqlite3; 55 static int openDatabase(const String& fileName, sqlite3** database);
|
D | SQLiteFileSystem.cpp | 49 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database) in openDatabase()
|
D | SQLiteStatement.cpp | 39 static inline int sqlite3_prepare16_v2(sqlite3* db, const void* zSql, int nBytes, sqlite3_stmt** pp… in sqlite3_prepare16_v2()
|
/external/sqlite/android/ |
D | sqlite3_android.h | 26 int register_android_functions(sqlite3 * handle, int uit16Storage); 28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
|
D | sqlite3_android.cpp | 235 sqlite3 * handle; 289 sqlite3 * handle = sqlite3_context_db_handle(context); in tokenize() 426 extern "C" int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Sto… in register_localized_collators() 511 extern "C" int register_android_functions(sqlite3 * handle, int utf16Storage) in register_android_functions()
|
/external/webkit/WebCore/Configurations/ |
D | WebCore.xcconfig | 60 SQLITE3_LIBRARY_1060 = sqlite3; 61 SQLITE3_LIBRARY_1070 = sqlite3;
|
/external/webkit/WebCore/platform/sql/chromium/ |
D | SQLiteFileSystemChromium.cpp | 51 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database) in openDatabase()
|
/external/webkit/WebCore/ |
D | WebCore.pri | 9 # Try to locate sqlite3 source 23 # turn off SQLITE support if we do not have sqlite3 available 24 !CONFIG(QTDIR_build):win32-*:!exists( $${SQLITE3SRCDIR}/sqlite3.c ): DEFINES += ENABLE_SQLITE=0 ENA…
|
D | WebCore.pro | 2153 !system-sqlite:exists( $${SQLITE3SRCDIR}/sqlite3.c ) { 2154 # Build sqlite3 into WebCore from source 2157 SOURCES += $${SQLITE3SRCDIR}/sqlite3.c 2162 # Use sqlite3 from the underlying OS
|
D | ChangeLog-2006-12-31 | 34145 without having access to sqlite3.h. 34158 …(WebCore::SQLDatabase::lastError): Moved from header to eliminate dependency on sqlite3.h in header 34160 * loader/icon/SQLDatabase.h: Removed #include <sqlite3.h> 34161 * loader/icon/SQLStatement.cpp: Added #include <sqlite3.h> 34162 * loader/icon/SQLStatement.h: Removed #include <sqlite3.h> 48993 -Added a skeleton sqlite3 icon database file to IconDatabase 49082 …-Added an explicit UChar* constructor to our string class as much of sqlite3's UTF16 handling is b… 50943 creates an sqlite3 database.
|
D | ChangeLog-2008-08-10 | 54698 version of sqlite3.h rather than the older system version. 57600 Improve the sqlite3 dependency when building WebKit inside Qt. 57602 Build sqlite3 into QtWebKit if a system sqlite3 development package 80961 … (WebCore::SQLStatement::bindParameterCount): Accessor to the sqlite3 API for validating statements
|
D | ChangeLog-2010-01-29 | 42508 [Qt] Correct linking of sqlite3 for Symbian 43407 it will use the sqlite3 system library rather than WebCoreSQLite3. 83877 [Qt] On Symbian link against system sqlite3 83880 Add an option to force linking against system sqlite3
|
D | ChangeLog-2007-10-14 | 8903 (WebCore::SQLDatabase::sqlite3Handle): For access to the raw sqlite3* handle to do a thread
|
/external/webkit/WebKitLibraries/ |
D | ChangeLog | 1207 * WebCoreSQLite3/sqlite3.h: Added.
|