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

  /external/chromium_org/third_party/sqlite/src/src/
main.c 678 int sqlite3_close(sqlite3 *db){ function
    [all...]
sqlite3ext.h 247 #define sqlite3_close sqlite3_api->close macro
  /external/sqlite/dist/orig/
sqlite3ext.h 285 #define sqlite3_close sqlite3_api->close macro
sqlite3.c 336 ** [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*);
97256 #define sqlite3_close macro
123046 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); } function
    [all...]
  /external/sqlite/dist/
sqlite3ext.h 285 #define sqlite3_close sqlite3_api->close macro
sqlite3.c 336 ** [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*);
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/
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 606 milliseconds