Home
last modified time | relevance | path

Searched refs:isRO (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp370 bool isRO = isReadOnly<ELFT>(ss); in addCopyRelSymbol() local
371 BssSection *sec = make<BssSection>(ctx, isRO ? ".bss.rel.ro" : ".bss", in addCopyRelSymbol()
373 OutputSection *osec = (isRO ? ctx.in.bssRelRo : ctx.in.bss)->getParent(); in addCopyRelSymbol()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c54107 int isRO = 0; /* file is known to be accessible readonly */ local
54259 rc2 = winAccess(pVfs, zUtf8Name, SQLITE_ACCESS_READ|NORETRY, &isRO);
54261 if( rc2==SQLITE_OK && isRO ) break;
54278 rc2 = winAccess(pVfs, zUtf8Name, SQLITE_ACCESS_READ|NORETRY, &isRO);
54280 if( rc2==SQLITE_OK && isRO ) break;
54293 if( isReadWrite && isRO && !isExclusive ){