| 264 | } |
| 265 | |
| 266 | void ReservationTracker::DecreaseReservation(int64_t bytes, bool is_child_reservation) { |
| 267 | lock_guard<SpinLock> l(lock_); |
| 268 | DecreaseReservationLocked(bytes, is_child_reservation); |
| 269 | } |
| 270 | |
| 271 | void ReservationTracker::DecreaseReservationLocked( |
| 272 | int64_t bytes, bool is_child_reservation) { |
no outgoing calls
no test coverage detected