Searched defs:MemStore (Results 1 – 1 of 1) sorted by relevance
53840 typedef struct MemStore MemStore; typedef53883 struct MemStore { struct53884 sqlite3_int64 sz; /* Size of the file */53885 sqlite3_int64 szAlloc; /* Space allocated to aData */53886 sqlite3_int64 szMax; /* Maximum allowed size of the file */53887 unsigned char *aData; /* content of the file */53888 sqlite3_mutex *pMutex; /* Used by shared stores only */53889 int nMmap; /* Number of memory mapped pages */53890 unsigned mFlags; /* Flags */53891 int nRdLock; /* Number of readers */[all …]