Searched refs:frame_limit (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/ |
D | isolate.cc | 618 int frame_limit = stack_trace_for_uncaught_exceptions_frame_limit_; in GetDetailedFromSimpleStackTrace() local 619 if (frame_limit < 0) frame_limit = (elements_limit - 1) / 4; in GetDetailedFromSimpleStackTrace() 621 Handle<JSArray> stack_trace = factory()->NewJSArray(frame_limit); in GetDetailedFromSimpleStackTrace() 622 for (int i = 1; i < elements_limit && frames_seen < frame_limit; i += 4) { in GetDetailedFromSimpleStackTrace() 644 int frame_limit, StackTrace::StackTraceOptions options) { in CaptureCurrentStackTrace() argument 648 int limit = Max(frame_limit, 0); in CaptureCurrentStackTrace() 649 Handle<JSArray> stack_trace = factory()->NewJSArray(frame_limit); in CaptureCurrentStackTrace() 1605 int frame_limit, in SetCaptureStackTraceForUncaughtExceptions() argument 1608 stack_trace_for_uncaught_exceptions_frame_limit_ = frame_limit; in SetCaptureStackTraceForUncaughtExceptions()
|
D | isolate.h | 654 int frame_limit, 669 int frame_limit,
|
D | api.cc | 2468 int frame_limit, in CurrentStackTrace() argument 2476 i_isolate->CaptureCurrentStackTrace(frame_limit, options); in CurrentStackTrace() 7588 bool capture, int frame_limit, StackTrace::StackTraceOptions options) { in SetCaptureStackTraceForUncaughtExceptions() argument 7590 isolate->SetCaptureStackTraceForUncaughtExceptions(capture, frame_limit, in SetCaptureStackTraceForUncaughtExceptions()
|
/external/v8/include/ |
D | v8.h | 1568 int frame_limit, 6007 bool capture, int frame_limit = 10, 6175 bool capture, int frame_limit = 10, 8426 bool capture, int frame_limit, StackTrace::StackTraceOptions options) { 8428 isolate->SetCaptureStackTraceForUncaughtExceptions(capture, frame_limit,
|