Python volatility.obj.BaseObject() Examples
The following are 5
code examples of volatility.obj.BaseObject().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
volatility.obj
, or try the search function
.
Example #1
Source File: basic.py From aumfor with GNU General Public License v3.0 | 5 votes |
def __init__(self, theType, offset, vm = None, encoding = 'ascii', length = 1, parent = None, profile = None, **kwargs): ## Allow length to be a callable: if callable(length): length = length(parent) self.length = length self.encoding = encoding ## length must be an integer obj.BaseObject.__init__(self, theType, offset, vm, parent = parent, profile = profile, **kwargs)
Example #2
Source File: basic.py From volatility with GNU General Public License v2.0 | 5 votes |
def __init__(self, theType, offset, vm = None, encoding = 'ascii', length = 1, parent = None, profile = None, **kwargs): ## Allow length to be a callable: if callable(length): length = length(parent) self.length = length self.encoding = encoding ## length must be an integer obj.BaseObject.__init__(self, theType, offset, vm, parent = parent, profile = profile, **kwargs)
Example #3
Source File: basic.py From vortessence with GNU General Public License v2.0 | 5 votes |
def __init__(self, theType, offset, vm = None, encoding = 'ascii', length = 1, parent = None, profile = None, **kwargs): ## Allow length to be a callable: if callable(length): length = length(parent) self.length = length self.encoding = encoding ## length must be an integer obj.BaseObject.__init__(self, theType, offset, vm, parent = parent, profile = profile, **kwargs)
Example #4
Source File: basic.py From DAMM with GNU General Public License v2.0 | 5 votes |
def __init__(self, theType, offset, vm = None, encoding = 'ascii', length = 1, parent = None, profile = None, **kwargs): ## Allow length to be a callable: if callable(length): length = length(parent) self.length = length self.encoding = encoding ## length must be an integer obj.BaseObject.__init__(self, theType, offset, vm, parent = parent, profile = profile, **kwargs)
Example #5
Source File: basic.py From volatility with GNU General Public License v2.0 | 5 votes |
def __init__(self, theType, offset, vm = None, encoding = 'ascii', length = 1, parent = None, profile = None, **kwargs): ## Allow length to be a callable: if callable(length): length = length(parent) self.length = length self.encoding = encoding ## length must be an integer obj.BaseObject.__init__(self, theType, offset, vm, parent = parent, profile = profile, **kwargs)