Searched refs:end_options (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/Commands/
H A DCommandObjectExpression.cpp461 const char *end_options = NULL; local
465 end_options = ::strstr (s, "--");
466 if (end_options)
468 end_options += 2; // Get past the "--"
469 if (::isspace (end_options[0]))
471 expr = end_options;
477 s = end_options;
480 if (end_options)
482 Args args (command, end_options - command);
H A DCommandObjectWatchpoint.cpp1198 const char *end_options = NULL; local
1202 end_options = ::strstr (s, "--");
1203 if (end_options)
1205 end_options += 2; // Get past the "--"
1206 if (::isspace (end_options[0]))
1208 expr = end_options;
1214 s = end_options;
1217 if (end_options)
1219 Args args (raw_command, end_options - raw_command);

Completed in 434 milliseconds