MCPcopy
hub / github.com/AsahiLinux/m1n1 / call

Method call

proxyclient/m1n1/proxy.py:715–718  ·  view source on GitHub ↗
(self, addr, *args, reboot=False)

Source from the content-addressed store, hash-verified

713 def exit(self, retval=0):
714 self.request(self.P_EXIT, retval)
715 def call(self, addr, *args, reboot=False):
716 if len(args) > 5:
717 raise ValueError("Too many arguments")
718 return self.request(self.P_CALL, addr, *args, reboot=reboot)
719 def reload(self, addr, *args, el1=False):
720 if len(args) > 4:
721 raise ValueError("Too many arguments")

Callers 6

chainload.pyFile · 0.45
bench_cpuFunction · 0.45
test_uart_irqFunction · 0.45
test_irq_routingFunction · 0.45
bench_cpuFunction · 0.45
bench_latencyFunction · 0.45

Calls 1

requestMethod · 0.95

Tested by 2

test_uart_irqFunction · 0.36
test_irq_routingFunction · 0.36