Searched refs:isCMemFunction (Results 1 – 1 of 1) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocChecker.cpp | 266 bool isCMemFunction(const FunctionDecl *FD, 558 if (isCMemFunction(FD, C, AF_Malloc, MemoryOperationKind::MOK_Any)) in isMemFunction() 561 if (isCMemFunction(FD, C, AF_IfNameIndex, MemoryOperationKind::MOK_Any)) in isMemFunction() 564 if (isCMemFunction(FD, C, AF_Alloca, MemoryOperationKind::MOK_Any)) in isMemFunction() 573 bool MallocChecker::isCMemFunction(const FunctionDecl *FD, in isCMemFunction() function in MallocChecker 1212 if (isCMemFunction(FD, Ctx, AF_Malloc, MemoryOperationKind::MOK_Any)) in getAllocationFamily() 1223 if (isCMemFunction(FD, Ctx, AF_IfNameIndex, MemoryOperationKind::MOK_Any)) in getAllocationFamily() 1226 if (isCMemFunction(FD, Ctx, AF_Alloca, MemoryOperationKind::MOK_Any)) in getAllocationFamily() 2198 (isCMemFunction(FD, Ctx, AF_Malloc, MemoryOperationKind::MOK_Free) || in checkPreCall() 2199 isCMemFunction(FD, Ctx, AF_IfNameIndex, in checkPreCall()
|