MCPcopy Index your code
hub / github.com/cirosantilli/linux-kernel-module-cheat / setup

Method setup

common.py:1021–1029  ·  view source on GitHub ↗

Similar to timed_main, but gets run only once for all --arch and --emulator, before timed_main. Different from __init__, since at this point env has already been calculated, so variables that don't depend on --arch or --emulator can be used.

(self)

Source from the content-addressed store, hash-verified

1019 )
1020
1021 def setup(self):
1022 '''
1023 Similar to timed_main, but gets run only once for all --arch and --emulator,
1024 before timed_main.
1025
1026 Different from __init__, since at this point env has already been calculated,
1027 so variables that don't depend on --arch or --emulator can be used.
1028 '''
1029 pass
1030
1031 def timed_main(self):
1032 '''

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected