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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/tools/help/
sqlite3.jd 1 page.title=sqlite3
7 "http://www.sqlite.org/sqlite.html">sqlite3</a> command-line program to manage SQLite databases
8 created by Android applications. The <code>sqlite3</code> tool includes many useful commands,
13 <p>To use <code>sqlite3</code> from a remote shell:</p>
20 <li>From a remote shell, start the <code>sqlite3</code> tool by entering the following command:
21 <pre>sqlite3</pre>
24 Emulator/device instances store SQLite3 databases in the directory
28 <li>Once you invoke <code>sqlite3</code>, you can issue <code>sqlite3</code> commands in the
36 # sqlite3 /data/data/com.example.google.rss.rssexample/databases/rssitems.d
    [all...]
  /external/sqlite/dist/orig/
sqlite3ext.h 16 ** sqlite3.h.
20 #include "sqlite3.h"
48 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
49 int (*busy_timeout)(sqlite3*,int ms);
50 int (*changes)(sqlite3*);
51 int (*close)(sqlite3*);
52 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,
54 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,
    [all...]
  /external/sqlite/dist/
sqlite3ext.h 16 ** sqlite3.h.
20 #include "sqlite3.h"
48 int (*busy_handler)(sqlite3*,int(*)(void*,int),void*);
49 int (*busy_timeout)(sqlite3*,int ms);
50 int (*changes)(sqlite3*);
51 int (*close)(sqlite3*);
52 int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*,
54 int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*,
    [all...]
Android.mk 32 common_src_files := sqlite3.c
78 ## Build the device command line tool sqlite3
81 ifneq ($(SDK_ONLY),true) # SDK doesn't need device version of sqlite3
104 LOCAL_MODULE := sqlite3
113 ## Build the host command line tool sqlite3
133 LOCAL_MODULE := sqlite3
Android.patch 5 #include "sqlite3.h"
37 diff -r -u -d orig/sqlite3.c ./sqlite3.c
38 --- orig/sqlite3.c 2012-04-19 19:18:38.000000000 -0700
39 +++ ./sqlite3.c 2012-04-19 19:26:02.000000000 -0700
81 -SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db);
82 +SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db, const char* registerAs); // Android Change
118 -SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db){
119 +SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db, const char* registerAs){ // Android Change
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 4 * Class to represent compiled SQLite3 statement.
15 * Internal handle for the SQLite3 statement.
35 * Perform one step of compiled SQLite3 statement.
72 * Close the compiled SQLite3 statement.
78 * Reset the compiled SQLite3 statement without
85 * Clear all bound parameters of the compiled SQLite3 statement.
91 * Bind positional integer value to compiled SQLite3 statement.
99 * Bind positional long value to compiled SQLite3 statement.
107 * Bind positional double value to compiled SQLite3 statement.
115 * Bind positional byte array to compiled SQLite3 statement
    [all...]
FunctionContext.java 51 * Only provided by SQLite3 databases.
60 * Only provided by SQLite3 databases.
  /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...]
  /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);
  /external/webkit/Source/cmake/
FindSqlite.cmake 28 pkg_check_modules(PC_SQLITE sqlite3)
33 FIND_PATH(SQLITE_INCLUDE_DIR NAMES sqlite3.h
39 FIND_LIBRARY(SQLITE_LIBRARIES NAMES sqlite3
  /frameworks/base/core/jni/
android_database_SQLiteCommon.h 23 #include <sqlite3.h>
33 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle);
41 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message);
  /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_;
user_settings_unittest.cc 23 FILE_PATH_LITERAL("Version10Settings.sqlite3");
25 FILE_PATH_LITERAL("Version11Settings.sqlite3");
27 FILE_PATH_LITERAL("OldStyleSyncData.sqlite3");
252 settings.Init(temp_dir.path().AppendASCII("UserSettings.sqlite3"));
266 settings.Init(temp_dir.path().AppendASCII("UserSettings.sqlite3"));
  /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...]
  /frameworks/base/core/java/android/database/sqlite/
package.html 16 <p>Android ships with the sqlite3 database tool in the <code>tools/</code>
18 typing <code>sqlite3</code> in a shell window.
SQLiteCustomFunction.java 32 * @param name The name of the sqlite3 function.
  /external/webkit/Source/WebCore/Configurations/
WebCore.xcconfig 84 SQLITE3_LIBRARY_iphoneos = sqlite3;
85 SQLITE3_LIBRARY_iphonesimulator = sqlite3;
90 SQLITE3_LIBRARY_macosx_1060 = sqlite3;
91 SQLITE3_LIBRARY_macosx_1070 = sqlite3;
  /external/chromium/chrome/common/
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() {
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...]
  /external/llvm/test/Transforms/GVN/
2009-01-22-SortInvalidation.ll 13 %struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i8, i8, i8, i8, i8, i8, i8, i8, i32, i16, i16, i32, i32, i32, i32, i8, i32, i8*, void (i8*)*, %struct.sqlite3_mutex*, %struct.BusyHandler, i32, %struct.BtShared*, %struct.BtLock*, %struct.Btree* }
14 %struct.Btree = type { %struct.sqlite3*, %struct.BtShared*, i8, i8, i8, i32, %struct.Btree*, %struct.Btree* }
35 %struct.KeyInfo = type { %struct.sqlite3*, i8, i8, i8, i32, i8*, [1 x %struct.CollSeq*] }
36 %struct.Mem = type { %struct.CountCtx, double, %struct.sqlite3*, i8*, i32, i16, i8, i8, void (i8*)* }
43 %struct.Parse = type { %struct.sqlite3*, i32, i8*, %struct.Vdbe*, i8, i8, i8, i8, i8, i8, i8, [8 x i32], i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, [12 x i32], i32, %struct.TableLock*, i32, i32, i32, i32, i32, %struct.Expr**, i8, %struct..4sPragmaType, %struct..4sPragmaType, %struct..4sPragmaType, i8*, i8*, %struct.Table*, %struct.Trigger*, %struct.TriggerStack*, i8*, %struct..4sPragmaType, i8, %struct.Table*, i32 }
45 %struct.Schema = type { i32, %struct.Hash, %struct.Hash, %struct.Hash, %struct.Hash, %struct.Table*, i8, i8, i16, i32, %struct.sqlite3* }
54 %struct.Vdbe = type { %struct.sqlite3*, %struct.Vdbe*, %struct.Vdbe*, i32, i32, %struct.Op*, i32, i32, i32*, %struct.Mem**, %struct.Mem*, i32, %struct.Cursor**, i32, %struct.Mem*, i8**, i32, i32, i32, %struct.Mem*, i32, i32, %struct.Fifo, i32, i32, %struct.Context*, i32, i32, i32, i32, i32, [25 x i32], i32, i32, i8**, i8*, %struct.Mem*, i8, i8, i8, i8, i8, i8, i32, i64, i32, %struct.BtreeMutexArray, i32, i8*, i32 }
60 %struct.sqlite3 = type { %struct.sqlite3_vfs*, i32, %struct.Db*, i32, i32, i32, i32, i8, i8, i8, i8, i32, %struct.CollSeq*, i64, i64, i32, i32, i32, %struct.sqlite3_mutex*, %struct.sqlite3InitInfo, i32, i8**, %struct.Vdbe*, i32, void (i8*, i8*)*, i8*, void (i8*, i8*, i64)*, i8*, i8*, i32 (i8*)*, i8*, void (i8*)*, i8*, void (i8*, i32, i8*, i8*, i64)*, void (i8*, %struct.sqlite3*, i32, i8*)*, void (i8*, %struct.sqlite3*, i32, i8*)*, i8*, %struct.Mem*, i8*, i8*, %struct.anon, i32 (i8*, i32, i8*, i8*, i8*, i8*)*, i8*, (…)
    [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)
  /external/llvm/test/CodeGen/X86/
2009-04-29-RegAllocAssert.ll 15 %struct.BtShared = type { %struct.Pager*, %struct.sqlite3*, %struct.BtCursor*, %struct.MemPage*, i8, i8, i8, i8, i8, i8, i8, i8, i32, i16, i16, i32, i32, i32, i32, i8, i32, i8*, void (i8*)*, %struct.sqlite3_mutex*, %struct.BusyHandler, i32, %struct.BtShared*, %struct.BtLock*, %struct.Btree* }
16 %struct.Btree = type { %struct.sqlite3*, %struct.BtShared*, i8, i8, i8, i32, %struct.Btree*, %struct.Btree* }
38 %struct.KeyInfo = type { %struct.sqlite3*, i8, i8, i8, i32, i8*, [1 x %struct.CollSeq*] }
39 %struct.Mem = type { %struct.CountCtx, double, %struct.sqlite3*, i8*, i32, i16, i8, i8, void (i8*)* }
46 %struct.Schema = type { i32, %struct.Hash, %struct.Hash, %struct.Hash, %struct.Hash, %struct.Table*, i8, i8, i16, i32, %struct.sqlite3* }
53 %struct.Vdbe = type { %struct.sqlite3*, %struct.Vdbe*, %struct.Vdbe*, i32, i32, %struct.Op*, i32, i32, i32*, %struct.Mem**, %struct.Mem*, i32, %struct.Cursor**, i32, %struct.Mem*, i8**, i32, i32, i32, %struct.Mem*, i32, i32, %struct.Fifo, i32, i32, %struct.Context*, i32, i32, i32, i32, i32, [25 x i32], i32, i32, i8**, i8*, %struct.Mem*, i8, i8, i8, i8, i8, i8, i32, i64, i32, %struct.BtreeMutexArray, i32, i8*, i32 }
58 %struct.sqlite3 = type { %struct.sqlite3_vfs*, i32, %struct.Db*, i32, i32, i32, i32, i8, i8, i8, i8, i32, %struct.CollSeq*, i64, i64, i32, i32, i32, %struct.sqlite3_mutex*, %struct.sqlite3InitInfo, i32, i8**, %struct.Vdbe*, i32, void (i8*, i8*)*, i8*, void (i8*, i8*, i64)*, i8*, i8*, i32 (i8*)*, i8*, void (i8*)*, i8*, void (i8*, i32, i8*, i8*, i64)*, void (i8*, %struct.sqlite3*, i32, i8*)*, void (i8*, %struct.sqlite3*, i32, i8*)*, i8*, %struct.Mem*, i8*, i8*, %2, i32 (i8*, i32, i8*, i8*, i8*, i8*)*, i8*, i32 (i8*)*, i8*, i32, %struct.Hash, %struct.Table*, %struct.sqlite3_vtab**, i32, %struct.Hash, %struct.Hash, %struct.BusyHandler, i32, [2 x %struct.Db], i8 }
66 %struct.sqlite3_module = type { i32, i32 (%struct.sqlite3*, i8*, i32, i8**, %struct.sqlite3_vtab**, i8**)*, i32 (%struct.sqlite3*, i8*, i32, i8**, %struct.s (…)
    [all...]
  /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...]
  /external/webkit/Source/WebCore/platform/sql/
SQLiteFileSystem.cpp 41 #include <sqlite3.h>
53 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool)
  /external/webkit/Tools/MiniBrowser/
MiniBrowserPostBuild.cmd 23 xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.dll" "%CONFIGURATIONBUILDDIR%\bin"
24 xcopy /y /d "%WEBKITLIBRARIESDIR%\bin\SQLite3%LIBRARYCONFIGSUFFIX%.pdb" "%CONFIGURATIONBUILDDIR%\bin"

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>