| 618 | } |
| 619 | |
| 620 | SendStateDataSampleList |
| 621 | WriteDataContainer::get_resend_data() |
| 622 | { |
| 623 | DBG_ENTRY_LVL("WriteDataContainer","get_resend_data",6); |
| 624 | |
| 625 | // |
| 626 | // The samples in unsent_data are added to the sending_data |
| 627 | // during enqueue. |
| 628 | // |
| 629 | SendStateDataSampleList list = this->resend_data_; |
| 630 | |
| 631 | // |
| 632 | // Clear the unsent data list. |
| 633 | // |
| 634 | this->resend_data_.reset(); |
| 635 | // |
| 636 | // Return the moved list. |
| 637 | // |
| 638 | return list; |
| 639 | } |
| 640 | |
| 641 | bool |
| 642 | WriteDataContainer::pending_data() |
no test coverage detected