Home
last modified time | relevance | path

Searched refs:select_helper (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp307 SelectHelper select_helper; in Read() local
309 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() local
333 select_helper.SetTimeout(*timeout); in Write()
334 select_helper.FDSetWrite(fd); in Write()
336 if (llvm::Error error = select_helper.Select().takeError()) in Write()
H A DConnectionFileDescriptorPosix.cpp446 SelectHelper select_helper; in BytesAvailable() local
448 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()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp194 SelectHelper select_helper; in IsInputPending() local
195 select_helper.SetTimeout(std::chrono::microseconds(0)); in IsInputPending()
196 select_helper.FDSetRead(fd); in IsInputPending()
197 return select_helper.Select().Success(); in IsInputPending()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4666 SelectHelper select_helper; in Run() local
4667 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()