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

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp232 // This check is specialized but faster then calling isCLibraryFunction.
253 if (C.isCLibraryFunction(FDecl, "snprintf") ||
254 C.isCLibraryFunction(FDecl, "sprintf"))
256 else if (C.isCLibraryFunction(FDecl, "strcpy") ||
257 C.isCLibraryFunction(FDecl, "stpcpy") ||
258 C.isCLibraryFunction(FDecl, "strcat"))
260 else if (C.isCLibraryFunction(FDecl, "bcopy"))
262 else if (C.isCLibraryFunction(FDecl, "strdup") ||
263 C.isCLibraryFunction(FDecl, "strdupa"))
265 else if (C.isCLibraryFunction(FDec
[all...]
H A DCStringSyntaxChecker.cpp60 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
140 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
H A DCStringChecker.cpp1867 if (C.isCLibraryFunction(FDecl, "memcpy"))
1869 else if (C.isCLibraryFunction(FDecl, "mempcpy"))
1871 else if (C.isCLibraryFunction(FDecl, "memcmp"))
1873 else if (C.isCLibraryFunction(FDecl, "memmove"))
1875 else if (C.isCLibraryFunction(FDecl, "strcpy"))
1877 else if (C.isCLibraryFunction(FDecl, "strncpy"))
1879 else if (C.isCLibraryFunction(FDecl, "stpcpy"))
1881 else if (C.isCLibraryFunction(FDecl, "strcat"))
1883 else if (C.isCLibraryFunction(FDecl, "strncat"))
1885 else if (C.isCLibraryFunction(FDec
[all...]
/freebsd-10.1-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.cpp109 return CheckerContext::isCLibraryFunction(FD, FunctionName);
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h266 static bool isCLibraryFunction(const FunctionDecl *FD,

Completed in 64 milliseconds