MCPcopy Create free account
hub / github.com/qilingframework/qiling / add

Method add

qiling/hw/utils/access.py:37–40  ·  view source on GitHub ↗
(self, access: Access)

Source from the content-addressed store, hash-verified

35 self.maxlen = maxlen
36
37 def add(self, access: Access):
38 self.deque.append(access)
39 while len(self.deque) > self.maxlen:
40 self.deque.popleft()
41
42 def match(self, pattern: List[Access]) -> bool:
43 if len(pattern) > len(self.deque):

Callers 2

readMethod · 0.45
writeMethod · 0.45

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected