Lines Matching refs:rpcclt
346 def start_remote_debugger(rpcclt, pyshell):
362 idb_adap_oid = rpcclt.remotecall("exec", "start_the_debugger",\
364 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
366 gui_adap = GUIAdapter(rpcclt, gui)
367 rpcclt.register(gui_adap_oid, gui_adap)
370 def close_remote_debugger(rpcclt):
379 close_subprocess_debugger(rpcclt)
380 rpcclt.unregister(gui_adap_oid)
382 def close_subprocess_debugger(rpcclt):
383 rpcclt.remotecall("exec", "stop_the_debugger", (idb_adap_oid,), {})
385 def restart_subprocess_debugger(rpcclt):
386 idb_adap_oid_ret = rpcclt.remotecall("exec", "start_the_debugger",\