Lines Matching refs:process
36 process = target.LaunchSimple(
39 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
53 content = process.ReadMemory(
69 cstring = process.ReadCStringFromMemory(
90 cstring = process.ReadCStringFromMemory(
110 my_uint32 = process.ReadUnsignedFromMemory(
133 process = target.LaunchSimple(
136 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
160 result = process.WriteMemory(location, 'a', error)
167 content = process.ReadMemory(location, 1, error)
191 process = target.LaunchSimple(
194 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
218 byteOrder = process.GetByteOrder()
234 result = process.WriteMemory(location, bytes, error)
257 content = process.ReadMemory(location, byteSize, error)
285 process = target.LaunchSimple(
289 print("process state:", state_type_to_str(process.GetState()))
290 self.assertTrue(process.GetState() != lldb.eStateConnected)
293 success = process.RemoteLaunch(
312 process = target.LaunchSimple(
316 num = process.GetNumSupportedHardwareWatchpoints(error)
338 process = target.Launch(launch_info, error)
344 process_info = process.GetProcessInfo()
401 (target, process, main_thread, main_breakpoint) = lldbutil.run_to_source_breakpoint(
406 addr = process.AllocateMemory(16384, lldb.ePermissionsReadable, error)
413 result = process.WriteMemory(addr, 'a', error)
420 content = process.ReadMemory(addr, 1, error)
449 error = process.DeallocateMemory(addr)