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

Method open_ql_file

qiling/os/mapper.py:129–133  ·  view source on GitHub ↗
(self, vpath: str, flags: int, mode: int)

Source from the content-addressed store, hash-verified

127 return opener(hpath, *args)
128
129 def open_ql_file(self, vpath: str, flags: int, mode: int):
130 absvpath = self.path.virtual_abspath(vpath)
131 opener = self.__open_mapped if self.has_mapping(absvpath) else self.__open_new
132
133 return opener(absvpath, ql_file.open, flags, mode)
134
135 def open(self, vpath: str, mode: str):
136 absvpath = self.path.virtual_abspath(vpath)

Callers 2

__do_openFunction · 0.80
ql_syscall_open_nocancelFunction · 0.80

Calls 2

has_mappingMethod · 0.95
virtual_abspathMethod · 0.80

Tested by

no test coverage detected