HomeSort by: relevance | last modified time | path
    Searched refs:isCLibraryFunction (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 59 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
218 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
242 } else if (CheckerContext::isCLibraryFunction(FD, "strlcpy") ||
243 CheckerContext::isCLibraryFunction(FD, "strlcat")) {
GenericTaintChecker.cpp 474 // This check is specialized but faster then calling isCLibraryFunction.
502 0, (ret |= CheckerContext::isCLibraryFunction(FDecl, Name), 0)...});
908 if (CCtx::isCLibraryFunction(FDecl, "malloc") ||
909 CCtx::isCLibraryFunction(FDecl, "calloc") ||
910 CCtx::isCLibraryFunction(FDecl, "alloca"))
912 else if (CCtx::isCLibraryFunction(FDecl, "memccpy"))
914 else if (CCtx::isCLibraryFunction(FDecl, "realloc"))
916 else if (CCtx::isCLibraryFunction(FDecl, "bcopy"))
VforkChecker.cpp 84 if (!FD || !C.isCLibraryFunction(FD))
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 44 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD,
CallEvent.cpp 167 return CheckerContext::isCLibraryFunction(FD, FunctionName);
336 return CheckerContext::isCLibraryFunction(FD, CD.getFunctionName()) &&
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 359 static bool isCLibraryFunction(const FunctionDecl *FD,

Completed in 35 milliseconds