Searched refs:maxNumPages (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPageCache.java41 long maxNumPages,
43 checkPageInfo(pageSize, maxNumPages);
45 this.maxNumPages = maxNumPages;
155 private long maxNumPages; field in class:PageCache
188 if (numPages == maxNumPages) {
265 /** Ensure that page size fits within 32 bits and is a power of two, and that maxNumPages > 0 */
266 private void checkPageInfo(long pageSize, long maxNumPages) { argument
267 if ((pageSize <= 0) || maxNumPages <= 0) {
268 throw new IllegalArgumentException("pageSize and maxNumPages mus
40 PageCache(long pageSize, long maxNumPages, PageFetcher fetcher) argument
[all...]
H A DDebuggerBase.java170 protected final void initCache(long pageSize, long maxNumPages) { argument
171 cache = new PageCache(pageSize, maxNumPages, new Fetcher());

Completed in 408 milliseconds