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

Class QlOsNullStats

qiling/os/stats.py:128–142  ·  view source on GitHub ↗

Nullified OS statistics object.

Source from the content-addressed store, hash-verified

126
127
128class QlOsNullStats(QlOsStats):
129 """Nullified OS statistics object.
130 """
131
132 def clear(self):
133 pass
134
135 def summary(self) -> List[str]:
136 return []
137
138 def log_api_call(self, address: int, name: str, params: Mapping, retval: Any, retaddr: int) -> None:
139 pass
140
141 def log_string(self, s: str) -> None:
142 pass
143
144
145class QlWinNullStats(QlOsNullStats):

Calls

no outgoing calls