示例#1
0
文件: process.py 项目: respu/syzygy
    def __init__(self, no_pruning=False):
        """Initializes a new database.

    Args:
      no_pruning: if true, process and thread information is maintained past
          process/thread end events.
    """
        EventConsumer.__init__(self)
        self._no_pruning = no_pruning
        # Processes by id maps from process ID to command line.
        self._processes_by_id = {}
        # Threads by id maps from thread ID to owning process ID.
        self._threads_by_id = {}
示例#2
0
  def __init__(self, no_pruning=False):
    """Initializes a new database.

    Args:
      no_pruning: if true, process and thread information is maintained past
          process/thread end events.
    """
    EventConsumer.__init__(self)
    self._no_pruning = no_pruning
    # Processes by id maps from process ID to command line.
    self._processes_by_id = {}
    # Threads by id maps from thread ID to owning process ID.
    self._threads_by_id = {}
示例#3
0
文件: file.py 项目: yanxxd/syzygy
 def __init__(self):
     EventConsumer.__init__(self)
     # Maps from file object to file name.
     self._file_objects = {}
示例#4
0
文件: module.py 项目: L4ys/syzygy
 def __init__(self):
   EventConsumer.__init__(self)
   self._processes = {}
示例#5
0
文件: file.py 项目: L4ys/syzygy
 def __init__(self):
   EventConsumer.__init__(self)
   # Maps from file object to file name.
   self._file_objects = {}
示例#6
0
文件: module.py 项目: yanxxd/syzygy
 def __init__(self):
     EventConsumer.__init__(self)
     self._processes = {}