| 356 | } |
| 357 | |
| 358 | uv_stream_t* ImplPosix::GetWriter() const |
| 359 | { |
| 360 | switch (this->Conn) { |
| 361 | case Connection::FDs: |
| 362 | return this->ConnWrite; |
| 363 | case Connection::FIFO: |
| 364 | return this->ConnFIFO; |
| 365 | default: |
| 366 | return nullptr; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | uv_stream_t* ImplPosix::GetReader() const |
| 371 | { |
no outgoing calls
no test coverage detected