proxygen
gdb.FiberXMethodMatcher Class Reference
Inheritance diagram for gdb.FiberXMethodMatcher:

Public Member Functions

def __init__ (self)
 
def match (self, class_type, method_name)
 

Public Attributes

 worker
 

Detailed Description

Definition at line 299 of file gdb.py.

Constructor & Destructor Documentation

def gdb.FiberXMethodMatcher.__init__ (   self)

Definition at line 300 of file gdb.py.

300  def __init__(self):
301  super(FiberXMethodMatcher, self).__init__("Fiber method matcher")
303 
def __init__(self)
Definition: gdb.py:300

Member Function Documentation

def gdb.FiberXMethodMatcher.match (   self,
  class_type,
  method_name 
)

Definition at line 304 of file gdb.py.

References gdb.GetFiberXMethodMatcher.worker, and gdb.FiberXMethodMatcher.worker.

304  def match(self, class_type, method_name):
305  if class_type.name == "folly::fibers::Fiber" and \
306  method_name == "activate":
307  return self.worker
308  return None
309 
310 
def match(self, class_type, method_name)
Definition: gdb.py:304

Member Data Documentation

gdb.FiberXMethodMatcher.worker

Definition at line 302 of file gdb.py.

Referenced by gdb.FiberXMethodMatcher.match().


The documentation for this class was generated from the following file: