| 4226 | } |
| 4227 | |
| 4228 | void YBlob::putSegment(CheckStatusWrapper* status, unsigned int length, const void* buffer) |
| 4229 | { |
| 4230 | try |
| 4231 | { |
| 4232 | YEntry<YBlob> entry(status, this); |
| 4233 | entry.next()->putSegment(status, length, buffer); |
| 4234 | } |
| 4235 | catch (const Exception& e) |
| 4236 | { |
| 4237 | e.stuffException(status); |
| 4238 | } |
| 4239 | } |
| 4240 | |
| 4241 | void YBlob::cancel(CheckStatusWrapper* status) |
| 4242 | { |
no test coverage detected