Searched refs:FunctionName (Results 1 - 25 of 72) sorted by relevance

123

/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutdebug.c227 * PARAMETERS: FunctionName - Ascii string containing a procedure name
239 const char *FunctionName)
244 if (*(ACPI_CAST_PTR (UINT32, FunctionName)) == ACPI_PREFIX_MIXED)
248 return (FunctionName + 4);
251 if (*(ACPI_CAST_PTR (UINT32, FunctionName)) == ACPI_PREFIX_LOWER)
255 return (FunctionName + 5);
258 return (FunctionName);
268 * FunctionName - Caller's procedure name
285 const char *FunctionName,
340 strlen (AcpiUtTrimFunctionName (FunctionName));
238 AcpiUtTrimFunctionName( const char *FunctionName) argument
282 AcpiDebugPrint( UINT32 RequestedDebugLevel, UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *Format, ...) argument
508 AcpiUtTraceStr( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *String) argument
548 AcpiUtTraceU32( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, UINT32 Integer) argument
587 AcpiUtExit( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId) argument
772 AcpiUtStrExit( UINT32 LineNumber, const char *FunctionName, const char *ModuleName, UINT32 ComponentId, const char *String) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DXRayLists.cpp29 XRayFunctionFilter::shouldImbueFunction(StringRef FunctionName) const {
33 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName,
35 AttrList->inSection("always", "fun", FunctionName, "arg1"))
38 FunctionName) ||
39 AttrList->inSection("always", "fun", FunctionName))
43 FunctionName) ||
44 AttrList->inSection("never", "fun", FunctionName))
H A DSanitizerBlacklist.cpp36 StringRef FunctionName) const {
37 return SSCL->inSection(Mask, "fun", FunctionName);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h112 Key insert(StringRef FunctionName) { argument
113 return Canonicalizer.canonicalize(FunctionName);
122 Key lookup(StringRef FunctionName) { argument
123 return Canonicalizer.lookup(FunctionName);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp65 std::string FunctionName = Info.FunctionName; local
66 if (FunctionName == DILineInfo::BadString)
67 FunctionName = DILineInfo::Addr2LineBadString;
71 OS << Prefix << FunctionName << Delimiter;
121 if (Local.FunctionName.empty())
124 OS << Local.FunctionName << '\n';
H A DSymbolizableObjectFile.cpp264 std::string FunctionName; local
267 FunctionName, Start, Size)) {
268 LineInfo.FunctionName = FunctionName;
289 std::string FunctionName; local
292 FunctionName, Start, Size)) {
294 ->FunctionName = FunctionName;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/
H A DDIContext.h36 std::string FunctionName; member in struct:llvm::DILineInfo
45 DILineInfo() : FileName(BadString), FunctionName(BadString) {}
49 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
58 return std::tie(FileName, FunctionName, Line, Column, StartLine,
60 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
70 if (FunctionName != BadString)
71 OS << "function '" << FunctionName << "', "; local
120 std::string FunctionName;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemark.h80 StringRef FunctionName; member in struct:llvm::remarks::Type::Remark
159 LHS.FunctionName == RHS.FunctionName && LHS.Loc == RHS.Loc &&
169 LHS.FunctionName, LHS.Loc, LHS.Hotness, LHS.Args) <
171 RHS.FunctionName, RHS.Loc, RHS.Hotness, RHS.Args);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerBlacklist.h37 bool isBlacklistedFunction(SanitizerMask Mask, StringRef FunctionName) const;
H A DXRayLists.h43 ImbueAttribute shouldImbueFunction(StringRef FunctionName) const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpression.h50 virtual const char *FunctionName() = 0;
H A DUtilityFunction.h86 const char *FunctionName() override { return m_function_name.c_str(); }
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerSortingChecker.cpp57 auto callsName(const char *FunctionName) -> decltype(callee(functionDecl())) {
58 return callee(functionDecl(hasName(FunctionName)));
H A DGCDAntipatternChecker.cpp55 auto callsName(const char *FunctionName)
57 return callee(functionDecl(hasName(FunctionName)));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp39 if (DI.FunctionName == DILineInfo::BadString)
42 F << DI.FunctionName;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h364 #define AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \
368 static QualType (T::*value())() const { return &T::FunctionName; } \
385 /// AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName) defines
390 /// \c SpecificType::FunctionName. The existence of such a function determines
392 #define AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \
395 static QualType (T::*value())() const { return &T::FunctionName; } \
404 #define AST_TYPELOC_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \
408 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
418 AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName##Type, ReturnTypesF)
428 /// AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName) work
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h36 StringRef FunctionName; member in struct:llvm::coverage::CoverageMappingRecord
177 StringRef FunctionName; member in struct:llvm::coverage::BinaryCoverageReader::ProfileMappingRecord
183 ProfileMappingRecord(CovMapVersion Version, StringRef FunctionName, argument
186 : Version(Version), FunctionName(FunctionName),
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.h56 StringRef FunctionName; member in struct:llvm::InstantiationView
60 InstantiationView(StringRef FunctionName, unsigned Line, argument
62 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
255 void addInstantiation(StringRef FunctionName, unsigned Line,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DInstrumentationMap.h61 std::string FunctionName; member in struct:llvm::xray::YAMLXRaySledEntry
122 IO.mapOptional("function-name", Entry.FunctionName);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRPrintingPasses.h57 extern bool isFunctionInPrintList(StringRef FunctionName);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp199 StringRef FunctionName = *CurLine++;
200 if (FunctionName.empty())
203 if (!FunctionName.startswith("??"))
204 OS << FunctionName << ' '; local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkStringTable.cpp45 Impl(R.FunctionName);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-link/
H A Dllvm-link.cpp233 std::string FunctionName = Import.substr(0, Idx); local
245 Function *F = SrcModule.getFunction(FunctionName);
248 << FunctionName << " from " << FileName << "\n";
255 errs() << "Ignoring import request for weak-any function " << FunctionName
261 errs() << "Importing " << FunctionName << " from " << FileName << "\n";
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacutils.h530 const char *FunctionName,
537 const char *FunctionName,
545 const char *FunctionName,
553 const char *FunctionName,
561 const char *FunctionName,
568 const char *FunctionName,
576 const char *FunctionName,
584 const char *FunctionName,
592 const char *FunctionName,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.h68 void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName,

Completed in 372 milliseconds

123