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