Home
last modified time | relevance | path

Searched refs:cachePages (Results 1 – 9 of 9) sorted by relevance

/dports/x11-toolkits/kf5-kirigami2/kirigami2-5.89.0/src/
H A Dpagepool.h56 Q_PROPERTY(bool cachePages READ cachePages WRITE setCachePages NOTIFY cachePagesChanged)
68 bool cachePages() const;
H A Dpagepool.cpp61 bool PagePool::cachePages() const in cachePages() function in PagePool
H A Dplugins.qmltypes642 Property { name: "cachePages"; type: "bool" }
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/
H A DConfiguration.java203 private int cachePages; field in Configuration
668 return cachePages; in getCachePages()
677 public void setCachePages(int cachePages) throws IllegalArgumentException { in setCachePages() argument
678 if (cachePages < 0) { in setCachePages()
680 String.format(NEGATIVE_NUMBER_ERROR, "cachePages", cachePages)); in setCachePages()
682 this.cachePages = cachePages; in setCachePages()
H A DRuntimeEnvironment.java545 public void setCachePages(int cachePages) {
546 syncWriteConfiguration(cachePages, Configuration::setCachePages);
/dports/devel/kf5-kcoreaddons/kcoreaddons-5.89.0/src/lib/caching/
H A Dkshareddatacache.cpp507 const void *cachePages() const in cachePages() function
523 const char *pageStart = reinterpret_cast<const char *>(cachePages()); in page()
545 void *cachePages() in cachePages() function
548 return const_cast<void *>(that->cachePages()); in cachePages()
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/search/
H A DSearchEngine.java138 int cachePages = RuntimeEnvironment.getInstance().getCachePages(); field in SearchEngine
217 collector = TopScoreDocCollector.create(hitsPerPage * cachePages, Short.MAX_VALUE); in searchIndex()
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/main/java/org/opengrok/indexer/history/
H A DDirectoryHistoryReader.java98 int cachePages = RuntimeEnvironment.getInstance().getCachePages(); in DirectoryHistoryReader() local
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/db/gloda/modules/
H A DGlodaDatastore.jsm1372 let cachePages = Math.round(cacheSize / pageSize);
1373 return cachePages;
1390 let cachePages = this._determineCachePages(dbConnection);
1394 dbConnection.executeSimpleSQL("PRAGMA cache_size = " + cachePages);