Home
last modified time | relevance | path

Searched refs:isGlobalCFunction (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DSimpleStreamChecker.cpp106 if (!Call.isGlobalCFunction()) in checkPostCall()
125 if (!Call.isGlobalCFunction()) in checkPreCall()
H A DNoReturnFunctionChecker.cpp51 if (!BuildSinks && CE.isGlobalCFunction()) { in checkPostCall()
H A DStackAddrEscapeChecker.cpp242 if (!Call.isGlobalCFunction("dispatch_after") && in checkPreCall()
243 !Call.isGlobalCFunction("dispatch_async")) in checkPreCall()
H A DPthreadLockChecker.cpp267 if (!Call.isGlobalCFunction() || C.wasInlined) in REGISTER_LIST_WITH_PROGRAMSTATE()
671 if (Call && Call->isGlobalCFunction()) { in checkRegionChanges()
H A DValistChecker.cpp128 if (!Call.isGlobalCFunction()) in checkPreCall()
H A DGenericTaintChecker.cpp747 Call.isGlobalCFunction() ? StaticTaintRules->lookup(Call) : nullptr) in checkPreCall()
H A DBasicObjCFoundationChecks.cpp548 if (!Call.isGlobalCFunction()) in checkPreCall()
H A DStreamChecker.cpp369 if (!Call.isGlobalCFunction()) in lookupFn()
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h334 bool isGlobalCFunction(StringRef SpecificName = StringRef()) const;
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp145 bool CallEvent::isGlobalCFunction(StringRef FunctionName) const { in isGlobalCFunction() function in CallEvent