Lines Matching defs:unixShmNode
198 typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef
4279 struct unixShmNode { struct
4280 unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */
4281 sqlite3_mutex *pShmMutex; /* Mutex to access this object */
4282 char *zFilename; /* Name of the mmapped file */
4283 int hShm; /* Open file descriptor */
4284 int szRegion; /* Size of shared-memory regions */
4285 u16 nRegion; /* Size of array apRegion */
4286 u8 isReadonly; /* True if read-only */
4287 u8 isUnlocked; /* True if no DMS lock held */
4288 char **apRegion; /* Array of mapped shared-memory regions */
4289 int nRef; /* Number of unixShm objects pointing to this */
4313 unixShmNode *pShmNode; /* The underlying unixShmNode object */ argument