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

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp231 // This check is specialized but faster then calling isCLibraryFunction.
252 if (C.isCLibraryFunction(FDecl, "snprintf") ||
253 C.isCLibraryFunction(FDecl, "sprintf"))
255 else if (C.isCLibraryFunction(FDecl, "strcpy") ||
256 C.isCLibraryFunction(FDecl, "stpcpy") ||
257 C.isCLibraryFunction(FDecl, "strcat"))
259 else if (C.isCLibraryFunction(FDecl, "bcopy"))
261 else if (C.isCLibraryFunction(FDecl, "strdup") ||
262 C.isCLibraryFunction(FDecl, "strdupa"))
264 else if (C.isCLibraryFunction(FDec
[all...]
H A DCStringSyntaxChecker.cpp61 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
140 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
H A DCStringChecker.cpp1966 if (C.isCLibraryFunction(FDecl, "memcpy"))
1968 else if (C.isCLibraryFunction(FDecl, "mempcpy"))
1970 else if (C.isCLibraryFunction(FDecl, "memcmp"))
1972 else if (C.isCLibraryFunction(FDecl, "memmove"))
1974 else if (C.isCLibraryFunction(FDecl, "strcpy"))
1976 else if (C.isCLibraryFunction(FDecl, "strncpy"))
1978 else if (C.isCLibraryFunction(FDecl, "stpcpy"))
1980 else if (C.isCLibraryFunction(FDecl, "strcat"))
1982 else if (C.isCLibraryFunction(FDecl, "strncat"))
1984 else if (C.isCLibraryFunction(FDec
[all...]
H A DVforkChecker.cpp85 if (!FD || !C.isCLibraryFunction(FD))
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp39 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD, function in class:CheckerContext
H A DCallEvent.cpp126 return CheckerContext::isCLibraryFunction(FD, FunctionName);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h297 static bool isCLibraryFunction(const FunctionDecl *FD,

Completed in 115 milliseconds