Home
last modified time | relevance | path

Searched refs:smartptr (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dmemory.inc138 // [util.smartptr.weak.bad], class bad_weak_ptr
141 // [util.smartptr.shared], class template shared_ptr
144 // [util.smartptr.shared.create], shared_ptr creation
153 // [util.smartptr.shared.cast], shared_ptr casts
163 // [util.smartptr.shared.io], shared_ptr I/O
165 // [util.smartptr.weak], class template weak_ptr
168 // [util.smartptr.weak.spec], weak_ptr specialized algorithms
170 // [util.smartptr.ownerless], class template owner_less
176 // [util.smartptr.hash], hash support
179 // [util.smartptr.atomic], atomic smart pointers
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrChecker.cpp52 namespace smartptr { namespace
62 if (!smartptr::isStdSmartPtrCall(Call)) in checkPreCall()
74 if (smartptr::isNullSmartPtr(State, ThisRegion)) in checkPreCall()
H A DSmartPtrModeling.cpp126 namespace smartptr { namespace
272 return smartptr::isStdSmartPtr(Call.getArgExpr(0)) || in isPotentiallyComparisionOpCall()
273 smartptr::isStdSmartPtr(Call.getArgExpr(1)); in isPotentiallyComparisionOpCall()
343 if (!smartptr::isStdSmartPtrCall(Call)) in evalCall()
413 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in evalCall()
564 if (smartptr::isNullSmartPtr(State, I.first)) in printState()
616 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in handleReset()
652 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in handleRelease()
694 if (&BR.getBugType() != smartptr::getNullDereferenceBugType()) in handleSwap()
757 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in handleAssignOp()
[all …]
H A DSmartPtr.h21 namespace smartptr {