Searched refs:option_value (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValue.cpp327 const OptionValueBoolean *option_value = GetAsBoolean (); local
328 if (option_value)
329 return option_value->GetCurrentValue();
336 OptionValueBoolean *option_value = GetAsBoolean (); local
337 if (option_value)
339 option_value->SetCurrentValue(new_value);
348 const OptionValueEnumeration *option_value = GetAsEnumeration(); local
349 if (option_value)
350 return option_value->GetCurrentValue();
357 OptionValueEnumeration *option_value local
369 const OptionValueFileSpec *option_value = GetAsFileSpec (); local
379 OptionValueFileSpec *option_value = GetAsFileSpec (); local
391 const OptionValueFileSpecList *option_value = GetAsFileSpecList (); local
401 const OptionValueFormat *option_value = GetAsFormat (); local
410 OptionValueFormat *option_value = GetAsFormat (); local
422 const OptionValueRegex *option_value = GetAsRegex (); local
432 const OptionValueSInt64 *option_value = GetAsSInt64 (); local
441 OptionValueSInt64 *option_value = GetAsSInt64 (); local
453 const OptionValueString *option_value = GetAsString (); local
462 OptionValueString *option_value = GetAsString (); local
474 const OptionValueUInt64 *option_value = GetAsUInt64 (); local
483 OptionValueUInt64 *option_value = GetAsUInt64 (); local
495 const OptionValueUUID *option_value = GetAsUUID(); local
504 OptionValueUUID *option_value = GetAsUUID(); local
[all...]
H A DOptionValueDictionary.cpp49 OptionValue *option_value = pos->second.get(); local
63 option_value->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options);
76 option_value->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | extra_dump_options);
H A DOptionValueProperties.cpp615 OptionValue *option_value = property->GetValue().get(); local
616 assert (option_value);
617 const bool transparent_value = option_value->ValueIsTransparent ();
H A DOptions.cpp1035 const char *option_value)
1046 option_value);
1034 SetOptionValue(uint32_t option_idx, const char *option_value) argument
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupUUID.h44 const char *option_value);
H A DOptionGroupArchitecture.h45 const char *option_value);
H A DOptionGroupBoolean.h58 const char *option_value);
H A DOptionGroupOutputFile.h45 const char *option_value);
H A DOptionGroupString.h57 const char *option_value);
H A DOptionGroupUInt64.h57 const char *option_value);
H A DOptionGroupFile.h58 const char *option_value);
116 const char *option_value);
H A DOptionGroupValueObjectDisplay.h45 const char *option_value);
H A DOptionGroupFormat.h53 const char *option_value);
H A DOptionGroupPlatform.h56 const char *option_value);
H A DOptions.h374 const char *option_value) = 0;
/freebsd-10.1-release/sys/kgssapi/
H A Dgss_set_cred_option.c47 const gss_buffer_t option_value)
65 args.option_value = *option_value;
44 gss_set_cred_option(OM_uint32 *minor_status, gss_cred_id_t *cred, const gss_OID option_name, const gss_buffer_t option_value) argument
H A Dgssd.x196 gss_buffer_desc option_value;
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DConnectionFileDescriptor.h134 GetSocketOption(int fd, int level, int option_name, int &option_value);
137 SetSocketOption(int fd, int level, int option_name, int option_value);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.h49 const char *option_value);
H A DCommandObjectRegister.cpp300 const char *option_value)
308 OptionValueSP value_sp (OptionValueUInt64::Create (option_value, error));
298 SetOptionValue(CommandInterpreter &interpreter, uint32_t option_idx, const char *option_value) argument
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_xz.c124 struct option_value { struct
129 static const struct option_value option_values[] = {
325 const struct option_value *val =
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DConnectionFileDescriptor.cpp1625 ConnectionFileDescriptor::GetSocketOption(int fd, int level, int option_name, int &option_value)
1627 get_socket_option_arg_type option_value_p = reinterpret_cast<get_socket_option_arg_type>(&option_value);
1633 ConnectionFileDescriptor::SetSocketOption(int fd, int level, int option_name, int option_value)
1635 set_socket_option_arg_type option_value_p = reinterpret_cast<get_socket_option_arg_type>(&option_value);
1636 return ::setsockopt(fd, level, option_name, option_value_p, sizeof(option_value));
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h1104 const char *option_value);
1140 const char *option_value);
1176 const char *option_value);
/freebsd-10.1-release/contrib/gcc/
H A Dtree-dump.c991 const char *option_value;
998 option_value = skip_leading_substring (arg, doglob ? dfi->glob : dfi->swtch);
999 if (!option_value)
1002 ptr = option_value;
990 const char *option_value; local
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp2925 OptionValuePathMappings *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValuePathMappings (NULL, false, idx); local
2926 assert(option_value);
2927 return option_value->GetCurrentValue();
2934 OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecList (NULL, false, idx); local
2935 assert(option_value);
2936 return option_value->GetCurrentValue();
2943 OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecList (NULL, false, idx); local
2944 assert(option_value);
2945 return option_value->GetCurrentValue();

Completed in 285 milliseconds

12