HomeSort by relevance Sort by last modified time
    Searched refs:isCLibraryFunction (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
GenericTaintChecker.cpp 231 // 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(FDecl, "wcsdup")
    [all...]
CStringSyntaxChecker.cpp 61 return (CheckerContext::isCLibraryFunction(FD, "strlen") &&
140 if (CheckerContext::isCLibraryFunction(FD, "strncat")) {
CStringChecker.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 39 bool CheckerContext::isCLibraryFunction(const FunctionDecl *FD,
CallEvent.cpp 108 return CheckerContext::isCLibraryFunction(FD, FunctionName);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 271 static bool isCLibraryFunction(const FunctionDecl *FD,

Completed in 365 milliseconds