Searched refs:estimateDepth (Results 1 – 2 of 2) sorted by relevance
302 private final int estimateDepth; field in StackWalker400 public static StackWalker getInstance(Set<Option> options, int estimateDepth) { in getInstance() argument401 if (estimateDepth <= 0) { in getInstance()406 return new StackWalker(optionSet, estimateDepth); in getInstance()413 private StackWalker(EnumSet<Option> options, int estimateDepth) { in StackWalker() argument414 this(options, estimateDepth, null); in StackWalker()416 private StackWalker(EnumSet<Option> options, int estimateDepth, ExtendedOption extendedOption) { in StackWalker() argument418 this.estimateDepth = estimateDepth; in StackWalker()616 int estimateDepth() { in estimateDepth() method in StackWalker617 return estimateDepth; in estimateDepth()
616 int initialBatchSize = Math.max(walker.estimateDepth(), SMALL_BATCH); in batchSize()