Searched defs:MallocChecker (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp1 //=== MallocChecker.cpp - A malloc/free checker -------------------*- C++ -*--//
146 class MallocChecker : public Checker<check::DeadSymbols, class in namespace:__anon15530
169 MallocChecker() : II_malloc(0), II_free(0), II_realloc(0), II_calloc(0), function in class:__anon15530::MallocChecker
465 void MallocChecker::initIdentifierInfo(ASTContext &Ctx) const {
478 bool MallocChecker::isMemFunction(const FunctionDecl *FD, ASTContext &C) const {
491 bool MallocChecker::isAllocationFunction(const FunctionDecl *FD,
516 bool MallocChecker::isFreeFunction(const FunctionDecl *FD, ASTContext &C) const {
543 bool MallocChecker::isStandardNewDelete(const FunctionDecl *FD,
572 void MallocChecker::checkPostStmt(const CallExpr *CE, CheckerContext &C) const {
645 void MallocChecker
[all...]

Completed in 49 milliseconds