Home
last modified time | relevance | path

Searched defs:unixShmNode (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
Dos_unix.c182 typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef
3566 struct unixShmNode { struct
3567 unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */
3568 sqlite3_mutex *mutex; /* Mutex to access this object */
3569 char *zFilename; /* Name of the mmapped file */
3570 int h; /* Open file descriptor */
3571 int szRegion; /* Size of shared-memory regions */
3572 int nRegion; /* Size of array apRegion */
3573 char **apRegion; /* Array of mapped shared-memory regions */
3597 unixShmNode *pShmNode; /* The underlying unixShmNode object */ argument