HomeSort by relevance Sort by last modified time
    Searched refs:BuiltinBug (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 52 class BuiltinBug : public BugType {
56 BuiltinBug(const char *name, const char *description)
59 BuiltinBug(const char *name)
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 29 mutable OwningPtr<BuiltinBug> BT_null;
30 mutable OwningPtr<BuiltinBug> BT_undef;
48 BT_undef.reset(new BuiltinBug("Uninitialized value used as mutex "
71 BT_null.reset(new BuiltinBug("Nil value used as mutex for @synchronized() "
ReturnUndefChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT_Undef;
29 mutable OwningPtr<BuiltinBug> BT_NullReference;
72 static void emitBug(CheckerContext &C, BuiltinBug &BT, const Expr *RetE,
88 BT_Undef.reset(new BuiltinBug("Garbage return value",
107 BT_NullReference.reset(new BuiltinBug("Returning null reference"));
FixedAddressChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
55 BT.reset(new BuiltinBug("Use fixed address",
ArrayBoundChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
69 BT.reset(new BuiltinBug("Out-of-bound array access",
CastToStructChecker.cpp 27 mutable OwningPtr<BuiltinBug> BT;
61 BT.reset(new BuiltinBug("Cast from non-struct type to struct type",
PointerArithChecker.cpp 27 mutable OwningPtr<BuiltinBug> BT;
56 BT.reset(new BuiltinBug("Dangerous pointer arithmetic",
PointerSubChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
65 BT.reset(new BuiltinBug("Pointer subtraction",
ReturnPointerRangeChecker.cpp 28 mutable OwningPtr<BuiltinBug> BT;
72 BT.reset(new BuiltinBug("Return of pointer value outside of expected range",
StackAddrEscapeChecker.cpp 31 mutable OwningPtr<BuiltinBug> BT_stackleak;
32 mutable OwningPtr<BuiltinBug> BT_returnstack;
104 new BuiltinBug("Return of address to stack-allocated memory"));
220 new BuiltinBug("Stack address stored into global variable",
UndefinedArraySubscriptChecker.cpp 40 BT.reset(new BuiltinBug("Array subscript is undefined"));
CastSizeChecker.cpp 26 mutable OwningPtr<BuiltinBug> BT;
72 BT.reset(new BuiltinBug("Cast region with wrong size.",
DivZeroChecker.cpp 26 mutable OwningPtr<BuiltinBug> BT;
40 BT.reset(new BuiltinBug("Division by zero"));
UndefBranchChecker.cpp 27 mutable OwningPtr<BuiltinBug> BT;
71 new BuiltinBug("Branch condition evaluates to a garbage value"));
CallAndMessageChecker.cpp 65 BT.reset(new BuiltinBug(desc));
232 BT_call_undef.reset(new BuiltinBug("Called function pointer is an "
245 new BuiltinBug("Called function pointer is null (null dereference)"));
262 BT_cxx_call_undef.reset(new BuiltinBug("Called C++ object pointer is "
274 BT_cxx_call_null.reset(new BuiltinBug("Called C++ object pointer "
316 BT_msg_undef.reset(new BuiltinBug("Receiver in message expression "
322 BT_objc_prop_undef.reset(new BuiltinBug("Property access on an "
329 BT_objc_subscript_undef.reset(new BuiltinBug("Subscript access on an "
369 new BuiltinBug("Receiver in message expression is "
BoolAssignmentChecker.cpp 26 mutable OwningPtr<BuiltinBug> BT;
37 BT.reset(new BuiltinBug("Assignment of a non-Boolean value"));
DereferenceChecker.cpp 32 mutable OwningPtr<BuiltinBug> BT_null;
33 mutable OwningPtr<BuiltinBug> BT_undef;
100 BT_null.reset(new BuiltinBug("Dereference of null pointer"));
183 BT_undef.reset(new BuiltinBug("Dereference of undefined pointer value"));
UndefResultChecker.cpp 49 BT.reset(new BuiltinBug("Result of operation is garbage or undefined"));
UndefinedAssignmentChecker.cpp 49 BT.reset(new BuiltinBug(str));
ChrootChecker.cpp 44 mutable OwningPtr<BuiltinBug> BT_BreakJail;
145 BT_BreakJail.reset(new BuiltinBug("Break out of jail",
UndefCapturedBlockVarChecker.cpp 82 BT.reset(new BuiltinBug("uninitialized variable captured by block"));
ArrayBoundCheckerV2.cpp 31 mutable OwningPtr<BuiltinBug> BT;
190 BT.reset(new BuiltinBug("Out-of-bound access"));
StreamChecker.cpp 65 mutable OwningPtr<BuiltinBug> BT_nullfp, BT_illegalwhence,
273 BT_illegalwhence.reset(new BuiltinBug("Illegal whence argument",
351 BT_nullfp.reset(new BuiltinBug("NULL stream pointer",
381 BT_doubleclose.reset(new BuiltinBug("Double fclose",
410 BT_ResourceLeak.reset(new BuiltinBug("Resource Leak",
NonNullParamChecker.cpp 174 BTNullRefArg.reset(new BuiltinBug("Dereference of null pointer"));
VLASizeChecker.cpp 54 BT.reset(new BuiltinBug("Dangerous variable-length array (VLA) declaration"));

Completed in 1189 milliseconds

1 2