Lines Matching defs:sqlite3_intck

14111 **   sqlite3_intck *p = 0;
14124 ** Usually, the sqlite3_intck object opens a read transaction within the
14144 typedef struct sqlite3_intck sqlite3_intck;
14161 sqlite3_intck **ppOut /* OUT: New sqlite3_intck handle */
14170 void sqlite3_intck_close(sqlite3_intck *pCk);
14191 int sqlite3_intck_step(sqlite3_intck *pCk);
14201 const char *sqlite3_intck_message(sqlite3_intck *pCk);
14215 int sqlite3_intck_unlock(sqlite3_intck *pCk);
14229 int sqlite3_intck_error(sqlite3_intck *pCk, const char **pzErr);
14235 ** or sqlite3_intck_close() on the same sqlite3_intck handle.
14237 const char *sqlite3_intck_test_sql(sqlite3_intck *pCk, const char *zObj);
14287 struct sqlite3_intck {
14309 static void intckSaveErrmsg(sqlite3_intck *p){
14323 static sqlite3_stmt *intckPrepare(sqlite3_intck *p, const char *zSql){
14345 static sqlite3_stmt *intckPrepareFmt(sqlite3_intck *p, const char *zFmt, ...){
14365 static void intckFinalize(sqlite3_intck *p, sqlite3_stmt *pStmt){
14376 static int intckStep(sqlite3_intck *p, sqlite3_stmt *pStmt){
14383 ** returned by the statement. This function uses the sqlite3_intck error
14386 static void intckExec(sqlite3_intck *p, const char *zSql){
14394 ** A wrapper around sqlite3_mprintf() that uses the sqlite3_intck error
14397 static char *intckMprintf(sqlite3_intck *p, const char *zFmt, ...){
14418 static void intckSaveKey(sqlite3_intck *p){
14515 ** set sqlite3_intck.zObj to point to a nul-terminated buffer containing
14518 static void intckFindObject(sqlite3_intck *p){
14713 ** Return true if sqlite3_intck.db has automatic indexes enabled, false
14716 static int intckGetAutoIndex(sqlite3_intck *p){
14730 static int intckIsIndex(sqlite3_intck *p, const char *zObj){
14752 ** This function uses the sqlite3_intck error code convention.
14755 sqlite3_intck *p, /* Integrity check object */
15030 sqlite3_intck **ppOut /* OUT: New integrity-check handle */
15032 sqlite3_intck *pNew = 0;
15037 pNew = (sqlite3_intck*)sqlite3_malloc(sizeof(*pNew) + nDb + 1);
15061 void sqlite3_intck_close(sqlite3_intck *p){
15079 int sqlite3_intck_step(sqlite3_intck *p){
15137 const char *sqlite3_intck_message(sqlite3_intck *p){
15151 int sqlite3_intck_error(sqlite3_intck *p, const char **pzErr){
15160 int sqlite3_intck_unlock(sqlite3_intck *p){
15174 const char *sqlite3_intck_test_sql(sqlite3_intck *p, const char *zObj){
25768 sqlite3_intck *p = 0;