Home
last modified time | relevance | path

Searched refs:option_value (Results 1 – 25 of 28) sorted by relevance

12

/external/lldb/source/Interpreter/
DOptionValue.cpp327 const OptionValueBoolean *option_value = GetAsBoolean (); in GetBooleanValue() local
328 if (option_value) in GetBooleanValue()
329 return option_value->GetCurrentValue(); in GetBooleanValue()
336 OptionValueBoolean *option_value = GetAsBoolean (); in SetBooleanValue() local
337 if (option_value) in SetBooleanValue()
339 option_value->SetCurrentValue(new_value); in SetBooleanValue()
348 const OptionValueEnumeration *option_value = GetAsEnumeration(); in GetEnumerationValue() local
349 if (option_value) in GetEnumerationValue()
350 return option_value->GetCurrentValue(); in GetEnumerationValue()
357 OptionValueEnumeration *option_value = GetAsEnumeration(); in SetEnumerationValue() local
[all …]
DOptionValueDictionary.cpp49 OptionValue *option_value = pos->second.get(); in DumpValue() local
63 option_value->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options); in DumpValue()
76option_value->DumpValue(exe_ctx, strm, (dump_mask & (~eDumpOptionType)) | extra_dump_options); in DumpValue()
DOptionValueProperties.cpp615 OptionValue *option_value = property->GetValue().get(); in DumpValue() local
616 assert (option_value); in DumpValue()
617 const bool transparent_value = option_value->ValueIsTransparent (); in DumpValue()
/external/protobuf/src/google/protobuf/compiler/javanano/
Djavanano_generator.cc110 string option_value = TrimString(options[i].second); in Generate() local
112 output_list_file = option_value; in Generate()
115 SplitStringUsing(option_value, "|", &parts); in Generate()
118 + option_value + "'"; in Generate()
124 SplitStringUsing(option_value, "|", &parts); in Generate()
128 + option_value + "'"; in Generate()
133 params.set_store_unknown_fields(option_value == "true"); in Generate()
135 params.set_override_java_multiple_files(option_value == "true"); in Generate()
137 params.set_generate_has(option_value == "true"); in Generate()
139 params.set_java_enum_style(option_value == "java"); in Generate()
[all …]
/external/lldb/include/lldb/Interpreter/
DOptionGroupFile.h58 const char *option_value);
116 const char *option_value);
DOptionGroupUUID.h44 const char *option_value);
DOptionGroupOutputFile.h45 const char *option_value);
DOptionGroupArchitecture.h45 const char *option_value);
DOptionGroupBoolean.h58 const char *option_value);
DOptionGroupUInt64.h57 const char *option_value);
DOptionGroupString.h57 const char *option_value);
DOptionGroupValueObjectDisplay.h45 const char *option_value);
DOptionGroupFormat.h53 const char *option_value);
DOptionGroupPlatform.h56 const char *option_value);
DOptions.h375 const char *option_value) = 0;
/external/lldb/include/lldb/Core/
DConnectionFileDescriptor.h125 GetSocketOption(int fd, int level, int option_name, int &option_value);
128 SetSocketOption(int fd, int level, int option_name, int option_value);
/external/libvpx/libvpx/vpx/src/
Dsvc_encodeframe.c367 char *option_value; in parse_options() local
378 option_value = strtok_r(NULL, " ", &input_ptr); in parse_options()
379 if (option_value == NULL) { in parse_options()
386 svc_ctx->spatial_layers = atoi(option_value); in parse_options()
388 res = parse_scale_factors(svc_ctx, option_value); in parse_options()
391 res = parse_quantizer_values(svc_ctx, option_value); in parse_options()
394 res = parse_auto_alt_ref(svc_ctx, option_value); in parse_options()
/external/lldb/tools/debugserver/source/
DRNBSocket.cpp310 RNBSocket::SetSocketOption(int fd, int level, int option_name, int option_value) in SetSocketOption() argument
312 return ::setsockopt(fd, level, option_name, &option_value, sizeof(option_value)); in SetSocketOption()
DRNBSocket.h66 static int SetSocketOption(int fd, int level, int option_name, int option_value);
/external/lldb/source/Commands/
DCommandObjectExpression.h46 const char *option_value);
DCommandObjectRegister.cpp299 const char *option_value) in SetOptionValue() argument
307 OptionValueSP value_sp (OptionValueUInt64::Create (option_value, error)); in SetOptionValue()
/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwinKernel.cpp216 …OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecLi… in GetKextDirectories() local
217 assert(option_value); in GetKextDirectories()
218 return option_value->GetCurrentValue(); in GetKextDirectories()
/external/lldb/source/Core/
DConnectionFileDescriptor.cpp1442 ConnectionFileDescriptor::GetSocketOption(int fd, int level, int option_name, int &option_value) in GetSocketOption() argument
1444 …get_socket_option_arg_type option_value_p = static_cast<get_socket_option_arg_type>(&option_value); in GetSocketOption()
1450 ConnectionFileDescriptor::SetSocketOption(int fd, int level, int option_name, int option_value) in SetSocketOption() argument
1452 …set_socket_option_arg_type option_value_p = static_cast<get_socket_option_arg_type>(&option_value); in SetSocketOption()
1453 return ::setsockopt(fd, level, option_name, option_value_p, sizeof(option_value)); in SetSocketOption()
/external/lldb/source/Target/
DTarget.cpp2634 …OptionValuePathMappings *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValuePathMappin… in GetSourcePathMap() local
2635 assert(option_value); in GetSourcePathMap()
2636 return option_value->GetCurrentValue(); in GetSourcePathMap()
2643 …OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecLi… in GetExecutableSearchPaths() local
2644 assert(option_value); in GetExecutableSearchPaths()
2645 return option_value->GetCurrentValue(); in GetExecutableSearchPaths()
2652 …OptionValueFileSpecList *option_value = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpecLi… in GetDebugFileSearchPaths() local
2653 assert(option_value); in GetDebugFileSearchPaths()
2654 return option_value->GetCurrentValue(); in GetDebugFileSearchPaths()
/external/ppp/pppd/
Doptions.c84 struct option_value { struct
85 struct option_value *next; argument
796 struct option_value *ovp, *pp;
979 struct option_value *ovp;
981 ovp = (struct option_value *) opt->addr2;

12