Searched refs:maxStackSize (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DScriptCallStackFactory.h48 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed);
49 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState*, size_t maxStackSize);
50 PassRefPtr<ScriptCallStack> createScriptCallStackFromException(JSC::ExecState*, JSC::JSValue& exception, size_t maxStackSize);
H A DScriptCallStackFactory.cpp56 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyIsAllowed) argument
61 Interpreter::getStackTrace(&exec->vm(), stackTrace, maxStackSize);
78 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState* exec, size_t maxStackSize) argument
82 Interpreter::getStackTrace(&exec->vm(), stackTrace, maxStackSize + 1);
100 PassRefPtr<ScriptCallStack> createScriptCallStackFromException(JSC::ExecState* exec, JSC::JSValue& exception, size_t maxStackSize) argument
104 for (size_t i = 0; i < stackTrace.size() && i < maxStackSize; i++) {
134 size_t maxStackSize = 1; local
138 maxStackSize = ScriptCallStack::maxCallStackSizeToCapture;
140 return createScriptCallStack(exec, maxStackSize);
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSContextRefPrivate.h56 JS_EXPORT JSStringRef JSContextCreateBacktrace(JSContextRef ctx, unsigned maxStackSize) AVAILABLE_IN_WEBKIT_VERSION_4_0;
H A DJSContextRef.cpp215 JSStringRef JSContextCreateBacktrace(JSContextRef ctx, unsigned maxStackSize) argument
225 Interpreter::getStackTrace(&exec->vm(), stackTrace, maxStackSize);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/asm/
H A DMethodWriter.java240 private int maxStackSize; field in class:MethodWriter
625 if (size > maxStackSize) {
626 maxStackSize = size;
634 currentBlock.maxStackSize = maxStackSize;
648 if (size > maxStackSize) {
649 maxStackSize = size;
667 currentBlock.maxStackSize = maxStackSize;
672 if (size > maxStackSize) {
[all...]
H A DLabel.java97 * beginStackSize} + {@link #maxStackSize maxStackSize}.
99 int maxStackSize; field in class:Label
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.h224 JS_EXPORT_PRIVATE static void getStackTrace(VM*, Vector<StackFrame>& results, size_t maxStackSize = std::numeric_limits<size_t>::max());
H A DInterpreter.cpp664 void Interpreter::getStackTrace(VM* vm, Vector<StackFrame>& results, size_t maxStackSize) argument
675 while (callFrame && callFrame != CallFrame::noCaller() && maxStackSize--) {

Completed in 284 milliseconds