Searched refs:select_helper (Results 1 – 4 of 4) sorted by relevance
307 SelectHelper select_helper; in Read() local309 select_helper.SetTimeout(*timeout); in Read()310 select_helper.FDSetRead(fd); in Read()312 if (llvm::Error error = select_helper.Select().takeError()) in Read()331 SelectHelper select_helper; in Write() local333 select_helper.SetTimeout(*timeout); in Write()334 select_helper.FDSetWrite(fd); in Write()336 if (llvm::Error error = select_helper.Select().takeError()) in Write()
446 SelectHelper select_helper; in BytesAvailable() local448 select_helper.SetTimeout(*timeout); in BytesAvailable()451 select_helper.FDSetRead(reinterpret_cast<socket_t>(handle)); in BytesAvailable()462 select_helper.FDSetRead(pipe_fd); in BytesAvailable()466 Status error = select_helper.Select(); in BytesAvailable()493 if (select_helper.FDIsSetRead((lldb::socket_t)handle)) in BytesAvailable()496 if (select_helper.FDIsSetRead(pipe_fd)) { in BytesAvailable()
194 SelectHelper select_helper; in IsInputPending() local195 select_helper.SetTimeout(std::chrono::microseconds(0)); in IsInputPending()196 select_helper.FDSetRead(fd); in IsInputPending()197 return select_helper.Select().Success(); in IsInputPending()
4666 SelectHelper select_helper; in Run() local4667 select_helper.FDSetRead(read_fd); in Run()4668 select_helper.FDSetRead(pipe_read_fd); in Run()4669 Status error = select_helper.Select(); in Run()4676 if (select_helper.FDIsSetRead(read_fd)) { in Run()4685 if (select_helper.FDIsSetRead(pipe_read_fd)) { in Run()