Lines Matching +full:lldb +full:- +full:build
5 import lldb
15 self.build()
20 self.build()
25 # We build a different executable than the default build() does.
27 self.build(dictionary=d)
36 # We build a different executable than the default build() does.
38 self.build(dictionary=d)
44 # We build a different executable than the default build() does.
46 self.build(dictionary=d)
52 self.build()
57 self.build()
70 "main2.cpp", "// thread step-out of malloc into function b."
73 "main2.cpp", "// we should reach here after 3 step-over's."
94 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
118 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
155 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
165 # a non-malloc caller
178 # to hit it during step-out.
208 self.assertState(process.GetState(), lldb.eStateStopped)
209 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
228 self.assertStopReason(thread.GetStopReason(), lldb.eStopReasonPlanComplete)
232 # Which has been fixed on the lldb by compensating for inaccurate line
255 self.assertState(process.GetState(), lldb.eStateStopped)
256 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
301 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
308 neg_range = range(thread.num_frames, 0, -1)
310 self.assertEqual(thread.frame[pos].idx, thread.frame[-neg].idx)
313 main_file_spec = lldb.SBFileSpec("main.cpp")
317 options = lldb.SBExpressionOptions()
332 self.runCmd("expr -i 0 -- call_me(true)", check=False)