Exemplo n.º 1
0
 def __init__(self):
   AttributesHandler.__init__(self, "hachoir")
   self.__disown__()
Exemplo n.º 2
0
 def __init__(self):
   AttributesHandler.__init__(self, "exif")
   ModuleProcessusHandler.__init__(self, "metaexif")
   self.exifnodes = []
   self.vfs = VFS.Get()
   self.__disown__()
Exemplo n.º 3
0
 def __init__(self):
     AttributesHandler.__init__(self, "clamdscan")
     ModuleProcessusHandler.__init__(self, "clamdscan")
     self.__disown__()
     self.nodeAttributes = {}
     self.vfs = VFS.Get()
Exemplo n.º 4
0
 def __init__(self):
     AttributesHandler.__init__(self, "metacompound")
     ModuleProcessusHandler.__init__(self, "metacompound")
     self.__disown__()
     self.nodeAttributes = {}
     self.vfs = VFS.Get()
Exemplo n.º 5
0
 def __init__(self):
     AttributesHandler.__init__(self, "skindetection")
     self.skinnodes = {}
     self.__disown__()
Exemplo n.º 6
0
 def __init__(self):
   AttributesHandler.__init__(self, "lnk")
   ModuleProcessusHandler.__init__(self, "lnk")
   self.__disown__()
   self.nodeAttributes = {}
   self.vfs = VFS.Get()
Exemplo n.º 7
0
 def __init__(self):
     AttributesHandler.__init__(self, "exif")
     ModuleProcessusHandler.__init__(self, "metaexif")
     self.exifnodes = []
     self.vfs = VFS.Get()
     self.__disown__()
Exemplo n.º 8
0
 def __init__(self, parent, modname):
   self.__parent = parent
   AttributesHandler.__init__(self, modname)
   self.__lock = threading.Lock()
   self.__hashs = {}
   self.__disown__()	
Exemplo n.º 9
0
 def __init__(self):
     AttributesHandler.__init__(self, "Corrupted")
     self.__disown__()
     self.nodes = []
Exemplo n.º 10
0
 def __init__(self):
     AttributesHandler.__init__(self, "Corrupted")
     self.__disown__()
     self.nodes = []
Exemplo n.º 11
0
Arquivo: hash.py Projeto: kzwkt/dff
 def __init__(self, parent, modname):
    AttributesHandler.__init__(self, modname)
    self.calculatedHash = {}
    self.parent = parent
    self.__disown__()