Package winappdbg :: Package win32 :: Module kernel32 :: Class MemoryBasicInformation
[hide private]
[frames] | no frames]

Class MemoryBasicInformation

source code


Memory information object returned by VirtualQueryEx.

Instance Methods [hide private]
 
__init__(self, mbi)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
is_free(self) source code
 
is_reserved(self) source code
 
is_commited(self) source code
 
is_guard(self) source code
 
has_content(self) source code
 
is_readable(self) source code
 
is_writeable(self) source code
 
is_copy_on_write(self) source code
 
is_executable(self) source code
 
is_executable_and_writeable(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  READABLE = 238
  WRITEABLE = 204
  COPY_ON_WRITE = 136
  EXECUTABLE = 240
  EXECUTABLE_AND_WRITEABLE = 192
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, mbi)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)