Searched defs:option_arg (Results 1 - 25 of 33) sorted by relevance

12

/external/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp62 const char *option_arg)
70 m_arch_str.assign (option_arg);
60 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupBoolean.cpp47 const char *option_arg)
58 error = m_value.SetValueFromCString (option_arg);
45 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupOutputFile.cpp53 const char *option_arg)
61 error = m_file.SetValueFromCString (option_arg);
51 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupPlatform.cpp114 const char *option_arg)
125 m_platform_name.assign (option_arg);
129 if (Args::StringToVersion (option_arg,
132 m_os_version_update) == option_arg)
133 error.SetErrorStringWithFormat ("invalid version string '%s'", option_arg);
137 m_sdk_build.SetCString (option_arg);
141 m_sdk_sysroot.SetCString (option_arg);
112 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupString.cpp48 const char *option_arg)
50 Error error (m_value.SetValueFromCString (option_arg));
46 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupUInt64.cpp48 const char *option_arg)
50 Error error (m_value.SetValueFromCString (option_arg));
46 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupUUID.cpp51 const char *option_arg)
59 error = m_uuid.SetValueFromCString (option_arg);
49 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupFile.cpp47 const char *option_arg)
49 Error error (m_file.SetValueFromCString (option_arg));
87 const char *option_arg)
89 Error error (m_file_list.SetValueFromCString (option_arg));
45 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
85 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupVariable.cpp75 const char *option_arg)
92 error = summary.SetCurrentValue(option_arg);
95 error = summary_string.SetCurrentValue(option_arg);
73 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupWatchpoint.cpp73 const char *option_arg)
82 tmp_watch_type = (WatchType) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
91 watch_size = (uint32_t) Args::StringToOptionEnum(option_arg, g_option_table[option_idx].enum_values, 0, error);
71 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupFormat.cpp73 const char *option_arg)
81 error = m_format.SetValueFromCString (option_arg);
91 error = m_count.SetValueFromCString (option_arg);
93 error.SetErrorStringWithFormat("invalid --count option value '%s'", option_arg);
104 error = m_byte_size.SetValueFromCString (option_arg);
106 error.SetErrorStringWithFormat("invalid --size option value '%s'", option_arg);
113 const char *gdb_format_cstr = option_arg;
119 if (option_arg != end)
140 error.SetErrorStringWithFormat ("invalid gdb format string '%s'", option_arg);
71 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
H A DOptionGroupValueObjectDisplay.cpp66 const char *option_arg)
77 result = Args::StringToOptionEnum (option_arg, g_dynamic_value_types, 2, error);
90 max_depth = Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success);
92 error.SetErrorStringWithFormat("invalid max depth '%s'", option_arg);
96 ptr_depth = Args::StringToUInt32 (option_arg, 0, 0, &success);
98 error.SetErrorStringWithFormat("invalid pointer depth '%s'", option_arg);
102 if (option_arg)
104 no_summary_depth = Args::StringToUInt32 (option_arg, 0, 0, &success);
106 error.SetErrorStringWithFormat("invalid pointer depth '%s'", option_arg);
113 use_synth = Args::StringToBoolean(option_arg, tru
64 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
[all...]
/external/lldb/source/Commands/
H A DCommandObjectHelp.h57 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
H A DCommandObjectArgs.cpp55 CommandObjectArgs::CommandOptions::SetOptionValue (uint32_t option_idx, const char *option_arg) argument
H A DCommandObjectDisassemble.cpp63 CommandObjectDisassemble::CommandOptions::SetOptionValue (uint32_t option_idx, const char *option_arg) argument
78 num_lines_context = Args::StringToUInt32(option_arg, 0, 0, &success);
80 error.SetErrorStringWithFormat ("invalid num context lines string: \"%s\"", option_arg);
84 num_instructions = Args::StringToUInt32(option_arg, 0, 0, &success);
86 error.SetErrorStringWithFormat ("invalid num of instructions string: \"%s\"", option_arg);
96 start_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
104 end_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error);
110 func_name.assign (option_arg);
128 plugin_name.assign (option_arg);
137 flavor_string.assign (option_arg);
[all...]
H A DCommandObjectExpression.cpp71 const char *option_arg)
80 //if (language.SetLanguageFromCString (option_arg) == false)
82 // error.SetErrorStringWithFormat("invalid language option argument '%s'", option_arg);
90 result = Args::StringToBoolean(option_arg, true, &success);
92 error.SetErrorStringWithFormat("invalid all-threads value setting: \"%s\"", option_arg);
101 bool tmp_value = Args::StringToBoolean(option_arg, true, &success);
105 error.SetErrorStringWithFormat("could not convert \"%s\" to a boolean value.", option_arg);
112 result = Args::StringToUInt32(option_arg, 0, 0, &success);
116 error.SetErrorStringWithFormat ("invalid timeout setting \"%s\"", option_arg);
123 bool tmp_value = Args::StringToBoolean(option_arg, tru
69 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_arg) argument
[all...]
H A DCommandObjectLog.cpp134 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
141 case 'f': log_file.SetFile(option_arg, true); break;
H A DCommandObjectBreakpointCommand.cpp421 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
430 m_one_liner = option_arg;
434 m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
452 m_stop_on_error = Args::StringToBoolean(option_arg, false, &success);
454 error.SetErrorStringWithFormat("invalid value for stop-on-error: \"%s\"", option_arg);
462 m_function_name.assign(option_arg);
H A DCommandObjectFrame.cpp113 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
121 relative_frame_offset = Args::StringToSInt32 (option_arg, INT32_MIN, 0, &success);
123 error.SetErrorStringWithFormat ("invalid frame offset argument '%s'", option_arg);
H A DCommandObjectSettings.cpp113 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
H A DCommandObjectWatchpointCommand.cpp398 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
407 m_one_liner = option_arg;
411 m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
429 m_stop_on_error = Args::StringToBoolean(option_arg, false, &success);
431 error.SetErrorStringWithFormat("invalid value for stop-on-error: \"%s\"", option_arg);
439 m_function_name.assign(option_arg);
H A DCommandObjectPlatform.cpp628 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
637 match_info.GetProcessInfo().SetProcessID (Args::StringToUInt32 (option_arg, LLDB_INVALID_PROCESS_ID, 0, &success));
639 error.SetErrorStringWithFormat("invalid process ID string: '%s'", option_arg);
643 match_info.GetProcessInfo().SetParentProcessID (Args::StringToUInt32 (option_arg, LLDB_INVALID_PROCESS_ID, 0, &success));
645 error.SetErrorStringWithFormat("invalid parent process ID string: '%s'", option_arg);
649 match_info.GetProcessInfo().SetUserID (Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success));
651 error.SetErrorStringWithFormat("invalid user ID string: '%s'", option_arg);
655 match_info.GetProcessInfo().SetEffectiveUserID (Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success));
657 error.SetErrorStringWithFormat("invalid effective user ID string: '%s'", option_arg);
661 match_info.GetProcessInfo().SetGroupID (Args::StringToUInt32 (option_arg, UINT32_MA
[all...]
H A DCommandObjectSource.cpp58 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
65 start_line = Args::StringToUInt32 (option_arg, 0);
67 error.SetErrorStringWithFormat("invalid line number: '%s'", option_arg);
71 file_name = option_arg;
166 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
173 start_line = Args::StringToUInt32 (option_arg, 0);
175 error.SetErrorStringWithFormat("invalid line number: '%s'", option_arg);
179 num_lines = Args::StringToUInt32 (option_arg, 0);
181 error.SetErrorStringWithFormat("invalid line count: '%s'", option_arg);
185 file_name = option_arg;
[all...]
H A DCommandObjectWatchpoint.cpp210 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
639 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
648 m_ignore_count = Args::StringToUInt32(option_arg, UINT32_MAX, 0);
650 error.SetErrorStringWithFormat ("invalid ignore count '%s'", option_arg);
796 SetOptionValue (uint32_t option_idx, const char *option_arg) argument
804 if (option_arg != NULL)
805 m_condition.assign (option_arg);
/external/iptables/extensions/
H A Dlibxt_hashlimit.c298 static int parse_mode(uint32_t *mode, const char *option_arg) argument
301 char *arg = strdup(option_arg);

Completed in 221 milliseconds

12