Searched defs:readOnly (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtest2.c498 int readOnly = 0; local
505 rc = sqliteOsOpenReadWrite(argv[2], &fd, &readOnly);
H A Dpager.c191 u8 readOnly; /* True for a read-only database */ member in struct:Pager
938 int readOnly = 0; local
947 rc = sqliteOsOpenReadWrite(zFullPathname, &fd, &readOnly);
994 pPager->readOnly = readOnly;
1772 if( pPager->readOnly ){
2092 return pPager->readOnly;
H A Dbtree.c360 u8 readOnly; /* True if the underlying file is readonly */ member in struct:Btree
729 pBt->readOnly = sqlitepager_isreadonly(pBt->pPager);
885 if( pBt->readOnly ) return SQLITE_READONLY;
913 rc = pBt->readOnly ? SQLITE_OK : sqlitepager_commit(pBt->pPager);
935 rc = pBt->readOnly ? SQLITE_OK : sqlitepager_rollback(pBt->pPager);
959 return pBt->readOnly ? SQLITE_READONLY : SQLITE_ERROR;
961 rc = pBt->readOnly ? SQLITE_OK : sqlitepager_ckpt_begin(pBt->pPager);
973 if( pBt->inCkpt && !pBt->readOnly ){
993 if( pBt->inCkpt==0 || pBt->readOnly ) return SQLITE_OK;
1046 if( pBt->readOnly
[all...]
H A DsqliteInt.h507 u8 readOnly; /* True if this table should not be written by the user */ member in struct:Table
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_property.c201 jboolean readOnly = zfs_prop_readonly(prop) ? local
217 readOnly, propSource);
231 readOnly, lineage);
347 jboolean readOnly = zfs_prop_readonly(prop) ? local
363 propName, propValue, readOnly, lineage);

Completed in 81 milliseconds