Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DStackWalker.java302 private final int estimateDepth; field in StackWalker
400 public static StackWalker getInstance(Set<Option> options, int estimateDepth) { in getInstance() argument
401 if (estimateDepth <= 0) { in getInstance()
406 return new StackWalker(optionSet, estimateDepth); in getInstance()
413 private StackWalker(EnumSet<Option> options, int estimateDepth) { in StackWalker() argument
414 this(options, estimateDepth, null); in StackWalker()
416 private StackWalker(EnumSet<Option> options, int estimateDepth, ExtendedOption extendedOption) { in StackWalker() argument
418 this.estimateDepth = estimateDepth; in StackWalker()
616 int estimateDepth() { in estimateDepth() method in StackWalker
617 return estimateDepth; in estimateDepth()
DStackStreamFactory.java616 int initialBatchSize = Math.max(walker.estimateDepth(), SMALL_BATCH); in batchSize()