Home | History | Annotate | Download | only in Commands

Lines Matching refs:Args

130                         m_load_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
140 m_column = Args::StringToUInt32 (option_arg, 0);
188 m_catch_bp = Args::StringToBoolean (option_arg, true, &success);
195 m_ignore_count = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
205 value = Args::StringToBoolean (option_arg, true, &success);
217 m_line_num = Args::StringToUInt32 (option_arg, 0);
259 m_thread_id = Args::StringToUInt64(option_arg, LLDB_INVALID_THREAD_ID, 0);
272 m_throw_bp = Args::StringToBoolean (option_arg, true, &success);
280 m_thread_index = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
356 DoExecute (Args& command,
775 m_ignore_count = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
783 value = Args::StringToBoolean(option_arg, false, &success);
802 m_thread_id = Args::StringToUInt64(option_arg, LLDB_INVALID_THREAD_ID, 0);
833 m_thread_index = Args::StringToUInt32 (option_arg, UINT32_MAX, 0);
900 DoExecute (Args& command, CommandReturnObject &result)
1030 DoExecute (Args& command, CommandReturnObject &result)
1150 DoExecute (Args& command, CommandReturnObject &result)
1331 DoExecute (Args& command, CommandReturnObject &result)
1478 m_line_num = Args::StringToUInt32 (option_arg, 0);
1515 DoExecute (Args& command, CommandReturnObject &result)
1646 DoExecute (Args& command, CommandReturnObject &result)
1771 CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (Args &args, Target *target, CommandReturnObject &result,
1774 // args can be strings representing 1). integers (for breakpoint ids)
1778 // If args is empty, we will use the last created breakpoint (if there is one.)
1780 Args temp_args;
1782 if (args.GetArgumentCount() == 0)
1797 // Create a new Args variable to use; copy any non-breakpoint-id-ranges stuff directly from the old ARGS to
1801 BreakpointIDList::FindAndReplaceIDRanges (args, target, result, temp_args);
1812 // Now that we've converted everything from args into a list of breakpoint ids, go through our tentative list