HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3_close (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/sqlite/src/test/
threadtest2.c 85 if( all_stop ){ sqlite3_close(db); break; }
89 sqlite3_close(db);
119 sqlite3_close(db);
threadtest1.c 234 sqlite3_close(db);
threadtest3.c 513 sqlite3_close(pDb->db);
542 rc = sqlite3_close(pDb->db);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test9.c 49 sqlite3_close(db);
54 sqlite3_close(db);
131 sqlite3_close(db);
test4.c 64 sqlite3_close(p->db);
69 sqlite3_close(p->db);
89 sqlite3_close(p->db);
test_server.c 244 #define MSG_Close 6 /* sqlite3_close(pDb) */
316 ** sqlite3_close
445 pMsg->errCode = sqlite3_close(pMsg->pDb);
test_superlock.c 163 sqlite3_close(p->db);
loadext.c 148 sqlite3_close,
tclsqlite.c 456 sqlite3_close(pDb->db);
    [all...]
sqlite3ext.h 247 #define sqlite3_close sqlite3_api->close macro
main.c 678 int sqlite3_close(sqlite3 *db){ function
    [all...]
sqlite.h.in 216 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
264 ** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
265 ** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
271 ** sqlite3_close() is called on a [database connection] that still has
275 ** ^If [sqlite3_close()] is invoked while a transaction is open,
278 ** The C parameter to [sqlite3_close(C)] must be either a NULL
282 ** ^Calling sqlite3_close() with a NULL pointer argument is a
285 int sqlite3_close(sqlite3 *);
    [all...]
shell.c     [all...]
test1.c 713 ** Usage: sqlite3_close DB
731 rc = sqlite3_close(db);
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
rollback-test.c 35 sqlite3_close(db);
117 sqlite3_close(db);
speedtest16.c 155 sqlite3_close(db);
158 printf("sqlite3_close() returns in %llu cycles\n", iElapse);
speedtest8.c 227 sqlite3_close(db);
233 if (!bQuiet) printf("sqlite3_close() returns in %llu cycles\n", iElapse);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.cpp 73 sqlite3_close(m_db);
82 sqlite3_close(m_db);
108 sqlite3_close(db);
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_sqlite3.cc 339 int status = sqlite3_close(db_);
486 sqlite3_close(db_);
  /external/javasqlite/src/main/native/
sqlite_jni.c 814 sqlite3_close((sqlite3 *) h->sqlite);
823 sqlite3_close((sqlite3 *) h->sqlite);
1072 sqlite3_close((sqlite3 *) h->sqlite);
1082 sqlite3_close((sqlite3 *) h->sqlite);
1164 sqlite3_close((sqlite3 *) h->sqlite);
1185 sqlite3_close((sqlite3 *) h->sqlite);
1206 sqlite3_close((sqlite3 *) h->sqlite);
1216 sqlite3_close((sqlite3 *) h->sqlite);
    [all...]
  /external/chromium_org/sql/
connection.cc 266 // sqlite3_close() needs all prepared statements to be finalized.
277 // Deactivate any outstanding statements so sqlite3_close() works.
292 int rc = sqlite3_close(db_);
295 DLOG(FATAL) << "sqlite3_close failed: " << GetErrorMessage();
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 221 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
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
276 ** sqlite3_close() is called on a [database connection] that still has
280 ** ^If [sqlite3_close()] is invoked while a transaction is open,
283 ** The C parameter to [sqlite3_close(C)] must be either a NULL
287 ** ^Calling sqlite3_close() with a NULL pointer argument is a
290 SQLITE_API int sqlite3_close(sqlite3 *);
    [all...]
sqlite3.c 764 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
812 ** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
813 ** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
819 ** sqlite3_close() is called on a [database connection] that still has
823 ** ^If [sqlite3_close()] is invoked while a transaction is open,
826 ** The C parameter to [sqlite3_close(C)] must be either a NULL
830 ** ^Calling sqlite3_close() with a NULL pointer argument is a
833 SQLITE_API int sqlite3_close(sqlite3 *);
86729 #define sqlite3_close macro
107923 SQLITE_API int sqlite3_close(sqlite3 *db){ function
    [all...]

Completed in 202 milliseconds