| 1549 | if (not findNextBuffer()) |
| 1550 | { |
| 1551 | return false; |
| 1552 | } |
| 1553 | operationResult = startCurrentBuffer(); |
| 1554 | return operationResult; |
| 1555 | } |
| 1556 | |
| 1557 | Result AwaitSocketSendAllBuffersAwaiter::await_resume() |
| 1558 | { |
| 1559 | clearCancellation(continuation, this); |
| 1560 | if (outResult != nullptr and operationResult) |
| 1561 | { |
| 1562 | outResult->numBytes = numBytesSent; |
| 1563 | } |
| 1564 | return operationResult; |
| 1565 | } |
| 1566 |
nothing calls this directly
no test coverage detected