| 190 | } |
| 191 | |
| 192 | Status Service::Unregister(const UnregisterRequest* arg, |
| 193 | UnregisterResponse* result) { |
| 194 | Status status; |
| 195 | for (auto& data : arg->data()) { |
| 196 | Status unregister_status = allocation_tracker_.Unregister(data); |
| 197 | if (!unregister_status.ok() && status.ok()) { |
| 198 | status = unregister_status; |
| 199 | } |
| 200 | } |
| 201 | return status; |
| 202 | } |
| 203 | |
| 204 | // Deconstructs a previously-allocated global handle. |
| 205 | Status Service::DeconstructTuple(const DeconstructTupleRequest* arg, |
no test coverage detected