Lines Matching refs:rpcclt
337 def start_remote_debugger(rpcclt, pyshell):
353 idb_adap_oid = rpcclt.remotecall("exec", "start_the_debugger",\
355 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
357 gui_adap = GUIAdapter(rpcclt, gui)
358 rpcclt.register(gui_adap_oid, gui_adap)
361 def close_remote_debugger(rpcclt):
370 close_subprocess_debugger(rpcclt)
371 rpcclt.unregister(gui_adap_oid)
373 def close_subprocess_debugger(rpcclt):
374 rpcclt.remotecall("exec", "stop_the_debugger", (idb_adap_oid,), {})
376 def restart_subprocess_debugger(rpcclt):
377 idb_adap_oid_ret = rpcclt.remotecall("exec", "start_the_debugger",\