Lines Matching refs:caught_exception
766 bool caught_exception; in CompileDebuggerScript() local
772 0, NULL, &caught_exception); in CompileDebuggerScript()
775 if (caught_exception) { in CompileDebuggerScript()
841 bool caught_exception = in Load() local
846 caught_exception = caught_exception || in Load()
857 if (caught_exception) return false; in Load()
1107 bool caught_exception; in CheckBreakPoint() local
1113 &caught_exception); in CheckBreakPoint()
1116 if (caught_exception || !result->IsBoolean()) { in CheckBreakPoint()
2253 bool caught_exception; in ClearMirrorCache() local
2256 0, NULL, &caught_exception); in ClearMirrorCache()
2370 bool* caught_exception) { in MakeJSObject() argument
2380 *caught_exception = true; in MakeJSObject()
2388 caught_exception); in MakeJSObject()
2393 Handle<Object> Debugger::MakeExecutionState(bool* caught_exception) { in MakeExecutionState() argument
2401 caught_exception); in MakeExecutionState()
2407 bool* caught_exception) { in MakeBreakEvent() argument
2413 caught_exception); in MakeBreakEvent()
2420 bool* caught_exception) { in MakeExceptionEvent() argument
2429 caught_exception); in MakeExceptionEvent()
2434 bool* caught_exception) { in MakeNewFunctionEvent() argument
2440 caught_exception); in MakeNewFunctionEvent()
2446 bool* caught_exception) { in MakeCompileEvent() argument
2449 Handle<Object> exec_state = MakeExecutionState(caught_exception); in MakeCompileEvent()
2457 caught_exception); in MakeCompileEvent()
2462 bool* caught_exception) { in MakeScriptCollectedEvent() argument
2464 Handle<Object> exec_state = MakeExecutionState(caught_exception); in MakeScriptCollectedEvent()
2471 caught_exception); in MakeScriptCollectedEvent()
2500 bool caught_exception = false; in OnException() local
2501 Handle<Object> exec_state = MakeExecutionState(&caught_exception); in OnException()
2503 if (!caught_exception) { in OnException()
2505 &caught_exception); in OnException()
2508 if (caught_exception) { in OnException()
2532 bool caught_exception = false; in OnDebugBreak() local
2533 Handle<Object> exec_state = MakeExecutionState(&caught_exception); in OnDebugBreak()
2535 if (!caught_exception) { in OnDebugBreak()
2537 &caught_exception); in OnDebugBreak()
2540 if (caught_exception) { in OnDebugBreak()
2564 bool caught_exception = false; in OnBeforeCompile() local
2565 Handle<Object> event_data = MakeCompileEvent(script, true, &caught_exception); in OnBeforeCompile()
2567 if (caught_exception) { in OnBeforeCompile()
2619 bool caught_exception; in OnAfterCompile() local
2625 &caught_exception); in OnAfterCompile()
2626 if (caught_exception) { in OnAfterCompile()
2636 &caught_exception); in OnAfterCompile()
2638 if (caught_exception) { in OnAfterCompile()
2660 bool caught_exception = false; in OnScriptCollected() local
2662 &caught_exception); in OnScriptCollected()
2664 if (caught_exception) { in OnScriptCollected()
2686 bool caught_exception = false; in ProcessDebugEvent() local
2687 Handle<Object> exec_state = MakeExecutionState(&caught_exception); in ProcessDebugEvent()
2688 if (caught_exception) { in ProcessDebugEvent()
2761 bool caught_exception; in CallJSEventCallback() local
2766 &caught_exception); in CallJSEventCallback()
3131 bool caught_exception = false; in Call() local
3132 Handle<Object> exec_state = MakeExecutionState(&caught_exception); in Call()
3133 if (caught_exception) { in Call()
3374 bool caught_exception; in GetJSON() local
3377 0, NULL, &caught_exception); in GetJSON()
3378 if (caught_exception || !json->IsString()) { in GetJSON()