Lines Matching defs:isReadonly
24362 int isReadonly = (flags & SQLITE_OPEN_READONLY);
24381 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
28702 u8 isReadonly; /* True if read-only */
28946 pShmNode->isReadonly = 1;
29102 pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE,
29128 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
30046 int isReadonly = (flags & SQLITE_OPEN_READONLY);
30078 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
30135 if( isReadonly ) openFlags |= O_RDONLY;
30159 isReadonly = 1;
30221 if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY;
35146 int isReadonly = (flags & SQLITE_OPEN_READONLY);
35165 assert((isReadonlyisReadonly));