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 232 // 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(FDecl, "wcsdup")
    [all...]
CStringSyntaxChecker.cpp 60 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 109 return CheckerContext::isCLibraryFunction(FD, FunctionName);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 266 static bool isCLibraryFunction(const FunctionDecl *FD,

Completed in 930 milliseconds