Lines Matching refs:port

578 …    internal static int title_softlaunch_with_hint(string os, string tid, string hint, string port)  in title_softlaunch_with_hint()  argument
584 …utor.DoProcess(exe_path, "\"title_softlaunch " + os + " " + tid + " " + hint + "\" -v -p " + port); in title_softlaunch_with_hint()
587 internal static int title_softlaunch(string os, string tid, string port) in title_softlaunch() argument
600 …irectOutput(exe_path, "\"title_softlaunch " + os + " " + tid + "\" -v -p " + port, callback, true); in title_softlaunch()
767 public int port; field
810 Log.WriteLine(string.Format(" port: {0}.", lrparams.port)); in launch_retry_thread()
830 launch(lrparams.port, lrparams.TID_HI, lrparams.TID_LO); in launch_retry_thread()
876 …internal static void launch_retry(int port, string TID_HI, string TID_LO, int retries, int timeout… in launch_retry() argument
883 lrparams.port = port; in launch_retry()
909 internal static int launch(int port, string TID_HI, string TID_LO) in launch() argument
916 TcpClient client = new TcpClient("localhost", port); in launch()
923 …neRaw(string.Format("cafex: sending '{0}' to the devkit using port {1}...", message.Trim(), port)); in launch()
967 int port = Convert.ToInt32(Program.SESSION_NET_MANAGE_PORT.value); in try_launch()
980 launch(port, TID_HI, TID_LO); in try_launch()
1580 string port = Program.SESSION_DEBUG_OUT_PORT.value; in createCattoucan()
1582 Log.WriteLine("cattoucan.start started. port=" + port); in createCattoucan()
1584 if (port.StartsWith("localhost:")) in createCattoucan()
1586 port = port.Remove(0, 10); in createCattoucan()
1589 Log.WriteLine("cattoucan starting to read from port " + port); in createCattoucan()
1591 toucan = new Nintendo.SDSG.CatToucan(Convert.ToInt32(port)); in createCattoucan()
1603 cattoucanThread.Start(port); in createCattoucan()