Home
last modified time | relevance | path

Searched refs:readOnly (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/bsnmp/lib/
Dtc.def46 5 readOnly
/freebsd-12-stable/contrib/llvm-project/llvm/lib/AsmParser/
DLLLexer.cpp767 KEYWORD(readOnly); in LexIdentifier()
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c12851 u8 readOnly; /* True for read-only statements */ member
38157 u8 readOnly; /* True for a read-only database */
41831 int readOnly = 0; /* True if this is a read-only file */
41963 readOnly = (fout&SQLITE_OPEN_READONLY);
41973 if( rc==SQLITE_OK && !readOnly ){
42010 readOnly = (vfsFlags&SQLITE_OPEN_READONLY);
42042 pPager->noReadlock = (noReadlock && readOnly) ?1:0;
42062 pPager->readOnly = (u8)readOnly;
42256 assert( pPager->noReadlock==0 || pPager->readOnly );
42844 if( NEVER(pPager->readOnly) ) return SQLITE_PERM;
[all …]
/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c23346 bft readOnly:1; /* True for statements that do not write */ member
57016 u8 readOnly; /* True for a read-only database */
61109 int readOnly = 0; /* True if this is a read-only file */
61309 readOnly = (fout&SQLITE_OPEN_READONLY)!=0;
61321 if( !readOnly ){
61368 readOnly = (vfsFlags&SQLITE_OPEN_READONLY);
61417 pPager->readOnly = (u8)readOnly;
61643 if( pPager->readOnly ){
62417 assert( pPager->readOnly==0 );
63174 return pPager->readOnly;
[all …]