Lines Matching defs:sqlite3

578 typedef struct sqlite3 sqlite3;  typedef
16464 struct sqlite3 { struct
16465 sqlite3_vfs *pVfs; /* OS Interface */ argument
16468 sqlite3_mutex *mutex; /* Connection mutex */ argument
16476 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ argument
16496 i64 nChange; /* Value returned by sqlite3_changes() */ argument
16497 i64 nTotalChange; /* Value returned by sqlite3_total_changes() */ argument
16500 struct sqlite3InitInfo { /* Information used during initialization */ argument
16508 } init;
16509 int nVdbeActive; /* Number of VDBEs currently running */
16510 int nVdbeRead; /* Number of active VDBEs that read or write */
16511 int nVdbeWrite; /* Number of active VDBEs that read and write */
16512 int nVdbeExec; /* Number of nested calls to VdbeExec() */
16513 int nVDestroy; /* Number of active OP_VDestroy operations */
16537 void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */ argument
16538 void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64 argument
16543 int (*xWalCallback)(void *, sqlite3 *, const char *, int); argument
16546 void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); argument
16547 void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); argument
16549 sqlite3_value *pErr; /* Most recent error message */ argument
16551 volatile int isInterrupted; /* True if sqlite3_interrupt has been called */ argument
16556 sqlite3_xauth xAuth; /* Access authorization function */ argument
16566 Hash aModule; /* populated by sqlite3_create_module() */ argument
16569 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */ argument
16585 ** mutex, not by sqlite3.mutex. They are used by code in notify.c. argument
16594 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */ argument
16595 sqlite3 *pUnlockConnection; /* Connection to watch for unlock */ argument
16598 sqlite3 *pNextBlocked; /* Next in list of all blocked connections */ argument
16601 sqlite3_userauth auth; /* User authentication information */ argument