Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 2293) sorted by relevance

12345678910>>...92

/openbsd-src/usr.bin/ssh/
H A Dssh.c124 * General data structure for command line options and options configurable
127 Options options; variable
198 * Expands the set of percent_expand options used by the majority of keywords
212 * Expands the set of percent_expand options used by the majority of keywords
234 * NB. this function must operate with a options having undefined members.
253 hints.ai_family = options.address_family == -1 ? in resolve_host()
254 AF_UNSPEC : options.address_family; in resolve_host()
299 hints.ai_family = options.address_family == -1 ? in is_addr()
300 AF_UNSPEC : options in is_addr()
[all...]
H A Dservconf.c63 static void parse_server_config_depth(ServerOptions *options,
69 /* Initializes the server options to their default values. */
72 initialize_server_options(ServerOptions *options) in initialize_server_options() argument
74 memset(options, 0, sizeof(*options)); in initialize_server_options()
75 options->num_ports = 0; in initialize_server_options()
76 options->ports_from_cmdline = 0; in initialize_server_options()
77 options->queued_listen_addrs = NULL; in initialize_server_options()
78 options->num_queued_listens = 0; in initialize_server_options()
79 options in initialize_server_options()
247 servconf_add_hostkey(const char * file,const int line,ServerOptions * options,const char * path,int userprovided) servconf_add_hostkey() argument
259 servconf_add_hostcert(const char * file,const int line,ServerOptions * options,const char * path) servconf_add_hostcert() argument
269 fill_default_server_options(ServerOptions * options) fill_default_server_options() argument
756 add_listen_addr(ServerOptions * options,const char * addr,const char * rdomain,int port) add_listen_addr() argument
772 add_one_listen_addr(ServerOptions * options,const char * addr,const char * rdomain,int port) add_one_listen_addr() argument
851 queue_listen_addr(ServerOptions * options,const char * addr,const char * rdomain,int port) queue_listen_addr() argument
870 process_queued_listen_addrs(ServerOptions * options) process_queued_listen_addrs() argument
1192 process_server_config_line_depth(ServerOptions * options,char * line,const char * filename,int linenum,int * activep,struct connection_info * connectinfo,int * inc_flags,int depth,struct include_list * includes) process_server_config_line_depth() argument
2612 process_server_config_line(ServerOptions * options,char * line,const char * filename,int linenum,int * activep,struct connection_info * connectinfo,struct include_list * includes) process_server_config_line() argument
2662 parse_server_match_config(ServerOptions * options,struct include_list * includes,struct connection_info * connectinfo) parse_server_match_config() argument
2862 parse_server_config_depth(ServerOptions * options,const char * filename,struct sshbuf * conf,struct include_list * includes,struct connection_info * connectinfo,int flags,int * activep,int depth) parse_server_config_depth() argument
2891 parse_server_config(ServerOptions * options,const char * filename,struct sshbuf * conf,struct include_list * includes,struct connection_info * connectinfo,int reexec) parse_server_config() argument
[all...]
H A Dreadconf.c61 # 1. command line options
106 # Defaults for various options
120 const char *host, const char *original_host, Options *options,
122 static int process_config_line_depth(Options *options, struct passwd *pw,
176 /* Deprecated options */
187 /* Unsupported options */
195 /* Sometimes-unsupported options */
359 * Adds a local TCP/IP port forward to options. Never returns if there is an
364 add_local_forward(Options *options, const struct Forward *newfwd) in add_local_forward()
370 for (i = 0; i < options in add_local_forward()
362 add_local_forward(Options * options,const struct Forward * newfwd) add_local_forward() argument
391 add_remote_forward(Options * options,const struct Forward * newfwd) add_remote_forward() argument
417 clear_forwardings(Options * options) clear_forwardings() argument
447 add_certificate_file(Options * options,const char * path,int userprovided) add_certificate_file() argument
471 add_identity_file(Options * options,const char * dir,const char * filename,int userprovided) add_identity_file() argument
629 match_cfg_line(Options * options,char ** condition,struct passwd * pw,const char * host_arg,const char * original_host,int final_pass,int * want_final_pass,const char * filename,int linenum) match_cfg_line() argument
822 rm_env(Options * options,const char * arg,const char * filename,int linenum) rm_env() argument
1010 process_config_line(Options * options,struct passwd * pw,const char * host,const char * original_host,char * line,const char * filename,int linenum,int * activep,int flags) process_config_line() argument
1020 process_config_line_depth(Options * options,struct passwd * pw,const char * host,const char * original_host,char * line,const char * filename,int linenum,int * activep,int flags,int * want_final_pass,int depth) process_config_line_depth() argument
2409 read_config_file(const char * filename,struct passwd * pw,const char * host,const char * original_host,Options * options,int flags,int * want_final_pass) read_config_file() argument
2421 read_config_file_depth(const char * filename,struct passwd * pw,const char * host,const char * original_host,Options * options,int flags,int * activep,int * want_final_pass,int depth) read_config_file_depth() argument
2486 config_has_permitted_cnames(Options * options) config_has_permitted_cnames() argument
2503 initialize_options(Options * options) initialize_options() argument
2631 fill_default_options_for_canonicalization(Options * options) fill_default_options_for_canonicalization() argument
2646 fill_default_options(Options * options) fill_default_options() argument
[all...]
H A Dsshd.c86 /* Server configuration options. */
87 ServerOptions options; variable
201 children = xcalloc(options.max_startups, sizeof(*children)); in child_alloc()
202 for (i = 0; i < options.max_startups; i++) { in child_alloc()
219 for (i = 0; i < options.max_startups; i++) { in child_register()
227 " slots full", options.max_startups); in child_register()
248 if (++children_active > options.max_startups) in child_register()
297 for (i = 0; i < options.max_startups; i++) { in child_exit()
413 for (i = 0; i < options.max_startups; i++) {
427 for (i = 0; i < options
[all...]
H A Dsshconnect.c69 extern Options options;
81 const char *keyalias = options.host_key_alias ? in expand_proxy_command()
82 options.host_key_alias : host_arg; in expand_proxy_command()
91 "r", options.user, in expand_proxy_command()
117 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
142 if (!debug_flag && options.control_path != NULL && in ssh_proxy_fdpass_connect()
143 options.control_persist && stdfd_devnull(0, 0, 1) == -1) in ssh_proxy_fdpass_connect()
200 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
225 if (!debug_flag && options.control_path != NULL && in ssh_proxy_connect()
226 options in ssh_proxy_connect()
[all...]
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DClang.cpp65 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_C, options::OPT_CC, in CheckPreprocessingOptions()
66 options::OPT_fminimize_whitespace, in CheckPreprocessingOptions()
67 options::OPT_fno_minimize_whitespace)) { in CheckPreprocessingOptions()
68 if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) && in CheckPreprocessingOptions()
69 !Args.hasArg(options::OPT__SLASH_EP) && !D.CCCIsCPP()) { in CheckPreprocessingOptions()
79 if (Args.hasArg(options::OPT_static)) in CheckCodeGenerationOptions()
81 Args.getLastArg(options::OPT_dynamic, options::OPT_mdynamic_no_pic)) in CheckCodeGenerationOptions()
175 Arg *A = Args.getLastArg(options::OPT_mrecip, options::OPT_mrecip_EQ); in ParseMRecip()
279 Arg *A = Args.getLastArg(options::OPT_mprefer_vector_width_EQ); in ParseMPreferVectorWidth()
326 Args.ClaimAllArgs(options::OPT_fexceptions); in addExceptionArgs()
[all …]
H A DFlang.cpp33 CmdArgs, {options::OPT_ffixed_form, options::OPT_ffree_form, in addFortranDialectOptions()
34 options::OPT_ffixed_line_length_EQ, options::OPT_fopenmp, in addFortranDialectOptions()
35 options::OPT_fopenacc, options::OPT_finput_charset_EQ, in addFortranDialectOptions()
36 options::OPT_fimplicit_none, options::OPT_fno_implicit_none, in addFortranDialectOptions()
37 options::OPT_fbackslash, options::OPT_fno_backslash, in addFortranDialectOptions()
38 options::OPT_flogical_abbreviations, in addFortranDialectOptions()
39 options::OPT_fno_logical_abbreviations, in addFortranDialectOptions()
40 options::OPT_fxor_operator, options::OPT_fno_xor_operator, in addFortranDialectOptions()
41 options::OPT_falternative_parameter_statement, in addFortranDialectOptions()
42 options::OPT_fdefault_real_8, options::OPT_fdefault_integer_8, in addFortranDialectOptions()
[all …]
H A DPS4CPU.cpp37 if ((Args.hasFlag(options::OPT_fprofile_arcs, options::OPT_fno_profile_arcs, in addProfileRTArgs()
39 Args.hasFlag(options::OPT_fprofile_generate, in addProfileRTArgs()
40 options::OPT_fno_profile_generate, false) || in addProfileRTArgs()
41 Args.hasFlag(options::OPT_fprofile_generate_EQ, in addProfileRTArgs()
42 options::OPT_fno_profile_generate, false) || in addProfileRTArgs()
43 Args.hasFlag(options::OPT_fprofile_instr_generate, in addProfileRTArgs()
44 options::OPT_fno_profile_instr_generate, false) || in addProfileRTArgs()
45 Args.hasFlag(options::OPT_fprofile_instr_generate_EQ, in addProfileRTArgs()
46 options::OPT_fno_profile_instr_generate, false) || in addProfileRTArgs()
47 Args.hasFlag(options::OPT_fcs_profile_generate, in addProfileRTArgs()
[all …]
H A DAnanas.cpp33 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler); in ConstructJob()
57 Args.ClaimAllArgs(options::OPT_g_Group); in ConstructJob()
59 Args.ClaimAllArgs(options::OPT_emit_llvm); in ConstructJob()
62 Args.ClaimAllArgs(options::OPT_w); in ConstructJob()
67 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
70 if (Args.hasArg(options::OPT_rdynamic)) in ConstructJob()
72 if (Args.hasArg(options::OPT_shared)) { in ConstructJob()
74 } else if (!Args.hasArg(options::OPT_r)) { in ConstructJob()
75 Args.AddAllArgs(CmdArgs, options::OPT_pie); in ConstructJob()
88 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles, in ConstructJob()
[all …]
H A DDragonFly.cpp39 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler); in ConstructJob()
65 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
68 if (Args.hasArg(options::OPT_rdynamic)) in ConstructJob()
70 if (Args.hasArg(options::OPT_shared)) in ConstructJob()
72 else if (!Args.hasArg(options::OPT_r)) { in ConstructJob()
94 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles, in ConstructJob()
95 options::OPT_r)) { in ConstructJob()
96 if (!Args.hasArg(options::OPT_shared)) { in ConstructJob()
97 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
101 if (Args.hasArg(options::OPT_pie)) in ConstructJob()
[all …]
H A DMyriad.cpp51 {options::OPT_I_Group, options::OPT_clang_i_Group, options::OPT_std_EQ, in ConstructJob()
52 options::OPT_D, options::OPT_U, options::OPT_f_Group, in ConstructJob()
53 options::OPT_f_clang_Group, options::OPT_g_Group, options::OPT_M_Group, in ConstructJob()
54 options::OPT_O_Group, options::OPT_W_Group, options::OPT_mcpu_EQ, in ConstructJob()
55 options::OPT_mllvm, options::OPT_Xclang}, in ConstructJob()
56 {options::OPT_fno_split_dwarf_inlining}); in ConstructJob()
57 Args.hasArg(options::OPT_fno_split_dwarf_inlining); // Claim it if present. in ConstructJob()
64 if (Args.getLastArg(options::OPT_MF) && !Args.getLastArg(options::OPT_MT) && in ConstructJob()
67 Arg *A = Args.getLastArg(options::OPT_o); in ConstructJob()
98 const Arg *CPUArg = Args.getLastArg(options::OPT_mcpu_EQ); in ConstructJob()
[all …]
H A DAIX.cpp54 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler); in ConstructJob()
116 if (Args.hasArg(options::OPT_static)) in ConstructJob()
120 if (Args.hasArg(options::OPT_shared)) { in ConstructJob()
128 if (Args.hasFlag(options::OPT_fprofile_arcs, options::OPT_fno_profile_arcs, in ConstructJob()
130 Args.hasFlag(options::OPT_fprofile_generate, in ConstructJob()
131 options::OPT_fno_profile_generate, false) || in ConstructJob()
132 Args.hasFlag(options::OPT_fprofile_generate_EQ, in ConstructJob()
133 options::OPT_fno_profile_generate, false) || in ConstructJob()
134 Args.hasFlag(options::OPT_fprofile_instr_generate, in ConstructJob()
135 options::OPT_fno_profile_instr_generate, false) || in ConstructJob()
[all …]
H A DOpenBSD.cpp95 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler); in ConstructJob()
121 Args.ClaimAllArgs(options::OPT_g_Group); in ConstructJob()
123 Args.ClaimAllArgs(options::OPT_emit_llvm); in ConstructJob()
126 Args.ClaimAllArgs(options::OPT_w); in ConstructJob()
136 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_shared)) { in ConstructJob()
142 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
145 if (Args.hasArg(options::OPT_rdynamic)) in ConstructJob()
148 if (Args.hasArg(options::OPT_shared)) { in ConstructJob()
150 } else if (!Args.hasArg(options::OPT_r)) { in ConstructJob()
156 if (Args.hasArg(options::OPT_pie)) in ConstructJob()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp139 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj); in NSStringSummaryProvider() local
140 options.SetPrefixToken(prefix); in NSStringSummaryProvider()
141 options.SetSuffixToken(suffix); in NSStringSummaryProvider()
149 options.SetLocation(location); in NSStringSummaryProvider()
150 options.SetTargetSP(valobj.GetTargetSP()); in NSStringSummaryProvider()
151 options.SetStream(&stream); in NSStringSummaryProvider()
152 options.SetQuote('"'); in NSStringSummaryProvider()
153 options.SetSourceSize(explicit_length); in NSStringSummaryProvider()
154 options.SetHasSourceSize(has_explicit_length); in NSStringSummaryProvider()
155 options.SetNeedsZeroTermination(false); in NSStringSummaryProvider()
[all …]
/openbsd-src/usr.sbin/dhcpd/
H A Ddhcp.c172 if (((packet->options[DHO_DHCP_CLIENT_IDENTIFIER].len != 0) && in dhcpdiscover()
174 packet->options[DHO_DHCP_CLIENT_IDENTIFIER].data, in dhcpdiscover()
175 packet->options[DHO_DHCP_CLIENT_IDENTIFIER].len)) != in dhcpdiscover()
214 if (packet->options[DHO_DHCP_REQUESTED_ADDRESS].len == 4) in dhcprequest()
216 packet->options[DHO_DHCP_REQUESTED_ADDRESS].data, 4); in dhcprequest()
278 (packet->options[DHO_DHCP_REQUESTED_ADDRESS].len == 4 && in dhcprequest()
355 packet->options[DHO_DHCP_CLIENT_IDENTIFIER].len && in dhcprequest()
356 !memcmp(packet->options[DHO_DHCP_CLIENT_IDENTIFIER].data, in dhcprequest()
395 if (packet->options[DHO_DHCP_REQUESTED_ADDRESS].len) { in dhcprelease()
402 if (packet->options[i].len) { in dhcprelease()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/Arch/
H A DMips.cpp59 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ, in getMipsCPUAndABI()
60 options::OPT_mcpu_EQ)) in getMipsCPUAndABI()
63 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) { in getMipsCPUAndABI()
156 Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float, in getMipsFloatABI()
157 options::OPT_mfloat_abi_EQ)) { in getMipsFloatABI()
158 if (A->getOption().matches(options::OPT_msoft_float)) in getMipsFloatABI()
160 else if (A->getOption().matches(options::OPT_mhard_float)) in getMipsFloatABI()
231 Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC, in getMIPSTargetFeatures()
232 options::OPT_fpic, options::OPT_fno_pic, in getMIPSTargetFeatures()
233 options::OPT_fPIE, options::OPT_fno_PIE, in getMIPSTargetFeatures()
[all …]
H A DRISCV.cpp33 Args.hasArg(options::OPT_menable_experimental_extensions); in getArchFeatures()
70 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { in getRISCVTargetFeatures()
80 if (Args.hasArg(options::OPT_ffixed_x1)) in getRISCVTargetFeatures()
82 if (Args.hasArg(options::OPT_ffixed_x2)) in getRISCVTargetFeatures()
84 if (Args.hasArg(options::OPT_ffixed_x3)) in getRISCVTargetFeatures()
86 if (Args.hasArg(options::OPT_ffixed_x4)) in getRISCVTargetFeatures()
88 if (Args.hasArg(options::OPT_ffixed_x5)) in getRISCVTargetFeatures()
90 if (Args.hasArg(options::OPT_ffixed_x6)) in getRISCVTargetFeatures()
92 if (Args.hasArg(options::OPT_ffixed_x7)) in getRISCVTargetFeatures()
94 if (Args.hasArg(options::OPT_ffixed_x8)) in getRISCVTargetFeatures()
[all …]
H A DX86.cpp26 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) { in getX86TargetCPU()
38 if (const Arg *A = Args.getLastArg(options::OPT__SLASH_arch)) { in getX86TargetCPU()
123 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) { in getX86TargetFeatures()
160 auto SpectreOpt = clang::driver::options::ID::OPT_INVALID; in getX86TargetFeatures()
161 if (Args.hasArgNoClaim(options::OPT_mretpoline, options::OPT_mno_retpoline, in getX86TargetFeatures()
162 options::OPT_mspeculative_load_hardening, in getX86TargetFeatures()
163 options::OPT_mno_speculative_load_hardening)) { in getX86TargetFeatures()
164 if (Args.hasFlag(options::OPT_mretpoline, options::OPT_mno_retpoline, in getX86TargetFeatures()
168 SpectreOpt = options::OPT_mretpoline; in getX86TargetFeatures()
169 } else if (Args.hasFlag(options::OPT_mspeculative_load_hardening, in getX86TargetFeatures()
[all …]
H A DM68k.cpp28 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_mcpu_EQ)) { in getM68kTargetCPU()
52 if (Args.hasArg(clang::driver::options::OPT_m68000)) in getM68kTargetCPU()
54 if (Args.hasArg(clang::driver::options::OPT_m68010)) in getM68kTargetCPU()
56 if (Args.hasArg(clang::driver::options::OPT_m68020)) in getM68kTargetCPU()
58 if (Args.hasArg(clang::driver::options::OPT_m68030)) in getM68kTargetCPU()
60 if (Args.hasArg(clang::driver::options::OPT_m68040)) in getM68kTargetCPU()
62 if (Args.hasArg(clang::driver::options::OPT_m68060)) in getM68kTargetCPU()
77 if (Args.hasArg(options::OPT_ffixed_a0)) in getM68kTargetFeatures()
79 if (Args.hasArg(options::OPT_ffixed_a1)) in getM68kTargetFeatures()
81 if (Args.hasArg(options::OPT_ffixed_a2)) in getM68kTargetFeatures()
[all …]
H A DSparc.cpp85 if (Arg *A = Args.getLastArg(options::OPT_msoft_float, options::OPT_mno_fpu, in getSparcFloatABI()
86 options::OPT_mhard_float, options::OPT_mfpu, in getSparcFloatABI()
87 options::OPT_mfloat_abi_EQ)) { in getSparcFloatABI()
88 if (A->getOption().matches(options::OPT_msoft_float) || in getSparcFloatABI()
89 A->getOption().matches(options::OPT_mno_fpu)) in getSparcFloatABI()
91 else if (A->getOption().matches(options::OPT_mhard_float) || in getSparcFloatABI()
92 A->getOption().matches(options::OPT_mfpu)) in getSparcFloatABI()
121 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) { in getSparcTargetCPU()
127 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_mcpu_EQ)) { in getSparcTargetCPU()
149 if (Arg *A = Args.getLastArg(options::OPT_mfsmuld, options::OPT_mno_fsmuld)) { in getSparcTargetFeatures()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.cpp58 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj); in CharStringSummaryProvider() local
59 options.SetLocation(valobj_addr); in CharStringSummaryProvider()
60 options.SetTargetSP(valobj.GetTargetSP()); in CharStringSummaryProvider()
61 options.SetStream(&stream); in CharStringSummaryProvider()
62 options.SetPrefixToken(getElementTraits(ElemType).first); in CharStringSummaryProvider()
64 if (!StringPrinter::ReadStringAndDumpToStream<ElemType>(options)) in CharStringSummaryProvider()
80 StringPrinter::ReadBufferAndDumpToStreamOptions options(valobj); in CharSummaryProvider() local
88 options.SetData(std::move(data)); in CharSummaryProvider()
89 options.SetStream(&stream); in CharSummaryProvider()
90 options.SetPrefixToken(ElemTraits.first); in CharSummaryProvider()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/
H A Dstate.t19 { options => 'all',
30 { options => 'failed',
37 { options => 'passed',
46 { options => 'last',
56 { options => 'todo',
64 { options => 'hot',
72 { options => 'adrian',
83 { options => 'failed,passed',
94 { options => [ 'failed', 'passed' ],
105 { options => 'slow',
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Usage/scripts/
H A Dpod2usage.PL159 my %options = ();
173 $Pod::Usage::Formatter = $options{formatter} if $options{formatter};
176 pod2usage(1) if ($options{help});
177 pod2usage(VERBOSE => 2) if ($options{man});
189 $usage{-exitval} = $options{'exit'} if (defined $options{'exit'});
190 $usage{-output} = $options{'output'} if (defined $options{'output'});
191 $usage{-verbose} = $options{'verbose'} if (defined $options{'verbose'});
192 $usage{-pathlist} = $options{'pathlist'} if (defined $options{'pathlist'});
193 $usage{-utf8} = $options{'utf8'} if (defined $options{'utf8'});
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dprocess_events.py57 def print_threads(process, options): argument
58 if options.show_threads:
71 if options.stop_on_error:
226 (options, args) = parser.parse_args(argv)
236 if options.env_vars:
237 launch_info.SetEnvironmentEntries(options.env_vars, True)
238 if options.working_dir:
239 launch_info.SetWorkingDirectory(options.working_dir)
240 elif options.attach_pid != -1:
241 if options.run_count == 1:
[all …]
/openbsd-src/gnu/llvm/lldb/examples/darwin/heap_find/
H A Dheap.py27 options, argument
40 if options.search_vm_regions:
109 if options.search_stack:
111 if options.search_segments:
115 if options.search_heap:
161 if options.search_stack:
173 if options.search_segments:
483 def dump_stack_history_entry(options, result, stack_history_entry, idx): argument
512 if idx >= options.max_frames:
515 (options.max_frames))
[all …]

12345678910>>...92