HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3 (Results 1 - 25 of 46) sorted by null

1 2

  /external/sqlite/android/
sqlite3_android.h 20 #include <sqlite3.h>
26 int register_android_functions(sqlite3 * handle, int uit16Storage);
28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
  /frameworks/base/core/jni/
sqlite3_exception.h 25 #include <sqlite3.h>
30 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle);
38 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message);
android_database_SQLiteStatement.cpp 27 #include <sqlite3.h>
46 sqlite3 * handle, jstring sqlString);
55 (sqlite3 *)env->GetIntField(object, gHandleField)
61 sqlite3 * handle = GET_HANDLE(env, object);
85 sqlite3 * handle = GET_HANDLE(env, object);
97 sqlite3 * handle = GET_HANDLE(env, object);
121 sqlite3 * handle = GET_HANDLE(env, object);
215 sqlite3 * handle = GET_HANDLE(env, object);
245 sqlite3 * handle = GET_HANDLE(env, object);
android_database_SQLiteCompiledSql.cpp 24 #include <sqlite3.h>
44 (sqlite3 *)env->GetIntField(object, gHandleField)
48 sqlite3 * handle, jstring sqlString)
android_database_SQLiteDatabase.cpp 28 #include <sqlite3.h>
85 // register the logging func on sqlite. needs to be done BEFORE any sqlite3 func is called.
105 sqlite3 * handle = NULL;
110 // register the logging func on sqlite. needs to be done BEFORE any sqlite3 func is called.
184 static char *getDatabaseName(JNIEnv* env, sqlite3 * handle, jstring databaseName, short connNum) {
206 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle);
218 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle);
226 sqlite3 * handle = (sqlite3 *)env->GetIntField(object, offset_db_handle)
    [all...]
android_database_SQLiteQuery.cpp 24 #include <sqlite3.h>
40 sqlite3* database = reinterpret_cast<sqlite3*>(databasePtr);
  /external/webkit/Source/WebCore/platform/sql/
SQLiteAuthorizer.cpp 33 #include <sqlite3.h>
SQLiteFileSystem.h 37 struct sqlite3;
58 static int openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDatabase);
SQLiteDatabase.h 37 struct sqlite3;
105 sqlite3* sqlite3Handle() const {
142 sqlite3* m_db;
SQLiteFileSystem.cpp 41 #include <sqlite3.h>
53 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool)
  /external/webkit/WebKitLibraries/WebCoreSQLite3/
sqlite3ext.h 16 ** sqlite3.h.
22 #include "sqlite3.h"
50 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
51 int (*busy_timeout)(sqlite3*,int ms);
52 int (*changes)(sqlite3*);
53 int (*close)(sqlite3*);
54 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const char*));
55 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,int eTextRep,const void*))
    [all...]
sqlite3.h 30 ** the version number) and changes its name to "sqlite3.h" as
84 ** the sqlite3.h file specify the version of SQLite with which
89 ** The X value is major version number always 3 in SQLite3.
166 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
172 ** sqlite3 object.
174 typedef struct sqlite3 sqlite3; typedef in typeref:struct:sqlite3
213 ** This routine is the destructor for the [sqlite3] object.
217 ** the [sqlite3] object prior to attempting to close the object
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings.h 15 extern "C" struct sqlite3;
21 void ExecOrDie(sqlite3* dbhandle, const char *query);
81 inline sqlite3* get() const { return *handle_; }
83 sqlite3** const handle_;
89 void MigrateOldVersionsAsNeeded(sqlite3* const handle, int current_version);
96 sqlite3* dbhandle_;
  /external/sqlite/dist/
sqlite3.h 30 ** the version number) and changes its name to "sqlite3.h" as
86 ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
89 ** SQLite3) and Y is the minor version number and Z is the release number.)^
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 i
    [all...]
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
89 ** SQLite3) and Y is the minor version number and Z is the release number.)^
219 ** the opaque structure named "sqlite3". It is useful to think of an sqlite3
225 ** sqlite3 object.
227 typedef struct sqlite3 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 i
    [all...]
Android.mk 15 common_src_files := sqlite3.c
65 ## Build the device command line tool sqlite3
68 ifneq ($(SDK_ONLY),true) # SDK doesn't need device version of sqlite3
91 LOCAL_MODULE := sqlite3
100 ## Build the host command line tool sqlite3
120 LOCAL_MODULE := sqlite3
  /external/chromium/chrome/common/
sqlite_utils.h 16 #include "third_party/sqlite/sqlite3.h"
36 virtual int HandleError(int error, sqlite3* db) = 0;
58 explicit SQLTransaction(sqlite3* db);
97 sqlite3* db_;
121 // Returns the sqlite3 database connection associated with this site
123 sqlite3* GetSqlite3DB() { return db_; }
135 sqlite3* db_;
207 // Sqlite3's sqlite3_finalize() function should not be called directly
227 // A scoped sqlite statement with convenient C++ wrappers for sqlite3 APIs.
233 int prepare(sqlite3* db, const char* sql)
    [all...]
sqlite_utils.cc 32 virtual int HandleError(int error, sqlite3* db) {
42 virtual int HandleError(int error, sqlite3* db) {
90 int OpenSqliteDb(const FilePath& filepath, sqlite3** database) {
100 bool DoesSqliteTableExist(sqlite3* db,
123 bool DoesSqliteColumnExist(sqlite3* db,
153 bool DoesSqliteTableHaveRow(sqlite3* db, const char* table_name) {
167 SQLTransaction::SQLTransaction(sqlite3* db) : db_(db), began_(false) {
281 int SQLStatement::prepare(sqlite3* db, const char* sql, int sql_len) {
316 sqlite3* SQLStatement::db_handle() {
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.h 18 struct sqlite3;
33 // Provides sqlite3-based persistence for a syncable::Directory object. You can
40 // then you can stop reading now. This is implemented using sqlite3, which
41 // requires that each thread accesses a DB via a handle (sqlite3*) opened by
52 // SaveChanges is called a new sqlite3 handle is created, and it will get closed
124 // Creates a new sqlite3 handle to the backing database. Sets sqlite operation
125 // timeout preferences and registers our overridden sqlite3 operators for
128 bool OpenAndConfigureHandleHelper(sqlite3** handle) const;
143 sqlite3* LazyGetSaveHandle();
158 bool CheckIntegrity(sqlite3* handle, std::string* error) const
    [all...]
  /external/webkit/Source/WebCore/platform/sql/chromium/
SQLiteFileSystemChromium.cpp 36 #include <sqlite3.h>
47 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDatabase)
SQLiteFileSystemChromiumWin.cpp 35 #include <sqlite3.h>
  /packages/apps/Launcher2/
fill_screens.py 7 import sqlite3 namespace
54 conn = sqlite3.connect(fn)
  /sdk/build/
tools.windows.atree 77 rm tools/sqlite3
78 bin/sqlite3.exe strip tools/sqlite3.exe
  /external/chromium/app/sql/
connection.h 18 struct sqlite3;
83 // |error| is an sqlite result code as seen in sqlite\preprocessed\sqlite3.h
350 sqlite3* db_;
  /external/javasqlite/src/main/native/
sqlite_jni.c 13 #include "sqlite3.h"
54 int is3; /* True for SQLITE3 handle */
75 struct hbl *blobs; /* SQLite3 blob handles */
78 struct hbk *backups; /* SQLite3 backup handles */
87 int is3; /* True for SQLITE3 handle */
103 int is3; /* True for SQLITE3 handle */
107 int tail_len; /* only for SQLite3/prepare */
118 sqlite3_blob *blob; /* SQLite3 blob */
128 sqlite3_backup *bkup; /* SQLite3 backup handle */
815 sqlite3_close((sqlite3 *) h->sqlite)
    [all...]

Completed in 196 milliseconds

1 2