Home | History | Annotate | Download | only in dist

Lines Matching refs:isReadonly

30702   u8 isReadonly;             /* True if read-only */
30971 pShmNode->isReadonly = 1;
31145 pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE,
31174 if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY;
32329 int isReadonly = (flags & SQLITE_OPEN_READONLY);
32361 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
32428 if( isReadonly ) openFlags |= O_RDONLY;
32452 isReadonly = 1;
32516 if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY;
39041 int isReadonly = (flags & SQLITE_OPEN_READONLY);
39062 assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly));
39266 if( isReadonly ){