Lines Matching defs:sqlite3
591 typedef struct sqlite3 sqlite3; typedef
18035 struct sqlite3 { struct
18036 sqlite3_vfs *pVfs; /* OS Interface */ argument
18039 sqlite3_mutex *mutex; /* Connection mutex */ argument
18047 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ argument
18068 i64 nChange; /* Value returned by sqlite3_changes() */ argument
18069 i64 nTotalChange; /* Value returned by sqlite3_total_changes() */ argument
18072 struct sqlite3InitInfo { /* Information used during initialization */ argument
18080 } init;
18081 int nVdbeActive; /* Number of VDBEs currently running */
18082 int nVdbeRead; /* Number of active VDBEs that read or write */
18083 int nVdbeWrite; /* Number of active VDBEs that read and write */
18084 int nVdbeExec; /* Number of nested calls to VdbeExec() */
18085 int nVDestroy; /* Number of active OP_VDestroy operations */
18109 void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */ argument
18110 void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64 argument
18115 int (*xWalCallback)(void *, sqlite3 *, const char *, int); argument
18118 void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); argument
18119 void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); argument
18121 sqlite3_value *pErr; /* Most recent error message */ argument
18123 volatile int isInterrupted; /* True if sqlite3_interrupt has been called */ argument
18128 sqlite3_xauth xAuth; /* Access authorization function */ argument
18138 Hash aModule; /* populated by sqlite3_create_module() */ argument
18141 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */ argument
18159 DbClientData *pDbData; /* sqlite3_set_clientdata() content */ argument
18162 ** mutex, not by sqlite3.mutex. They are used by code in notify.c. argument
18171 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */ argument
18172 sqlite3 *pUnlockConnection; /* Connection to watch for unlock */ argument
18175 sqlite3 *pNextBlocked; /* Next in list of all blocked connections */ argument