Searched defs:sqlite3_close (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dmain.c678 int sqlite3_close(sqlite3 *db){ function
2036 sqlite3_close(db);
H A Dsqlite3ext.h247 #define sqlite3_close sqlite3_api->close macro
/external/sqlite/dist/orig/
H A Dsqlite3ext.h285 #define sqlite3_close sqlite3_api->close macro
H A Dsqlite3.c336 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
385 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
387 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
392 ** statements or unfinished sqlite3_backup objects then sqlite3_close()
415 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
420 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
423 SQLITE_API int sqlite3_close(sqlite3*);
2771 ** passing it to [sqlite3_close()] when it is no longer required.
4654 ** [database connection] is closed using [sqlite3_close()].
7062 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
97256 #define sqlite3_close macro
123046 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); } function
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h285 #define sqlite3_close sqlite3_api->close macro
H A Dsqlite3.c336 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
385 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
387 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
392 ** statements or unfinished sqlite3_backup objects then sqlite3_close()
415 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
420 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
423 SQLITE_API int sqlite3_close(sqlite3*);
2771 ** passing it to [sqlite3_close()] when it is no longer required.
4654 ** [database connection] is closed using [sqlite3_close()].
7062 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
97276 #define sqlite3_close macro
123066 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); } function
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c764 ** [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 *);
2888 ** passing it to [sqlite3_close()] when it is no longer required.
4506 ** [database connection] is closed using [sqlite3_close()]
86729 #define sqlite3_close macro
107923 SQLITE_API int sqlite3_close(sqlite3 *db){ function
[all...]

Completed in 464 milliseconds