MCPcopy Index your code
hub / github.com/mitmproxy/mitmproxy / FAnd

Class FAnd

mitmproxy/flowfilter.py:522–532  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

520
521
522class FAnd(_Token):
523 def __init__(self, lst):
524 self.lst = lst
525
526 def dump(self, indent=0, fp=sys.stdout):
527 super().dump(indent, fp)
528 for i in self.lst:
529 i.dump(indent + 1, fp)
530
531 def __call__(self, f):
532 return all(i(f) for i in self.lst)
533
534
535class FOr(_Token):

Callers 1

_makeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…