Lines Matching refs:WriteLine

31             writer.WriteLine();  in PrintHelp()
32 writer.WriteLine("Usage:"); in PrintHelp()
33 writer.WriteLine("- to trace only function call with a registered handler:"); in PrintHelp()
34 … writer.WriteLine("{0} {1} cpuName \"functionName\"".FormatWith(Name, TraceEnableCommand)); in PrintHelp()
35 writer.WriteLine(); in PrintHelp()
36 … writer.WriteLine("- to trace function call and returned value with a registered handler:"); in PrintHelp()
37 … writer.WriteLine("{0} {1} cpuName \"functionName\" true".FormatWith(Name, TraceEnableCommand)); in PrintHelp()
38 writer.WriteLine(); in PrintHelp()
39 … writer.WriteLine("- to trace function call without a handler, with or without return value:"); in PrintHelp()
40 …writer.WriteLine("{0} {1} cpuName \"functionName\" [true|false] [number of parameters]".FormatWith… in PrintHelp()
41 writer.WriteLine(); in PrintHelp()
42 …writer.WriteLine("- to trace function call without a handler, with or without return value, with s… in PrintHelp()
43 …writer.WriteLine("{0} {1} cpuName \"functionName\" [true|false] [list of parameter types]".FormatW… in PrintHelp()
44 …writer.WriteLine("(Note, that if return value is expected, the last parameter type must relate to … in PrintHelp()
45 writer.WriteLine(); in PrintHelp()
46 writer.WriteLine("- to disable tracing of a function:"); in PrintHelp()
47 … writer.WriteLine("{0} {1} cpuName \"functionName\"".FormatWith(Name, TraceDisableCommand)); in PrintHelp()
48 writer.WriteLine(); in PrintHelp()
49 writer.WriteLine("Handlers available for functions:"); in PrintHelp()
50 writer.WriteLine(handlers.Keys.Select(x => "- " + x).Stringify("\r\n")); in PrintHelp()
51 writer.WriteLine(); in PrintHelp()
52 writer.WriteLine("Possible values for parameter types:"); in PrintHelp()
53 …writer.WriteLine(Enum.GetNames(typeof(FunctionCallParameterType)).Where(x => !x.Contains("Array"))… in PrintHelp()