• Home
  • Raw
  • Download

Lines Matching defs:sqlite3

1270 typedef struct sqlite3 sqlite3;  typedef
15211 struct sqlite3 { struct
15212 sqlite3_vfs *pVfs; /* OS Interface */ argument
15215 sqlite3_mutex *mutex; /* Connection mutex */ argument
15223 unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ argument
15243 int nChange; /* Value returned by sqlite3_changes() */ argument
15244 int nTotalChange; /* Value returned by sqlite3_total_changes() */ argument
15247 struct sqlite3InitInfo { /* Information used during initialization */ argument
15273 void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */ argument
15274 void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64 argument
15279 int (*xWalCallback)(void *, sqlite3 *, const char *, int); argument
15282 void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); argument
15283 void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); argument
15285 sqlite3_value *pErr; /* Most recent error message */ argument
15287 volatile int isInterrupted; /* True if sqlite3_interrupt has been called */ argument
15292 sqlite3_xauth xAuth; /* Access authorization function */ argument
15302 Hash aModule; /* populated by sqlite3_create_module() */ argument
15305 VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */ argument
15320 ** mutex, not by sqlite3.mutex. They are used by code in notify.c. argument
15329 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */ argument
15330 sqlite3 *pUnlockConnection; /* Connection to watch for unlock */ argument
15333 sqlite3 *pNextBlocked; /* Next in list of all blocked connections */ argument
15336 sqlite3_userauth auth; /* User authentication information */ argument