Fakes a database of volatile Crash objects, trying to mimic part of
it's interface, but doesn't actually store anything.
|
|
__init__(self,
allowRepeatedKeys=True)
Fake containers don't store Crash
objects, but they implement the interface properly. |
source code
|
|
|
bool
|
|
|
int
|
|
|
bool
|
|
|
|
|
|
bool
|
|
|
iterator
|
|
|
|
|
|
iterator
|
|
|
Crash
object.
|
|
|
iterator
|
|
|
str or buffer
|
|
|
str
|
|
|
|
|
|
|
|
|
Crash
key.
|
|
|
Crash
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|
|
bool
|
binaryKeys = False
True to marshall keys to binary format (the Python
buffer type), False to use text marshalled
keys (str type).
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
binaryValues = False
True to marshall values to binary format (the Python
buffer type), False to use text marshalled
values (str type).
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
compressKeys = False
True to compress keys when marshalling,
False to leave them uncompressed.
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
compressValues = True
True to compress values when marshalling,
False to leave them uncompressed.
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
escapeKeys = False
True to escape keys when marshalling, False
to leave them uncompressed.
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
escapeValues = False
True to escape values when marshalling,
False to leave them uncompressed.
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
optimizeKeys = False
True to optimize the marshalling of keys,
False otherwise.
(Inherited from winappdbg.crash.CrashContainer)
|
|
bool
|
optimizeValues = True
True to optimize the marshalling of keys,
False otherwise.
(Inherited from winappdbg.crash.CrashContainer)
|