Home | History | Annotate | Download | only in Commands

Lines Matching refs:Args

20 #include "lldb/Interpreter/Args.h"
95 // HandleArgumentCompletion (Args &input,
183 DoExecute (Args& args,
186 if (args.GetArgumentCount() < 2)
192 std::string channel(args.GetArgumentAtIndex(0));
193 args.Shift (); // Shift off the channel
200 args.GetConstArgumentVector(),
271 DoExecute (Args& args,
274 const size_t argc = args.GetArgumentCount();
283 std::string channel(args.GetArgumentAtIndex(0));
284 args.Shift (); // Shift off the channel
287 log_callbacks.disable (args.GetConstArgumentVector(), &result.GetErrorStream());
299 log_channel_sp->Disable(args.GetConstArgumentVector(), &result.GetErrorStream());
303 result.AppendErrorWithFormat("Invalid log channel '%s'.\n", args.GetArgumentAtIndex(0));
343 DoExecute (Args& args,
346 const size_t argc = args.GetArgumentCount();
358 std::string channel(args.GetArgumentAtIndex(i));
378 result.AppendErrorWithFormat("Invalid log channel '%s'.\n", args.GetArgumentAtIndex(0));
407 DoExecute (Args& args,
410 const size_t argc = args.GetArgumentCount();
415 const char *sub_command = args.GetArgumentAtIndex(0);
442 const char *sub_command = args.GetArgumentAtIndex(0);
447 uint32_t depth = Args::StringToUInt32(args.GetArgumentAtIndex(1), 0, 0, &success);
459 bool increment = Args::StringToBoolean(args.GetArgumentAtIndex(1), false, &success);