Home
last modified time | relevance | path

Searched refs:SBProcessRawIO (Results 1 – 3 of 3) sorted by relevance

/xnu-8796.121.2/tools/lldbmacros/core/
H A Dio.py11 class SBProcessRawIO(io.RawIOBase): class
21 super(SBProcessRawIO, self).__init__()
/xnu-8796.121.2/doc/
H A Ddebugging.md110 be hugely beneficial performance-wise to make use of the `io.SBProcessRawIO` class. Furthermore, if…
125 from core.io import SBProcessRawIO
128 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, 4096)
146 from core.io import SBProcessRawIO
148 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, size)
153 Not only that, but you can also tack on a BufferedRandom class on top of the SBProcessRawIO instanc…
157 from core.io import SBProcessRawIO
160 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, size)
/xnu-8796.121.2/tools/lldbmacros/
H A Dkext.py23 from core.io import SBProcessRawIO
125 procio = SBProcessRawIO(process, address, size)