Lines Matching defs:isReadonly
41176 u8 isReadonly; /* True if read-only */
41419 if( pShmNode->isReadonly ){
41558 pShmNode->isReadonly = 1;
41722 pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE,
41751 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
43001 int isReadonly = (flags & SQLITE_OPEN_READONLY);
43033 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
43104 if( isReadonly ) openFlags |= O_RDONLY;
43134 isReadonly = 1;
43209 if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY;
48806 u8 isReadonly; /* True if read-only */
48969 if( pShmNode->isReadonly ){
49061 if( outFlags==SQLITE_OPEN_READONLY ) pShmNode->isReadonly = 1;
49359 if( pShmNode->isReadonly ){
49423 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
50121 int isReadonly = (flags & SQLITE_OPEN_READONLY);
50142 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
50376 if( isReadonly ){