/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBTypeCategory.cpp | 302 bool SBTypeCategory::AddTypeFormat(SBTypeNameSpecifier type_name, in AddTypeFormat() argument 304 LLDB_INSTRUMENT_VA(this, type_name, format); in AddTypeFormat() 309 if (!type_name.IsValid()) in AddTypeFormat() 315 m_opaque_sp->AddTypeFormat(type_name.GetSP(), format.GetSP()); in AddTypeFormat() 319 bool SBTypeCategory::DeleteTypeFormat(SBTypeNameSpecifier type_name) { in DeleteTypeFormat() argument 320 LLDB_INSTRUMENT_VA(this, type_name); in DeleteTypeFormat() 325 if (!type_name.IsValid()) in DeleteTypeFormat() 328 return m_opaque_sp->DeleteTypeFormat(type_name.GetSP()); in DeleteTypeFormat() 331 bool SBTypeCategory::AddTypeSummary(SBTypeNameSpecifier type_name, in AddTypeSummary() argument 333 LLDB_INSTRUMENT_VA(this, type_name, summary); in AddTypeSummary() [all …]
|
H A D | SBDebugger.cpp | 1622 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() 1631 SBTypeSummary SBDebugger::GetSummaryForType(SBTypeNameSpecifier type_name) { in GetSummaryForType() argument 1632 LLDB_INSTRUMENT_VA(this, type_name); in GetSummaryForType() 1634 if (!type_name.IsValid()) in GetSummaryForType() 1636 return SBTypeSummary(DataVisualization::GetSummaryForType(type_name.GetSP())); 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() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | FormattersHelpers.cpp | 26 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() 44 llvm::StringRef type_name, TypeSummaryImpl::Flags flags, bool regex) { in AddStringSummary() argument 49 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddStringSummary() 53 TypeCategoryImpl::SharedPointer category_sp, llvm::StringRef type_name, in AddOneLineSummary() argument 60 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddOneLineSummary() 66 llvm::StringRef type_name, TypeSummaryImpl::Flags flags, bool regex) { in AddCXXSummary() argument 72 category_sp->AddTypeSummary(type_name, match_type, summary_sp); in AddCXXSummary() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | CF.cpp | 75 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/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
H A D | ctypes.py | 25 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/crypto/libecc/src/tests/ |
H A D | ec_self_tests.c | 36 const char *type_name; member 43 .type_name = "vectors", 48 .type_name = "rand", 53 .type_name = "perf", 129 ext_printf("\t%20s:\t%s\n", test_types[j].type_name, in print_help() 191 ret = local_strlen(test_types[j].type_name, &len); EG(ret, err); in main() 192 ret = are_equal(argv[i], test_types[j].type_name, len + 1, &check); EG(ret, err); in main() 251 ret = local_strlen(test_types[j].type_name, &len); EG(ret, err); in main() 252 ret = are_equal(argv[i], test_types[j].type_name, len + 1, &check); EG(ret, err); in main()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormattersHelpers.h | 24 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 D | FormattersContainer.h | 79 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/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangFunctionCaller.cpp | 128 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 D | ClangPersistentVariables.cpp | 76 ConstString type_name) { in GetCompilerTypeFromPersistentDecl() argument 77 PersistentDecl p = m_persistent_decls.lookup(type_name.GetCString()); in GetCompilerTypeFromPersistentDecl()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | StructuredDataPlugin.h | 67 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/crypto/heimdal/lib/gssapi/krb5/ |
H A D | add_cred.c | 147 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/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_grammar.y | 175 %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/sys/dev/pci/ |
H A D | pci_iov_schema.c | 66 const char *type_name; member 74 .type_name = "bool", 79 .type_name = "string", 84 .type_name = "uint8_t", 90 .type_name = "uint16_t", 96 .type_name = "uint32_t", 102 .type_name = "uint64_t", 108 .type_name = "unicast-mac", 113 .type_name = "vlan", 127 if (strcmp(type, validator->type_name) == 0) in pci_iov_schema_find_validator()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
H A D | StructuredDataDarwinLog.h | 53 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 D | StructuredDataDarwinLog.cpp | 1061 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 in GetEnabled() [all...] |
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectType.cpp | 214 for (const std::string &type_name : options->m_target_types) { in IOHandlerInputComplete() local 215 AddSummary(ConstString(type_name), script_format, in IOHandlerInputComplete() 271 bool AddSummary(ConstString type_name, lldb::TypeSummaryImplSP entry, 457 for (const std::string &type_name : options->m_target_types) { in IOHandlerInputComplete() local 458 if (!type_name.empty()) { in IOHandlerInputComplete() 459 if (AddSynth(ConstString(type_name), synth_provider, in IOHandlerInputComplete() 504 bool AddSynth(ConstString type_name, lldb::SyntheticChildrenSP entry, 1537 static bool FixArrayTypeNameWithRegex(ConstString &type_name) { in FixArrayTypeNameWithRegex() argument 1538 llvm::StringRef type_name_ref(type_name.GetStringRef()); in FixArrayTypeNameWithRegex() 1541 std::string type_name_str(type_name.GetCString()); in FixArrayTypeNameWithRegex() [all …]
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_local.h | 98 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 D | kdf_meth.c | 40 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/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxUnorderedMap.cpp | 106 static bool isStdTemplate(ConstString type_name, llvm::StringRef type) { in isStdTemplate() argument 107 llvm::StringRef name = type_name.GetStringRef(); in isStdTemplate() 114 static bool isUnorderedMap(ConstString type_name) { in isUnorderedMap() argument 115 return isStdTemplate(type_name, "unordered_map") || in isUnorderedMap() 116 isStdTemplate(type_name, "unordered_multimap"); in isUnorderedMap()
|
/freebsd/sys/ddb/ |
H A D | db_pprint.c | 367 const char *type_name = NULL; in db_pprint_symbol_cmd() local 386 type_name = db_ctf_stroff_to_str(&sym_data, type->ctt_name); in db_pprint_symbol_cmd() 387 if (type_name != NULL) in db_pprint_symbol_cmd() 388 db_printf("%s ", type_name); in db_pprint_symbol_cmd()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | qtool.pl | 1131 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/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Type.cpp | 302 ConstString type_name = GetName(); in GetDescription() local 303 if (type_name) { in GetDescription() 304 *s << ", name = \"" << type_name << '"'; in GetDescription() 306 if (qualified_type_name != type_name) { in GetDescription() 878 void TypeAndOrName::SetName(ConstString type_name) { in SetName() argument 879 m_type_name = type_name; in SetName() 886 void TypeAndOrName::SetName(llvm::StringRef type_name) { in SetName() argument 887 m_type_name.SetString(type_name); in SetName()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARFDwo.cpp | 133 const DWARFDIE &die, lldb_private::ConstString type_name, in FindCompleteObjCDefinitionTypeForDIE() argument 136 die, type_name, must_be_implementation); in FindCompleteObjCDefinitionTypeForDIE()
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | parse_entry.c | 525 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()
|