Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(0) | Call(0) | Derive(0) | Import(0)
src/w/i/winappdbg-1.5/winappdbg/process.py winappdbg(Download)
mappedFilenames = dict() for mbi in memoryMap: if mbi.Type not in (win32.MEM_IMAGE, win32.MEM_MAPPED): continue baseAddress = mbi.BaseAddress
src/w/i/winappdbg-1.5/winappdbg/textio.py winappdbg(Download)
# Type (file mapping, executable image, or private memory). mbiType = mbi.Type if mbiType == win32.MEM_IMAGE: Type = "Image" elif mbiType == win32.MEM_MAPPED:
src/w/i/winappdbg-1.5/winappdbg/sql.py winappdbg(Download)
# Type (file mapping, executable image, or private memory). if mbi.Type == win32.MEM_IMAGE: self.type = "Image" elif mbi.Type == win32.MEM_MAPPED:
def _parse_type(type): if type: if type == "Image": return win32.MEM_IMAGE if type == "Mapped":