Home | History | Annotate | Download | only in universal

Lines Matching full:process

34         # Now launch the process, and do not stop at entry point.
35 process = target.LaunchSimple(None, None, os.getcwd())
36 self.assertTrue(process, PROCESS_IS_VALID)
38 # rdar://problem/8972204 AddressByteSize of 32-bit process should be 4, got 8 instead.
42 """Test process launch of a universal binary."""
62 # Check whether we have a 64-bit process launched.
64 process = target.GetProcess()
65 self.assertTrue(target and process and
66 self.invoke(process, 'GetAddressByteSize') == 8,
67 "64-bit process launched")
69 frame = process.GetThreadAtIndex(0).GetFrameAtIndex(0)
87 # Check whether we have a 32-bit process launched.
89 process = target.GetProcess()
90 self.assertTrue(target and process,
91 "32-bit process launched")
93 pointerSize = self.invoke(process, 'GetAddressByteSize')
95 "AddressByteSize of 32-bit process should be 4, got %d instead." % pointerSize)
97 frame = process.GetThreadAtIndex(0).GetFrameAtIndex(0)