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

  /external/chromium_org/tools/android/asan/
asan_device_setup.sh 17 extra_options=
22 echo "usage: $0 [--revert] [--device device-id] [--lib path] [--extra_options options]"
25 echo " --extra_options: Extra ASAN_OPTIONS."
43 extra_options="$1"
148 if [[ x$extra_options != x ]] ; then
149 ASAN_OPTIONS="$ASAN_OPTIONS,$extra_options"
  /external/compiler-rt/lib/asan/scripts/
asan_device_setup 17 extra_options=
43 extra_options="$1"
148 if [[ x$extra_options != x ]] ; then
149 ASAN_OPTIONS="$ASAN_OPTIONS,$extra_options"
  /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/chromium_org/third_party/webrtc/modules/video_coding/main/source/
video_sender_unittest.cc 399 Config extra_options;
400 extra_options.Set<TemporalLayers::Factory>(
403 codec.extra_options = &extra_options;
codec_database.cc 311 new_send_codec.extra_options != send_codec_.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/
options.c 179 static struct option_list *extra_options = NULL; variable in typeref:struct:option_list
602 for (list = extra_options; list != NULL; list = list->next)
849 list->next = extra_options;
850 extra_options = list;
1001 for (list = extra_options; list != NULL; list = list->next)
    [all...]
auth.c 154 static struct wordlist *extra_options; variable in typeref:struct:wordlist
817 if (extra_options) {
818 options_from_list(extra_options, 1);
819 free_wordlist(extra_options);
820 extra_options = 0;
    [all...]
  /external/chromium_org/third_party/webrtc/
common_types.h 664 Config* extra_options; member in struct:webrtc::VideoCodec
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
vp8_impl.cc 153 // TODO(andresp): assert(inst->extra_options) and cleanup.
156 inst->extra_options ? *inst->extra_options : default_options;
  /external/chromium_org/third_party/webrtc/video_engine/
vie_encoder.cc 327 // raw pointer to an |extra_options| that's long gone. Clearing it here is
330 current_send_codec.extra_options = NULL;

Completed in 540 milliseconds