コード例 #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
ファイル: process.py プロジェクト: TheRyuu/sawbuck
  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 = {}