Searched refs:isCLibraryFunction (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp59 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
218 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
242 } else if (CheckerContext::isCLibraryFunction(FD, "strlcpy") ||
243 CheckerContext::isCLibraryFunction(FD, "strlcat")) {
H A DGenericTaintChecker.cpp471 // This check is specialized but faster then calling isCLibraryFunction.
499 0, (ret |= CheckerContext::isCLibraryFunction(FDecl, Name), 0)...});
905 if (CCtx::isCLibraryFunction(FDecl, "malloc") ||
906 CCtx::isCLibraryFunction(FDecl, "calloc") ||
907 CCtx::isCLibraryFunction(FDecl, "alloca"))
909 else if (CCtx::isCLibraryFunction(FDecl, "memccpy"))
911 else if (CCtx::isCLibraryFunction(FDecl, "realloc"))
913 else if (CCtx::isCLibraryFunction(FDecl, "bcopy"))
H A DVforkChecker.cpp84 if (!FD || !C.isCLibraryFunction(FD))
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp44 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD, function in class:CheckerContext
H A DCallEvent.cpp167 return CheckerContext::isCLibraryFunction(FD, FunctionName);
336 return CheckerContext::isCLibraryFunction(FD, CD.getFunctionName()) &&
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h339 static bool isCLibraryFunction(const FunctionDecl *FD,

Completed in 74 milliseconds