Home
last modified time | relevance | path

Searched refs:type_name (Results 1 – 25 of 78) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBTypeCategory.cpp309 if (!type_name.IsValid()) in AddTypeFormat()
320 LLDB_INSTRUMENT_VA(this, type_name); in DeleteTypeFormat()
325 if (!type_name.IsValid()) in DeleteTypeFormat()
338 if (!type_name.IsValid()) in AddTypeSummary()
383 LLDB_INSTRUMENT_VA(this, type_name); in DeleteTypeSummary()
388 if (!type_name.IsValid()) in DeleteTypeSummary()
401 if (!type_name.IsValid()) in AddTypeFilter()
412 LLDB_INSTRUMENT_VA(this, type_name); in DeleteTypeFilter()
417 if (!type_name.IsValid()) in DeleteTypeFilter()
430 if (!type_name.IsValid()) in AddTypeSynthetic()
[all …]
H A DSBDebugger.cpp1622 SBTypeFormat SBDebugger::GetFormatForType(SBTypeNameSpecifier type_name) { in GetFormatForType() argument
1623 LLDB_INSTRUMENT_VA(this, type_name); in GetFormatForType()
1627 return default_category_sb.GetFormatForType(type_name); in GetFormatForType()
1632 LLDB_INSTRUMENT_VA(this, type_name); in GetSummaryForType()
1634 if (!type_name.IsValid()) in GetSummaryForType()
1639 SBTypeFilter SBDebugger::GetFilterForType(SBTypeNameSpecifier type_name) { in GetFilterForType() argument
1640 LLDB_INSTRUMENT_VA(this, type_name); in GetFilterForType()
1642 if (!type_name.IsValid()) in GetFilterForType()
1648 LLDB_INSTRUMENT_VA(this, type_name); in GetSyntheticForType()
1650 if (!type_name.IsValid()) in GetSyntheticForType()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp26 llvm::StringRef type_name, TypeFormatImpl::Flags flags, bool regex) { in AddFormat() argument
31 category_sp->AddTypeFormat(type_name, match_type, format_sp); in AddFormat()
36 llvm::StringRef type_name, bool regex) { in AddSummary() argument
39 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddSummary()
49 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddStringSummary()
60 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddOneLineSummary()
72 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddCXXSummary()
78 const char *description, llvm::StringRef type_name, in AddCXXSynthetic() argument
84 category_sp->AddTypeSynthetic(type_name, match_type, synth_sp); in AddCXXSynthetic()
90 llvm::StringRef type_name, ScriptedSyntheticChildren::Flags flags, in AddFilter() argument
[all …]
H A DValueObjectPrinter.cpp252 ConstString type_name; in PrintDecl() local
254 type_name = m_options.m_use_type_display_name in PrintDecl()
261 type_name = ConstString("<invalid type>"); in PrintDecl()
264 if (type_name) { in PrintDecl()
265 std::string type_name_str(type_name.GetCString()); in PrintDecl()
H A DTypeFormat.cpp136 ConstString type_name, const TypeFormatImpl::Flags &flags) in TypeFormatImpl_EnumType() argument
137 : TypeFormatImpl(flags), m_enum_type(type_name), m_types() {} in TypeFormatImpl_EnumType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCF.cpp75 ConstString type_name(valobj.GetTypeName()); in CFBagSummaryProvider() local
80 if (type_name == g_CFBag || type_name == g_conststruct__CFBag) { in CFBagSummaryProvider()
133 ConstString type_name(valobj.GetTypeName()); in CFBitVectorSummaryProvider() local
134 if (type_name == "__CFMutableBitVector" || type_name == "__CFBitVector" || in CFBitVectorSummaryProvider()
135 type_name == "CFMutableBitVectorRef" || type_name == "CFBitVectorRef") { in CFBitVectorSummaryProvider()
254 ConstString type_name(valobj.GetTypeName()); in CFBinaryHeapSummaryProvider() local
261 if (type_name == g_CFBinaryHeap || in CFBinaryHeapSummaryProvider()
262 type_name == g_conststruct__CFBinaryHeap || in CFBinaryHeapSummaryProvider()
263 type_name == g_CFBinaryHeapRef) { in CFBinaryHeapSummaryProvider()
/freebsd-14.2/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A Dctypes.py25 def _ffi_cast(type_name): argument
26 type_info = _ffi.typeof(type_name)
37 _ffi.new(type_name + '*', value)
38 return _ffi.cast(type_name, value)
39 _func.__name__ = type_name
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h24 llvm::StringRef type_name, TypeFormatImpl::Flags flags,
28 lldb::TypeSummaryImplSP summary_sp, llvm::StringRef type_name,
32 const char *string, llvm::StringRef type_name,
36 llvm::StringRef type_name, TypeSummaryImpl::Flags flags,
42 const char *description, llvm::StringRef type_name,
48 const char *description, llvm::StringRef type_name,
54 llvm::StringRef type_name,
H A DFormattersContainer.h79 TypeMatcher(ConstString type_name) in TypeMatcher() argument
80 : m_name(type_name), m_match_type(lldb::eFormatterMatchExact) {} in TypeMatcher()
96 ConstString type_name = candidate_type.GetTypeName(); in Matches() local
99 return m_name == type_name || in Matches()
100 StripTypeName(m_name) == StripTypeName(type_name); in Matches()
102 return m_type_name_regex.Execute(type_name.GetStringRef()); in Matches()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangFunctionCaller.cpp128 std::string type_name; in CompileFunction() local
131 type_name = function_clang_type.GetFunctionArgumentTypeAtIndex(i) in CompileFunction()
138 type_name = clang_qual_type.GetTypeName().AsCString(""); in CompileFunction()
148 m_wrapper_function_text.append(type_name); in CompileFunction()
154 args_buffer.append(type_name); in CompileFunction()
H A DClangPersistentVariables.cpp76 ConstString type_name) { in GetCompilerTypeFromPersistentDecl() argument
77 PersistentDecl p = m_persistent_decls.lookup(type_name.GetCString()); in GetCompilerTypeFromPersistentDecl()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DStructuredDataPlugin.h67 virtual bool SupportsStructuredDataType(llvm::StringRef type_name) = 0;
95 HandleArrivalOfStructuredData(Process &process, llvm::StringRef type_name,
127 virtual bool GetEnabled(llvm::StringRef type_name) const;
/freebsd-14.2/crypto/heimdal/lib/gssapi/krb5/
H A Dadd_cred.c147 char *type_name = NULL; in _gsskrb5_add_cred() local
179 kret = asprintf(&type_name, "%s:%s", type, name); in _gsskrb5_add_cred()
180 if (kret < 0 || type_name == NULL) { in _gsskrb5_add_cred()
185 kret = krb5_cc_resolve(context, type_name, in _gsskrb5_add_cred()
187 free(type_name); in _gsskrb5_add_cred()
/freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_grammar.y175 %type <l_decl> type_name
231 | DT_CTX_DTYPE type_name { $$ = (dt_node_t *)$2; }
264 DT_KEY_XLATOR type_name DT_TOK_LT type_name
268 | DT_KEY_XLATOR type_name DT_TOK_LT type_name
438 | DT_TOK_OFFSETOF DT_TOK_LPAR type_name DT_TOK_COMMA
442 | DT_TOK_OFFSETOF DT_TOK_LPAR type_name DT_TOK_COMMA
446 | DT_TOK_OFFSETOF DT_TOK_LPAR type_name DT_TOK_COMMA
450 | DT_TOK_XLATE DT_TOK_LT type_name DT_TOK_GT
462 | DT_TOK_SIZEOF DT_TOK_LPAR type_name DT_TOK_RPAR {
480 | DT_TOK_LPAR type_name DT_TOK_RPAR cast_expression {
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h53 bool SupportsStructuredDataType(llvm::StringRef type_name) override;
56 Process &process, llvm::StringRef type_name,
62 bool GetEnabled(llvm::StringRef type_name) const override;
H A DStructuredDataDarwinLog.cpp1061 llvm::StringRef type_name) { in SupportsStructuredDataType() argument
1062 return type_name == GetDarwinLogTypeName(); in SupportsStructuredDataType()
1066 Process &process, llvm::StringRef type_name, in HandleArrivalOfStructuredData() argument
1089 if (type_name != GetDarwinLogTypeName()) { in HandleArrivalOfStructuredData()
1092 GetDarwinLogTypeName(), type_name); in HandleArrivalOfStructuredData()
1144 llvm::StringRef type_name; in GetDescription() local
1145 if (!dictionary->GetValueForKeyAsString("type", type_name)) { in GetDescription()
1152 if (type_name != GetDarwinLogTypeName()) { in GetDescription()
1202 bool StructuredDataDarwinLog::GetEnabled(llvm::StringRef type_name) const { in GetEnabled()
1203 if (type_name == GetStaticPluginName()) in GetEnabled()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxUnorderedMap.cpp82 static bool isStdTemplate(ConstString type_name, llvm::StringRef type) { in isStdTemplate() argument
83 llvm::StringRef name = type_name.GetStringRef(); in isStdTemplate()
90 static bool isUnorderedMap(ConstString type_name) { in isUnorderedMap() argument
91 return isStdTemplate(type_name, "unordered_map") || in isUnorderedMap()
92 isStdTemplate(type_name, "unordered_multimap"); in isUnorderedMap()
/freebsd-14.2/sys/dev/pci/
H A Dpci_iov_schema.c67 const char *type_name; member
75 .type_name = "bool",
80 .type_name = "string",
85 .type_name = "uint8_t",
91 .type_name = "uint16_t",
97 .type_name = "uint32_t",
103 .type_name = "uint64_t",
109 .type_name = "unicast-mac",
114 .type_name = "vlan",
128 if (strcmp(type, validator->type_name) == 0) in pci_iov_schema_find_validator()
/freebsd-14.2/crypto/openssl/crypto/evp/
H A Devp_local.h98 char *type_name; member
138 char *type_name; member
158 char *type_name; member
193 char *type_name; member
214 char *type_name; member
H A Dkdf_meth.c40 OPENSSL_free(kdf->type_name); in evp_kdf_free()
72 if ((kdf->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) { in evp_kdf_from_algorithm()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp458 if (!type_name.empty()) { in IOHandlerInputComplete()
1574 std::string type_name_str(type_name.GetCString()); in FixArrayTypeNameWithRegex()
1580 type_name.SetCString(type_name_str.c_str()); in FixArrayTypeNameWithRegex()
1604 if (FixArrayTypeNameWithRegex(type_name)) in AddSummary()
1610 RegularExpression typeRX(type_name.GetStringRef()); in AddSummary()
1620 const char *function_name = type_name.AsCString(); in AddSummary()
2327 if (FixArrayTypeNameWithRegex(type_name)) in AddSynth()
2351 RegularExpression typeRX(type_name.GetStringRef()); in AddSynth()
2361 const char *function_name = type_name.AsCString(); in AddSynth()
2467 if (FixArrayTypeNameWithRegex(type_name)) in AddFilter()
[all …]
/freebsd-14.2/contrib/sendmail/contrib/
H A Dqtool.pl1131 my $type_name;
1134 $type_name = ref($source);
1136 if ($type_name eq "QueuedMessage")
1141 if ($type_name eq "Queue")
1146 return "Queue does not know how to add a '$type_name'"
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp128 const DWARFDIE &die, lldb_private::ConstString type_name, in FindCompleteObjCDefinitionTypeForDIE() argument
131 die, type_name, must_be_implementation); in FindCompleteObjCDefinitionTypeForDIE()
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp303 ConstString type_name = GetName(); in GetDescription() local
304 if (type_name) { in GetDescription()
305 *s << ", name = \"" << type_name << '"'; in GetDescription()
307 if (qualified_type_name != type_name) { in GetDescription()
872 void TypeAndOrName::SetName(ConstString type_name) { in SetName() argument
873 m_type_name = type_name; in SetName()
880 void TypeAndOrName::SetName(llvm::StringRef type_name) { in SetName() argument
881 m_type_name.SetString(type_name); in SetName()
/freebsd-14.2/contrib/ncurses/ncurses/tinfo/
H A Dparse_entry.c525 const char *type_name; in _nc_parse_entry() local
528 type_name = "boolean"; in _nc_parse_entry()
531 type_name = "string"; in _nc_parse_entry()
534 type_name = "numeric"; in _nc_parse_entry()
537 type_name = "unknown"; in _nc_parse_entry()
541 type_name, _nc_curr_token.tk_name); in _nc_parse_entry()

1234