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

Method save

qiling/loader/pe.py:69–74  ·  view source on GitHub ↗
(self, path: str, entry: QlPeCacheEntry)

Source from the content-addressed store, hash-verified

67 return None
68
69 def save(self, path: str, entry: QlPeCacheEntry) -> None:
70 fcache = QlPeCache.cache_filename(path)
71
72 # cache this dll file
73 with open(fcache, "wb") as fcache_file:
74 pickle.dump(entry, fcache_file)
75
76
77class Process:

Callers 2

load_dllMethod · 0.45
call_dll_entrypointMethod · 0.45

Calls 2

cache_filenameMethod · 0.80
dumpMethod · 0.45

Tested by

no test coverage detected