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.c54062 int isRO = 0; /* file is known to be accessible readonly */ local
54214 rc2 = winAccess(pVfs, zUtf8Name, SQLITE_ACCESS_READ|NORETRY, &isRO);
54216 if( rc2==SQLITE_OK && isRO ) break;
54233 rc2 = winAccess(pVfs, zUtf8Name, SQLITE_ACCESS_READ|NORETRY, &isRO);
54235 if( rc2==SQLITE_OK && isRO ) break;
54248 if( isReadWrite && isRO && !isExclusive ){