Searched refs:exc_ctx (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 65 ExecutionContext exc_ctx; in InitializeFunctionCaller() local 70 GetThread().CalculateExecutionContext(exc_ctx); in InitializeFunctionCaller() 72 exc_ctx, m_args_addr, options, diagnostics); in InitializeFunctionCaller() 133 ExecutionContext exc_ctx; in ShouldStop() local 134 GetThread().CalculateExecutionContext(exc_ctx); in ShouldStop() 135 m_impl_function->FetchFunctionResults(exc_ctx, m_args_addr, in ShouldStop() 137 m_impl_function->DeallocateFunctionResults(exc_ctx, m_args_addr); in ShouldStop() 140 target_so_addr.SetOpcodeLoadAddress(target_addr, exc_ctx.GetTargetPtr()); in ShouldStop()
|
/external/python/cpython3/Lib/test/ |
D | test_xmlrpc.py | 366 with self.assertRaises(self.DispatchExc) as exc_ctx: 368 self.assertEqual(exc_ctx.exception.args, (exp_params,)) 369 self.assertIsNone(exc_ctx.exception.__cause__) 370 self.assertIsNone(exc_ctx.exception.__context__) 385 with self.assertRaises(self.DispatchExc) as exc_ctx: 387 self.assertEqual(exc_ctx.exception.args, (exp_params,)) 388 self.assertIsNone(exc_ctx.exception.__cause__) 389 self.assertIsNone(exc_ctx.exception.__context__) 406 with self.assertRaises(self.DispatchExc) as exc_ctx: 408 self.assertEqual(exc_ctx.exception.args, (exp_method, exp_params)) [all …]
|
/external/llvm-project/lldb/source/Target/ |
D | Target.cpp | 2665 for (auto exc_ctx : exc_ctx_with_reasons) { in RunStopHooks() local 2671 if (!cur_hook_sp->ExecutionContextPasses(exc_ctx)) in RunStopHooks() 2694 exc_ctx.GetThreadPtr()->GetIndexID()); in RunStopHooks() 2697 cur_hook_sp->HandleStop(exc_ctx, output_sp); in RunStopHooks() 3243 bool Target::StopHook::ExecutionContextPasses(const ExecutionContext &exc_ctx) { in ExecutionContextPasses() argument 3249 if (exc_ctx.GetFramePtr()) in ExecutionContextPasses() 3251 exc_ctx.GetFramePtr()->GetSymbolContext(eSymbolContextEverything)); in ExecutionContextPasses() 3254 GetThreadSpecifier()->ThreadPassesBasicTests(exc_ctx.GetThreadRef()); in ExecutionContextPasses() 3331 Target::StopHookCommandLine::HandleStop(ExecutionContext &exc_ctx, in HandleStop() argument 3333 assert(exc_ctx.GetTargetPtr() && "Can't call PerformAction on a context " in HandleStop() [all …]
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | ScriptInterpreter.h | 313 ExecutionContext &exc_ctx, in ScriptedStopHookHandleStop() argument
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | Target.h | 1222 StopHookResult HandleStop(ExecutionContext &exc_ctx, 1240 StopHookResult HandleStop(ExecutionContext &exc_ctx,
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | ScriptInterpreterPythonImpl.h | 113 ExecutionContext &exc_ctx,
|
D | ScriptInterpreterPython.cpp | 139 lldb::ExecutionContextRefSP exc_ctx, 2036 StructuredData::GenericSP implementor_sp, ExecutionContext &exc_ctx, in ScriptedStopHookHandleStop() argument 2045 lldb::ExecutionContextRefSP exc_ctx_ref_sp(new ExecutionContextRef(exc_ctx)); in ScriptedStopHookHandleStop()
|