Lines Matching defs:sqlite3
582 typedef struct sqlite3 sqlite3; typedef
17010 struct sqlite3 { struct
17011 sqlite3_vfs *pVfs; /* OS Interface */ argument
17014 sqlite3_mutex *mutex; /* Connection mutex */ argument
17022 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ argument
17043 i64 nChange; /* Value returned by sqlite3_changes() */ argument
17044 i64 nTotalChange; /* Value returned by sqlite3_total_changes() */ argument
17047 struct sqlite3InitInfo { /* Information used during initialization */ argument
17055 } init;
17056 int nVdbeActive; /* Number of VDBEs currently running */
17057 int nVdbeRead; /* Number of active VDBEs that read or write */
17058 int nVdbeWrite; /* Number of active VDBEs that read and write */
17059 int nVdbeExec; /* Number of nested calls to VdbeExec() */
17060 int nVDestroy; /* Number of active OP_VDestroy operations */
17084 void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */ argument
17085 void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64 argument
17090 int (*xWalCallback)(void *, sqlite3 *, const char *, int); argument
17093 void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); argument
17094 void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); argument
17096 sqlite3_value *pErr; /* Most recent error message */ argument
17098 volatile int isInterrupted; /* True if sqlite3_interrupt has been called */ argument
17103 sqlite3_xauth xAuth; /* Access authorization function */ argument
17113 Hash aModule; /* populated by sqlite3_create_module() */ argument
17116 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */ argument
17132 ** mutex, not by sqlite3.mutex. They are used by code in notify.c. argument
17141 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */ argument
17142 sqlite3 *pUnlockConnection; /* Connection to watch for unlock */ argument
17145 sqlite3 *pNextBlocked; /* Next in list of all blocked connections */ argument
17148 sqlite3_userauth auth; /* User authentication information */ argument
17154 sqlite3_xDropTableHandle xDropTableHandle; /* User drop table callback */ argument
17172 ** Possible values for the sqlite3.flags. argument