Home
last modified time | relevance | path

Searched refs:FunctionName (Results 1 – 25 of 58) sorted by relevance

123

/freebsd-12.1/sys/contrib/dev/acpica/components/utilities/
H A Dutdebug.c239 const char *FunctionName) in AcpiUtTrimFunctionName() argument
248 return (FunctionName + 4); in AcpiUtTrimFunctionName()
255 return (FunctionName + 5); in AcpiUtTrimFunctionName()
258 return (FunctionName); in AcpiUtTrimFunctionName()
285 const char *FunctionName, in AcpiDebugPrint() argument
386 const char *FunctionName, in ACPI_EXPORT_SYMBOL()
429 const char *FunctionName, in ACPI_EXPORT_SYMBOL()
470 const char *FunctionName, in ACPI_EXPORT_SYMBOL()
510 const char *FunctionName, in AcpiUtTraceStr() argument
550 const char *FunctionName, in AcpiUtTraceU32() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DXRayLists.cpp27 XRayFunctionFilter::shouldImbueFunction(StringRef FunctionName) const { in shouldImbueFunction()
31 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName, in shouldImbueFunction()
33 AttrList->inSection("always", "fun", FunctionName, "arg1")) in shouldImbueFunction()
36 FunctionName) || in shouldImbueFunction()
37 AttrList->inSection("always", "fun", FunctionName)) in shouldImbueFunction()
41 FunctionName) || in shouldImbueFunction()
42 AttrList->inSection("never", "fun", FunctionName)) in shouldImbueFunction()
H A DSanitizerBlacklist.cpp35 StringRef FunctionName) const { in isBlacklistedFunction()
36 return SSCL->inSection(Mask, "fun", FunctionName); in isBlacklistedFunction()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/
H A DDIContext.h33 std::string FunctionName; member
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {} in DILineInfo()
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
55 return std::tie(FileName, FunctionName, Line, Column, StartLine,
57 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
67 if (FunctionName != "<invalid>") in dump()
68 OS << "function '" << FunctionName << "', "; in dump()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h113 Key insert(StringRef FunctionName) { in insert() argument
114 return Canonicalizer.canonicalize(FunctionName); in insert()
123 Key lookup(StringRef FunctionName) { in lookup() argument
124 return Canonicalizer.lookup(FunctionName); in lookup()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp70 std::string FunctionName = Info.FunctionName; in print() local
71 if (FunctionName == kDILineInfoBadString) in print()
72 FunctionName = kBadString; in print()
76 OS << Prefix << FunctionName << Delimiter; in print()
H A DSymbolizableObjectFile.cpp231 std::string FunctionName; in symbolizeCode() local
234 FunctionName, Start, Size)) { in symbolizeCode()
235 LineInfo.FunctionName = FunctionName; in symbolizeCode()
254 std::string FunctionName; in symbolizeInlinedCode() local
257 FunctionName, Start, Size)) { in symbolizeInlinedCode()
259 ->FunctionName = FunctionName; in symbolizeInlinedCode()
H A DSymbolize.cpp78 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info); in symbolizeCode()
106 Frame->FunctionName = DemangleName(Frame->FunctionName, Info); in symbolizeInlinedCode()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h365 #define AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \ argument
369 static QualType (T::*value())() const { return &T::FunctionName; } \
393 #define AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \ argument
396 static QualType (T::*value())() const { return &T::FunctionName; } \
405 #define AST_TYPELOC_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \ argument
409 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
419 AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName##Type, ReturnTypesF)
431 #define AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \ argument
434 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
442 AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName##Type, ReturnTypesF)
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h37 StringRef FunctionName; member
178 StringRef FunctionName; member
184 ProfileMappingRecord(CovMapVersion Version, StringRef FunctionName, in ProfileMappingRecord()
187 : Version(Version), FunctionName(FunctionName), in ProfileMappingRecord()
/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A DSourceCoverageView.h57 StringRef FunctionName; member
61 InstantiationView(StringRef FunctionName, unsigned Line, in InstantiationView()
63 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} in InstantiationView()
256 void addInstantiation(StringRef FunctionName, unsigned Line,
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dacutils.h534 const char *FunctionName,
541 const char *FunctionName,
549 const char *FunctionName,
557 const char *FunctionName,
565 const char *FunctionName,
572 const char *FunctionName,
580 const char *FunctionName,
588 const char *FunctionName,
596 const char *FunctionName,
/freebsd-12.1/contrib/llvm/lib/Support/
H A DSignals.cpp200 StringRef FunctionName = *CurLine++; in printSymbolizedStackTrace() local
201 if (FunctionName.empty()) in printSymbolizedStackTrace()
204 if (!FunctionName.startswith("??")) in printSymbolizedStackTrace()
205 OS << FunctionName << ' '; in printSymbolizedStackTrace()
/freebsd-12.1/contrib/llvm/tools/llvm-link/
H A Dllvm-link.cpp234 std::string FunctionName = Import.substr(0, Idx); in importFunctions() local
246 Function *F = SrcModule.getFunction(FunctionName); in importFunctions()
249 << FunctionName << " from " << FileName << "\n"; in importFunctions()
256 errs() << "Ignoring import request for weak-any function " << FunctionName in importFunctions()
262 errs() << "Importing " << FunctionName << " from " << FileName << "\n"; in importFunctions()
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp35 if (DI.FunctionName == "<invalid>") in SymbolOrNumber()
38 F << DI.FunctionName; in SymbolOrNumber()
/freebsd-12.1/contrib/llvm/include/llvm/XRay/
H A DInstrumentationMap.h62 std::string FunctionName; member
123 IO.mapOptional("function-name", Entry.FunctionName);
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DPredicateExpander.cpp379 StringRef FunctionName = Rec->getValueAsString("Name"); in expandHeader() local
385 OS << FunctionName << "("; in expandHeader()
512 StringRef FunctionName = Fn.getDeclaration()->getValueAsString("Name"); in expandEpilogue() local
513 OS << "} // " << ClassPrefix << "::" << FunctionName << "\n\n"; in expandEpilogue()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DGCDAntipatternChecker.cpp56 auto callsName(const char *FunctionName) in callsName() argument
58 return callee(functionDecl(hasName(FunctionName))); in callsName()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DSanitizerBlacklist.h38 bool isBlacklistedFunction(SanitizerMask Mask, StringRef FunctionName) const;
H A DXRayLists.h44 ImbueAttribute shouldImbueFunction(StringRef FunctionName) const;
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp945 std::string &FunctionName, in getFunctionNameAndStartLineForAddress() argument
959 FunctionName = Name; in getFunctionNameAndStartLineForAddress()
978 Result.FunctionName, in getLineInfoForAddress()
996 std::string FunctionName = "<invalid>"; in getLineInfoForAddressRange() local
998 getFunctionNameAndStartLineForAddress(CU, Address, Spec.FNKind, FunctionName, in getLineInfoForAddressRange()
1005 Result.FunctionName = FunctionName; in getLineInfoForAddressRange()
1024 Result.FunctionName = FunctionName; in getLineInfoForAddressRange()
1066 Frame.FunctionName = Name; in getInliningInfoForAddress()
/freebsd-12.1/contrib/llvm/include/llvm-c/
H A DOptRemarks.h91 LLVMOptRemarkStringRef FunctionName; member
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DExpression.h59 virtual const char *FunctionName() = 0;
H A DUtilityFunction.h93 const char *FunctionName() override { return m_function_name.c_str(); } in FunctionName() function
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DIRPrintingPasses.h64 extern bool isFunctionInPrintList(StringRef FunctionName);

123