Home
last modified time | relevance | path

Searched refs:errorNode (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/bmake/
H A Dcompat.c704 GNode *errorNode = NULL; in Compat_Run() local
737 if (GNode_IsError(gn) && errorNode == NULL) in Compat_Run()
738 errorNode = gn; in Compat_Run()
742 if (errorNode == NULL) { in Compat_Run()
746 errorNode = endNode; in Compat_Run()
749 if (errorNode != NULL) { in Compat_Run()
754 PrintOnError(errorNode, "\nStop.\n"); in Compat_Run()
H A Dmain.c2066 static GNode *errorNode = NULL; in PrintOnError() local
2073 if (errorNode != NULL) in PrintOnError()
2099 errorNode = Targ_FindNode(".ERROR"); in PrintOnError()
2100 if (errorNode != NULL) { in PrintOnError()
2101 errorNode->type |= OP_SPECIAL; in PrintOnError()
2102 Compat_Make(errorNode, errorNode); in PrintOnError()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h372 const ExplodedNode *errorNode) in PathSensitiveBugReport() argument
373 : PathSensitiveBugReport(bt, desc, desc, errorNode) {} in PathSensitiveBugReport()
376 const ExplodedNode *errorNode) in PathSensitiveBugReport() argument
377 : PathSensitiveBugReport(bt, shortDesc, desc, errorNode, in PathSensitiveBugReport()
389 const ExplodedNode *errorNode, in PathSensitiveBugReport() argument
392 : PathSensitiveBugReport(bt, desc, desc, errorNode, LocationToUnique, in PathSensitiveBugReport()
396 const ExplodedNode *errorNode,
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp180 if (ExplodedNode *errorNode = C.generateErrorNode(stateNull)) { in checkPreCall() local
184 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1); in checkPreCall()
186 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
H A DCastSizeChecker.cpp133 if (ExplodedNode *errorNode = C.generateErrorNode()) { in checkPreStmt() local
139 errorNode); in checkPreStmt()
H A DArrayBoundCheckerV2.cpp234 ExplodedNode *errorNode = checkerContext.generateErrorNode(errorState); in reportOOB() local
235 if (!errorNode) in reportOOB()
259 auto BR = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), errorNode); in reportOOB()
H A DBasicObjCFoundationChecks.cpp747 Optional<ExplodedNode*> errorNode; in checkPreObjCMessage() local
771 if (!errorNode.hasValue()) in checkPreObjCMessage()
772 errorNode = C.generateNonFatalErrorNode(); in checkPreObjCMessage()
774 if (!errorNode.getValue()) in checkPreObjCMessage()
792 errorNode.getValue()); in checkPreObjCMessage()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2124 const ExplodedNode *errorNode, PathDiagnosticLocation LocationToUnique, in PathSensitiveBugReport() argument
2126 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode), in PathSensitiveBugReport()
2982 const ExplodedNode *errorNode = R->getErrorNode(); in findReportInEquivalenceClass() local
2983 if (errorNode->isSink()) { in findReportInEquivalenceClass()
2988 if (errorNode->succ_empty()) { in findReportInEquivalenceClass()
2999 if (const CFGBlock *ErrorB = errorNode->getCFGBlock()) in findReportInEquivalenceClass()
3011 WL.push_back(errorNode); in findReportInEquivalenceClass()
3012 Visited[errorNode] = 1; in findReportInEquivalenceClass()