Lines Matching refs:isReadonly
37703 u8 isReadonly; /* True if read-only */
37911 if( pShmNode->isReadonly ){
38050 pShmNode->isReadonly = 1;
38214 pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE,
38243 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
39422 int isReadonly = (flags & SQLITE_OPEN_READONLY);
39454 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
39520 if( isReadonly ) openFlags |= O_RDONLY;
39550 isReadonly = 1;
39622 if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY;
45311 u8 isReadonly; /* True if read-only */
45474 if( pShmNode->isReadonly ){
45566 if( outFlags==SQLITE_OPEN_READONLY ) pShmNode->isReadonly = 1;
45860 if( pShmNode->isReadonly ){
45924 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
46606 int isReadonly = (flags & SQLITE_OPEN_READONLY);
46627 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
46857 if( isReadonly ){