HomeSort by relevance Sort by last modified time
    Searched refs:extra_options (Results 1 - 7 of 7) sorted by null

  /external/lldb/test/functionalities/breakpoint/breakpoint_command/
TestBreakpointCommand.py 94 lldbutil.run_break_set_by_regexp (self, r"._MyFunction", extra_options="-f a.c", num_expected_locations=1)
96 lldbutil.run_break_set_by_regexp (self, r"._MyFunction", extra_options="-f a.c -f b.c", num_expected_locations=2)
99 lldbutil.run_break_set_by_source_regexp (self, r"is about to return [12]0", extra_options="-f a.c -f b.c", num_expected_locations=2)
101 lldbutil.run_break_set_by_source_regexp (self, r"is about to return [12]0", extra_options="-f a.c", num_expected_locations=1)
  /external/lldb/test/
lldbutil.py 301 def run_break_set_by_file_and_line (test, file_name, line_number, extra_options = None, num_expected_locations = 1, loc_exact=False, module_name=None):
304 If extra_options is not None, then we append it to the breakpoint set command.
318 if extra_options:
319 command += " " + extra_options
330 def run_break_set_by_symbol (test, symbol, extra_options = None, num_expected_locations = -1, sym_exact = False, module_name=None):
339 if extra_options:
340 command += " " + extra_options
351 def run_break_set_by_selector (test, selector, extra_options = None, num_expected_locations = -1, module_name=None):
359 if extra_options:
360 command += " " + extra_options
    [all...]
  /external/compiler-rt/lib/asan/scripts/
asan_device_setup 18 extra_options=
117 extra_options="$1"
268 if [[ x$extra_options != x ]] ; then
269 ASAN_OPTIONS="$ASAN_OPTIONS,$extra_options"
  /external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
TestBreakpointConditions.py 70 lldbutil.run_break_set_by_symbol (self, "c", extra_options="-c 'val == 3'", num_expected_locations=1, sym_exact=True)
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
TestBreakpointIgnoreCount.py 59 lldbutil.run_break_set_by_file_and_line (self, 'main.c', self.line1, extra_options='-i 1', num_expected_locations=1, loc_exact=True)
  /external/ppp/pppd/
auth.c 149 static struct wordlist *extra_options; variable in typeref:struct:wordlist
842 if (extra_options) {
843 options_from_list(extra_options, 1);
844 free_wordlist(extra_options);
845 extra_options = 0;
    [all...]
options.c 191 static struct option_list *extra_options = NULL; variable in typeref:struct:option_list
628 for (list = extra_options; list != NULL; list = list->next)
886 list->next = extra_options;
887 extra_options = list;
1035 for (list = extra_options; list != NULL; list = list->next)
    [all...]

Completed in 898 milliseconds