Searched refs:GetProcess (Results 1 – 15 of 15) sorted by relevance
| /xnu-11215/tools/lldbmacros/core/ |
| H A D | caching.py | 186 tg.GetProcess().GetUniqueID() 206 process = lldbwrap.GetProcess() 242 def GetProcess(): member in LazyTarget 247 return _implicit_process or lldbwrap.GetProcess() 274 process = exe_ctx.GetProcess() 277 process = target.GetProcess() 281 process = target.GetProcess() 287 process = target.GetProcess()
|
| H A D | lldbwrap.py | 294 return bytes(self.GetProcess().chkReadMemory(addr, size)) 311 return self.GetProcess().chkReadCStringFromMemory(addr, max_size) 347 if self.GetProcess().GetAddressByteSize() == 8: 353 if self.GetProcess().GetAddressByteSize() == 8: 476 if self.GetProcess().GetAddressByteSize() == 8: 482 if self.GetProcess().GetAddressByteSize() == 8: 1013 return self.target.GetProcess().chkReadCStringFromMemory(self.GetValueAsAddress(), max_len) 1204 def GetProcess(): function 1211 return GetTarget().GetProcess() 1215 GetProcess.__name__,
|
| H A D | kernelcore.py | 314 proc_state = LazyTarget.GetProcess().state
|
| H A D | cvalue.py | 362 content = sbv.GetProcess().ReadMemory(addr, size, err)
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | utils.py | 62 process_plugin_name = LazyTarget.GetProcess().GetPluginName().lower() 227 numbytes = LazyTarget.GetProcess().WriteMemory(addr, sdata, serr) 243 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 274 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 290 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 306 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr)
|
| H A D | userspace.py | 383 content = LazyTarget.GetProcess().ReadMemory(addr, size, err) 411 content = LazyTarget.GetProcess().ReadMemory(range1_in_kva, range1_size, err) 421 content += LazyTarget.GetProcess().ReadMemory(range2_in_kva, range2_size, err) 830 memory_data = LazyTarget.GetProcess().ReadMemory(start_addr, length, err)
|
| H A D | kext.py | 133 process = LazyTarget.GetProcess() 223 data = LazyTarget.GetProcess().ReadMemory(addr, 16, err)
|
| H A D | ktrace.py | 480 proc = LazyTarget.GetProcess() 857 process = LazyTarget().GetProcess()
|
| H A D | xnu.py | 491 lldb_process = LazyTarget.GetProcess() 638 lldb_SBThread = LazyTarget.GetProcess().GetSelectedThread() 1140 process = LazyTarget().GetProcess()
|
| H A D | process.py | 1480 LazyTarget.GetProcess().selected_thread = lldbthread 1481 if not LazyTarget.GetProcess().SetSelectedThread(lldbthread): 1496 lldb_process = LazyTarget.GetProcess()
|
| H A D | net.py | 140 buf = LazyTarget.GetProcess().ReadMemory(addr, hlen, err) 147 buf = LazyTarget.GetProcess().ReadMemory(addr, slen, err)
|
| H A D | mbufs.py | 124 buf = LazyTarget.GetProcess().ReadMemory(addr, mlen, err)
|
| /xnu-11215/tools/lldbmacros/tests/lldbtest/ |
| H A D | testcase.py | 72 return self.target.GetProcess() 192 lldb.debugger.GetSelectedTarget().GetProcess() \
|
| /xnu-11215/doc/debugging/ |
| H A D | debugging.md | 39 …read one specific chunk once, then it might be easier to use `LazyTarget.GetProcess().ReadMemory()` 56 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, 4096) 65 my_data = LazyTarget.GetProcess().ReadMemory(start_addr, length, err) 76 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, size) 88 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, size) 341 >>> data = xnu.LazyTarget.GetProcess().ReadMemory(0xfffffe0014c0f3f0, 0x000000000001b5d0, err)
|
| /xnu-11215/tools/lldbmacros/tests/ |
| H A D | lldb_test_process.py | 171 sp = debugger.GetSelectedTarget().GetProcess().GetScriptedImplementation()
|