Home | History | Annotate | Download | only in hello_world

Lines Matching full:process

1 """Test Python APIs for target (launch and attach), breakpoint, and process."""
17 """Create target, breakpoint, launch a process, and then kill it.
19 Use dsym info and process launch API.
28 """Create target, breakpoint, launch a process, and then kill it.
30 Use dwarf debug map and process launch API.
40 """Create target, spawn a process, and attach to it with process id.
42 Use dsym info and attach to process with id API.
51 """Create target, spawn a process, and attach to it with process id.
53 Use dwarf map (no dsym) and attach to process with id API.
63 """Create target, spawn a process, and attach to it with process name.
65 Use dsym info and attach to process with name API.
75 """Create target, spawn a process, and attach to it with process name.
77 Use dwarf map (no dsym) and attach to process with name API.
94 """Create target, breakpoint, launch a process, and then kill it."""
115 process = target.LaunchSimple(None, None, os.getcwd())
120 #self.breakAfterLaunch(process, "main")
122 process = target.GetProcess()
123 self.assertTrue(process, PROCESS_IS_VALID)
125 thread = process.GetThreadAtIndex(0)
135 """Create target, spawn a process, and attach to it by id."""
139 # Spawn a new process
148 process = target.AttachToProcessWithID(listener, popen.pid, error)
150 self.assertTrue(error.Success() and process, PROCESS_IS_VALID)
152 # Let's check the stack traces of the attached process.
154 stacktraces = lldbutil.print_stacktraces(process, string_buffer=True)
160 """Create target, spawn a process, and attach to it by name."""
164 # Spawn a new process
176 # While we're at it, make sure that passing a None as the process name
182 process = target.AttachToProcessWithName(listener, name, False, error)
184 self.assertTrue(error.Success() and process, PROCESS_IS_VALID)
190 # Let's check the stack traces of the attached process.
192 stacktraces = lldbutil.print_stacktraces(process, string_buffer=True)