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

Method fd_write

qiling/os/posix/kernel_proxy/ipc.py:179–181  ·  view source on GitHub ↗
(self, proxy_fd: int, data: bytes)

Source from the content-addressed store, hash-verified

177 return data
178
179 def fd_write(self, proxy_fd: int, data: bytes) -> int:
180 retval, _ = self._fd_op(FdOp.WRITE, proxy_fd, data=data)
181 return retval
182
183 def fd_close(self, proxy_fd: int) -> None:
184 self._fd_op(FdOp.CLOSE, proxy_fd)

Callers 1

writeMethod · 0.80

Calls 1

_fd_opMethod · 0.95

Tested by

no test coverage detected