Home
last modified time | relevance | path

Searched refs:var_type (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVariable.cpp70 Type *var_type = m_variable_sp->GetType(); in GetCompilerTypeImpl() local
71 if (var_type) in GetCompilerTypeImpl()
72 return var_type->GetForwardCompilerType(); in GetCompilerTypeImpl()
77 Type *var_type = m_variable_sp->GetType(); in GetTypeName() local
78 if (var_type) in GetTypeName()
79 return var_type->GetName(); in GetTypeName()
84 Type *var_type = m_variable_sp->GetType(); in GetDisplayTypeName() local
85 if (var_type) in GetDisplayTypeName()
86 return var_type->GetForwardCompilerType().GetDisplayTypeName(); in GetDisplayTypeName()
91 Type *var_type = m_variable_sp->GetType(); in GetQualifiedTypeName() local
[all …]
/freebsd/lib/libmt/
H A Dmtlib.c116 entry->var_type = MT_TYPE_INT; in mt_start_element()
118 entry->var_type = MT_TYPE_UINT; in mt_start_element()
120 entry->var_type = MT_TYPE_STRING; in mt_start_element()
122 entry->var_type = MT_TYPE_NODE; in mt_start_element()
189 switch(entry->var_type) { in mt_end_element()
237 entry->value, entry->fmt, entry->size, entry->var_type, in mt_status_tree_sbuf()
392 switch(entry->var_type) { in mt_entry_sbuf()
454 if (entry->var_type == MT_TYPE_NODE) in mt_param_entry_sbuf()
480 if (entry->var_type == MT_TYPE_NODE) in mt_param_entry_print()
H A Dmtlib.h58 mt_variable_type var_type; member
/freebsd/usr.bin/mt/
H A Dmt.c1072 switch (entry->var_type) { in mt_set_param()
1099 errx(1, "Unknown parameter type %d for %s", entry->var_type, in mt_set_param()
1256 if (((supported_entry->var_type == MT_TYPE_INT) in mt_protect()
1258 || ((supported_entry->var_type == MT_TYPE_UINT) in mt_protect()
1285 if (entry->var_type != MT_TYPE_UINT) in mt_protect()
1288 entry->var_type); in mt_protect()
1393 if (entry->var_type == MT_TYPE_NODE) { in mt_print_density_entry()
/freebsd/usr.bin/rpcgen/
H A Drpc_svcout.c88 const char *var_type; in write_most() local
89 var_type = (nomain? "extern" : "static"); in write_most()
90 f_print(fout, "%s int _rpcpmstart;", var_type); in write_most()
93 f_print(fout, "%s int _rpcfdtype;", var_type); in write_most()
/freebsd/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_data_sprom.c460 bhnd_nvram_type var_type, raw_type; in bhnd_nvram_sprom_write_var() local
474 var_ptr = bhnd_nvram_val_bytes(&bcm_val, &var_len, &var_type); in bhnd_nvram_sprom_write_var()
488 raw_type = bhnd_nvram_raw_type(var_type); in bhnd_nvram_sprom_write_var()
498 bhnd_nvram_type_name(var_type), in bhnd_nvram_sprom_write_var()
/freebsd/sys/contrib/dev/mediatek/mt76/mt7996/
H A Dinit.c1144 u8 var_type; in mt7996_variant_type_init() local
1149 var_type = MT7996_VAR_TYPE_233; in mt7996_variant_type_init()
1151 var_type = MT7996_VAR_TYPE_444; in mt7996_variant_type_init()
1155 var_type = MT7992_VAR_TYPE_23; in mt7996_variant_type_init()
1157 var_type = MT7992_VAR_TYPE_44; in mt7996_variant_type_init()
1162 var_type = MT7990_VAR_TYPE_23; in mt7996_variant_type_init()
1168 dev->var.type = var_type; in mt7996_variant_type_init()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp575 if (Type *var_type = var_sp->GetType()) in GetValueForVariableExpressionPath() local
576 if (auto compiler_type = var_type->GetForwardCompilerType()) in GetValueForVariableExpressionPath()
598 Type *var_type = variable_sp->GetType(); in GetValueForVariableExpressionPath() local
599 if (!var_type) in GetValueForVariableExpressionPath()
602 if (!var_type->GetForwardCompilerType().IsAnonymousType()) in GetValueForVariableExpressionPath()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1474 Type *var_type = var->GetType(); in GetVariableValue() local
1476 if (!var_type) { in GetVariableValue()
1481 CompilerType var_clang_type = var_type->GetFullCompilerType(); in GetVariableValue()
1488 auto ts = var_type->GetForwardCompilerType().GetTypeSystem(); in GetVariableValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2799 Type *var_type = die.ResolveTypeUID(attrs.encoding_form.Reference()); in CreateStaticMemberVariable() local
2801 if (!var_type) in CreateStaticMemberVariable()
2807 CompilerType ct = var_type->GetForwardCompilerType(); in CreateStaticMemberVariable()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h959 const CompilerType &var_type,
H A DTypeSystemClang.cpp7639 const CompilerType &var_type, AccessType access) { in AddVariableToRecordType() argument
7640 if (!type.IsValid() || !var_type.IsValid()) in AddVariableToRecordType()
7661 var_decl->setType(ClangUtil::GetQualType(var_type)); in AddVariableToRecordType()