Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Allocated

52   enum Kind { // Reference to allocated memory.
53 Allocated,
54 // Reference to zero-allocated memory.
77 bool isAllocated() const { return K == Allocated; }
92 return RefState(Allocated, s, family);
117 CASE(Allocated)
406 // The allocated region symbol tracked by the main analysis.
429 // Did not track -> allocated. Other state (released) -> allocated.
438 // Did not track -> released. Other state (allocated) -> released.
445 // Did not track -> relinquished. Other state (allocated) -> relinquished.
455 // released -> allocated, it must be the realloc return value
916 // to zero-allocated memory.
1141 // Set the symbol's state to Allocated.
1367 // Of course, free() can work on memory allocated outside the current
1404 // If the pointer is allocated or escaped, but we are now trying to free it,
1419 // allocated, or an offset.
1631 os << ", which is not memory allocated by ";
1633 os << "not memory allocated by ";
1663 "Memory allocated by alloca() should not be deallocated", N);
1704 os << " allocated by " << AllocOs.str();
1708 os << " allocated by " << AllocOs.str();
1772 os << "memory allocated by " << AllocNameOs.str();
1774 os << "allocated memory";
1878 CheckNames[*CheckKind], "Use of zero allocated", "Memory Error"));
1881 "Use of zero-allocated memory", N);
2092 // allocated, and only report a single path.
2238 // If we are returning a field of the allocated struct or an array element,
2655 Msg = "Memory is allocated";
2657 "Returned allocated memory");