Searched refs:SBProcessRawIO (Results 1 – 3 of 3) sorted by relevance
| /xnu-10063.101.15/tools/lldbmacros/core/ |
| H A D | io.py | 7 class SBProcessRawIO(io.RawIOBase): class 17 super(SBProcessRawIO, self).__init__()
|
| /xnu-10063.101.15/doc/debugging/ |
| H A D | debugging.md | 38 be hugely beneficial performance-wise to make use of the `io.SBProcessRawIO` class. Furthermore, if… 53 from core.io import SBProcessRawIO 56 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, 4096) 74 from core.io import SBProcessRawIO 76 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, size) 81 Not only that, but you can also tack on a BufferedRandom class on top of the SBProcessRawIO instanc… 85 from core.io import SBProcessRawIO 88 io_access = SBProcessRawIO(LazyTarget.GetProcess(), start_addr, size)
|
| /xnu-10063.101.15/tools/lldbmacros/ |
| H A D | kext.py | 16 from core.io import SBProcessRawIO 118 procio = SBProcessRawIO(process, address, size)
|