Home
last modified time | relevance | path

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

1234

/netbsd-src/sys/external/bsd/acpica/dist/utilities/
H A Dutdebug.c129 * PARAMETERS: FunctionName - Ascii string containing a procedure name
141 const char *FunctionName) in AcpiUtTrimFunctionName()
146 if (*(ACPI_CAST_PTR (UINT32, FunctionName)) == ACPI_PREFIX_MIXED) in AcpiUtTrimFunctionName()
150 return (FunctionName + 4); in AcpiUtTrimFunctionName()
153 if (*(ACPI_CAST_PTR (UINT32, FunctionName)) == ACPI_PREFIX_LOWER) in AcpiUtTrimFunctionName()
157 return (FunctionName + 5);
160 return (FunctionName);
170 * FunctionName - Caller's procedure name
187 const char *FunctionName, in AcpiDebugPrint()
242 strlen (AcpiUtTrimFunctionName (FunctionName)); in AcpiDebugPrint()
136 AcpiUtTrimFunctionName(const char * FunctionName) AcpiUtTrimFunctionName() argument
182 AcpiDebugPrint(UINT32 RequestedDebugLevel,UINT32 LineNumber,const char * FunctionName,const char * ModuleName,UINT32 ComponentId,const char * Format,...) AcpiDebugPrint() argument
407 AcpiUtTraceStr(UINT32 LineNumber,const char * FunctionName,const char * ModuleName,UINT32 ComponentId,const char * String) AcpiUtTraceStr() argument
447 AcpiUtTraceU32(UINT32 LineNumber,const char * FunctionName,const char * ModuleName,UINT32 ComponentId,UINT32 Integer) AcpiUtTraceU32() argument
486 AcpiUtExit(UINT32 LineNumber,const char * FunctionName,const char * ModuleName,UINT32 ComponentId) AcpiUtExit() argument
671 AcpiUtStrExit(UINT32 LineNumber,const char * FunctionName,const char * ModuleName,UINT32 ComponentId,const char * String) AcpiUtStrExit() argument
[all...]
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.cpp100 const auto &FunctionName = safeGetName(F); in isCtorOfRefCounted() local
102 return FunctionName == "Ref" || FunctionName == "makeRef" in isCtorOfRefCounted()
104 || FunctionName == "RefPtr" || FunctionName == "makeRefPtr" in isCtorOfRefCounted()
106 || FunctionName == "UniqueRef" || FunctionName == "makeUniqueRef" || in isCtorOfRefCounted()
107 FunctionName == "makeUniqueRefWithoutFastMallocCheck" in isCtorOfRefCounted()
109 || FunctionName == "String" || FunctionName == "AtomString" || in isCtorOfRefCounted()
110 FunctionName == "UniqueString" in isCtorOfRefCounted()
112 || FunctionName == "Identifier"; in isCtorOfRefCounted()
184 const auto FunctionName = safeGetName(F); in isPtrConversion() local
185 if (FunctionName == "getPtr" || FunctionName == "WeakPtr" || in isPtrConversion()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DXRayLists.cpp35 XRayFunctionFilter::shouldImbueFunction(StringRef FunctionName) const { in shouldImbueFunction()
39 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName, in shouldImbueFunction()
41 AttrList->inSection("always", "fun", FunctionName, "arg1")) in shouldImbueFunction()
44 FunctionName) || in shouldImbueFunction()
45 AttrList->inSection("always", "fun", FunctionName)) in shouldImbueFunction()
49 FunctionName) || in shouldImbueFunction()
50 AttrList->inSection("never", "fun", FunctionName)) in shouldImbueFunction()
H A DProfileList.cpp89 ProfileList::isFunctionExcluded(StringRef FunctionName, in isFunctionExcluded() argument
92 if (SCL->inSection(Section, "!fun", FunctionName)) in isFunctionExcluded()
94 if (SCL->inSection(Section, "fun", FunctionName)) in isFunctionExcluded()
H A DNoSanitizeList.cpp41 StringRef FunctionName) const { in containsFunction()
42 return SSCL->inSection(Mask, "fun", FunctionName); in containsFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/
H A DDIContext.h37 std::string FunctionName; member
49 : FileName(BadString), FunctionName(BadString), StartFileName(BadString) { in DILineInfo()
54 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
64 return std::tie(FileName, FunctionName, StartFileName, Line, Column,
66 std::tie(RHS.FileName, RHS.FunctionName, RHS.StartFileName, RHS.Line,
76 if (FunctionName != BadString) in dump()
77 OS << "function '" << FunctionName << "', "; in dump()
128 std::string FunctionName; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSymbolRemappingReader.h112 Key insert(StringRef FunctionName) { in insert() argument
113 return Canonicalizer.canonicalize(FunctionName); in insert()
122 Key lookup(StringRef FunctionName) { in lookup() argument
123 return Canonicalizer.lookup(FunctionName); in lookup()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp124 void PlainPrinterBase::printFunctionName(StringRef FunctionName, bool Inlined) { in printFunctionName() argument
126 if (FunctionName == DILineInfo::BadString) in printFunctionName()
127 FunctionName = DILineInfo::Addr2LineBadString; in printFunctionName()
130 OS << Prefix << FunctionName << Delimiter; in printFunctionName()
176 printFunctionName(Info.FunctionName, Inlined); in print()
221 if (L.FunctionName.empty()) in print()
224 OS << L.FunctionName; in print()
300 {{"FunctionName", LineInfo.FunctionName != DILineInfo::BadString in print()
301 ? LineInfo.FunctionName in print()
349 {{"FunctionName", Local.FunctionName}, in print()
H A DSymbolizableObjectFile.cpp280 std::string FunctionName, FileName; in symbolizeCode() local
282 if (getNameFromSymbolTable(ModuleOffset.Address, FunctionName, Start, Size, in symbolizeCode()
284 LineInfo.FunctionName = FunctionName; in symbolizeCode()
308 std::string FunctionName, FileName; in symbolizeInlinedCode() local
310 if (getNameFromSymbolTable(ModuleOffset.Address, FunctionName, Start, Size, in symbolizeInlinedCode()
314 LI->FunctionName = FunctionName; in symbolizeInlinedCode()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
H A DRemark.h80 StringRef FunctionName; member
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);
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithThinLTOSummaries/
H A DLLJITWithThinLTOSummaries.cpp135 Expected<StringRef> getMainModulePath(StringRef FunctionName, in getMainModulePath() argument
138 GlobalValue::GUID G = GlobalValue::getGUID(FunctionName); in getMainModulePath()
143 return make_error<DefinitionNotFoundInSummary>(FunctionName.str(), Index); in getMainModulePath()
145 return make_error<DuplicateDefinitionInSummary>(FunctionName.str(), VI); in getMainModulePath()
150 "Entry point is not a function: " + FunctionName); in getMainModulePath()
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Dacutils.h455 const char *FunctionName,
462 const char *FunctionName,
470 const char *FunctionName,
478 const char *FunctionName,
486 const char *FunctionName,
493 const char *FunctionName,
501 const char *FunctionName,
509 const char *FunctionName,
517 const char *FunctionName,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h36 StringRef FunctionName; member
168 StringRef FunctionName; member
174 ProfileMappingRecord(CovMapVersion Version, StringRef FunctionName, in ProfileMappingRecord()
177 : Version(Version), FunctionName(FunctionName), in ProfileMappingRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/sancov/
H A Dsancov.cpp313 PointsByFn[Loc.FunctionName].push_back(PointPtr); in operator <<()
320 std::string FunctionName = P.first; in operator <<() local
323 W.attributeObject(FunctionName, [&] { in operator <<()
326 if (Loc.FileName != FileName || Loc.FunctionName != FunctionName) in operator <<()
407 auto FunctionName = parseScalarString(FunctionKVNode.getKey()); in read() local
428 LineInfo.FunctionName = FunctionName; in read()
483 DefaultBlacklist->inSection("sancov", "fun", I.FunctionName)) in isBlacklisted()
489 UserBlacklist->inSection("sancov", "fun", I.FunctionName)) in isBlacklisted()
903 return std::tie(FileName, FunctionName) < in operator <()
904 std::tie(RHS.FileName, RHS.FunctionName); in operator <()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h363 #define AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \ argument
367 static QualType (T::*value())() const { return &T::FunctionName; } \
391 #define AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \ argument
394 static QualType (T::*value())() const { return &T::FunctionName; } \
403 #define AST_TYPELOC_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName, \ argument
407 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
417 AST_TYPE_TRAVERSE_MATCHER_DECL(MatcherName, FunctionName##Type, ReturnTypesF)
429 #define AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \ argument
432 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
440 AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName##Type, ReturnTypesF)
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DSourceCoverageView.h56 StringRef FunctionName; member
60 InstantiationView(StringRef FunctionName, unsigned Line, in InstantiationView()
62 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} in InstantiationView()
279 void addInstantiation(StringRef FunctionName, unsigned Line,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSignals.cpp209 StringRef FunctionName = *CurLine++; in printSymbolizedStackTrace() local
210 if (FunctionName.empty()) in printSymbolizedStackTrace()
213 if (!FunctionName.startswith("??")) in printSymbolizedStackTrace()
214 OS << FunctionName << ' '; in printSymbolizedStackTrace()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DYAMLRemarkSerializer.cpp25 Optional<RemarkLocation> RL, T FunctionName, in mapRemarkHeader() argument
31 io.mapRequired("Function", FunctionName); in mapRemarkHeader()
67 unsigned FunctionID = StrTab.add(Remark->FunctionName).first; in mapping()
72 Remark->FunctionName, Remark->Hotness, Remark->Args); in mapping()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DProfiledBinary.cpp436 if (CallerFrame.FunctionName == "<invalid>") in symbolize()
438 StringRef FunctionName(CallerFrame.FunctionName); in symbolize() local
440 FunctionName = FunctionSamples::getCanonicalFnName(FunctionName); in symbolize()
444 FrameLocation Callsite(FunctionName.str(), Line); in symbolize()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp39 if (DI.FunctionName == DILineInfo::BadString) in SymbolOrNumber()
42 F << DI.FunctionName; in SymbolOrNumber()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-link/
H A Dllvm-link.cpp308 std::string FunctionName = Import.substr(0, Idx); in importFunctions() local
320 Function *F = SrcModule.getFunction(FunctionName); in importFunctions()
323 << FunctionName << " from " << FileName << "\n"; in importFunctions()
330 errs() << "Ignoring import request for weak-any function " << FunctionName in importFunctions()
336 errs() << "Importing " << FunctionName << " from " << FileName << "\n"; in importFunctions()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DPointerSortingChecker.cpp57 decltype(auto) callsName(const char *FunctionName) { in callsName() argument
58 return callee(functionDecl(hasName(FunctionName))); in callsName()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp415 StringRef FunctionName, StringRef CrossTUDir, StringRef IndexName, in getASTUnitForFunction() argument
418 auto ASTCacheEntry = NameASTUnitMap.find(FunctionName); in getASTUnitForFunction()
428 if (!NameFileMap.count(FunctionName)) { in getASTUnitForFunction()
436 getASTUnitForFile(NameFileMap[FunctionName], DisplayCTUProgress)) { in getASTUnitForFunction()
439 NameASTUnitMap[FunctionName] = *FoundForFile; in getASTUnitForFunction()
453 StringRef FunctionName, StringRef CrossTUDir, StringRef IndexName) { in getFileForFunction() argument
456 return NameFileMap[FunctionName]; in getFileForFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DPrintPasses.cpp83 bool llvm::isFunctionInPrintList(StringRef FunctionName) { in isFunctionInPrintList() argument
87 PrintFuncNames.count(std::string(FunctionName)); in isFunctionInPrintList()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h288 void insert(StringRef FunctionName) { Remappings->insert(FunctionName); } in insert() argument
292 bool exist(StringRef FunctionName) { in exist() argument
293 return Remappings->lookup(FunctionName); in exist()
298 Optional<StringRef> lookUpNameInProfile(StringRef FunctionName);

1234