Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/posix/
DPipePosix.cpp265 SelectHelper select_helper; in ReadWithTimeout() local
266 select_helper.SetTimeout(timeout); in ReadWithTimeout()
267 select_helper.FDSetRead(fd); in ReadWithTimeout()
271 error = select_helper.Select(); in ReadWithTimeout()
296 SelectHelper select_helper; in Write() local
297 select_helper.SetTimeout(std::chrono::seconds(0)); in Write()
298 select_helper.FDSetWrite(fd); in Write()
302 error = select_helper.Select(); in Write()
DConnectionFileDescriptorPosix.cpp565 SelectHelper select_helper; in BytesAvailable() local
567 select_helper.SetTimeout(*timeout); in BytesAvailable()
569 select_helper.FDSetRead(handle); in BytesAvailable()
580 select_helper.FDSetRead(pipe_fd); in BytesAvailable()
584 Status error = select_helper.Select(); in BytesAvailable()
611 if (select_helper.FDIsSetRead(handle)) in BytesAvailable()
614 if (select_helper.FDIsSetRead(pipe_fd)) { in BytesAvailable()
/external/llvm-project/lldb/source/Host/common/
DEditline.cpp184 SelectHelper select_helper; in IsInputPending() local
185 select_helper.SetTimeout(std::chrono::microseconds(0)); in IsInputPending()
186 select_helper.FDSetRead(fd); in IsInputPending()
187 return select_helper.Select().Success(); in IsInputPending()
/external/llvm-project/lldb/source/Target/
DProcess.cpp4470 SelectHelper select_helper; in Run() local
4471 select_helper.FDSetRead(read_fd); in Run()
4472 select_helper.FDSetRead(pipe_read_fd); in Run()
4473 Status error = select_helper.Select(); in Run()
4480 if (select_helper.FDIsSetRead(read_fd)) { in Run()
4488 if (select_helper.FDIsSetRead(pipe_read_fd)) { in Run()