Searched refs:extra_options (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/tools/android/asan/
H A Dasan_device_setup.sh17 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/
H A Dasan_device_setup17 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/
H A DTestBreakpointCommand.py94 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/
H A Dlldbutil.py301 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/
H A Dvideo_sender_unittest.cc402 Config extra_options;
403 extra_options.Set<TemporalLayers::Factory>(
406 codec.extra_options = &extra_options;
H A Dcodec_database.cc353 new_send_codec.extra_options != send_codec_.extra_options) {
/external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
H A DTestBreakpointConditions.py70 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/
H A DTestBreakpointIgnoreCount.py59 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/
H A Doptions.c179 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)
H A Dauth.c154 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;
2022 * and leaves the following words in extra_options.
2043 if (extra_options != NULL)
2044 free_wordlist(extra_options);
2045 extra_options = opts;
/external/chromium_org/third_party/webrtc/
H A Dcommon_types.h689 Config* extra_options; member in struct:webrtc::VideoCodec
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_impl.cc154 // TODO(andresp): assert(inst->extra_options) and cleanup.
157 inst->extra_options ? *inst->extra_options : default_options;
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_encoder.cc309 // raw pointer to an |extra_options| that's long gone. Clearing it here is
312 current_send_codec.extra_options = NULL;

Completed in 436 milliseconds