Searched defs:file_in (Results 1 – 11 of 11) sorted by relevance
22 struct file_in : handler_base_ext, ::boost::process::detail::uses_handles struct24 file_descriptor file;25 int handle = file.handle();27 std::array<int, 2> get_used_handles() in get_used_handles()33 file_in(T&& t) : file(std::forward<T>(t)) {} in file_in() argument34 file_in(FILE * f) : handle(fileno(f)) {} in file_in() argument37 void on_exec_setup(WindowsExecutor &e) const in on_exec_setup()
22 struct file_in : public ::boost::process::detail::handler_base, struct25 file_descriptor file;28 ::boost::winapi::HANDLE_ get_used_handles() const { return handle; } in get_used_handles()31 file_in(T&& t) : file(std::forward<T>(t), file_descriptor::read) {} in file_in() function32 …file_in(FILE * f) : handle(reinterpret_cast<::boost::winapi::HANDLE_>(_get_osfhandle(_fileno(f))))… in file_in() function35 void on_setup(WindowsExecutor &e) const in on_setup()
205 let file_in = unsafe { File::from_raw_fd(fd_in) }; in run_fd_transport() localVariable370 let file_in = unsafe { File::from_raw_fd(chip.fd_in) }; in run_fd_connector() localVariable
48 static bool InitWithRetry(IIcingStorage* file_in) { in InitWithRetry()
53 FILE* file_in = popen("cat /dev/zero", "r"); in TEST() local
131 let mut file_in = File::open("/dev/zero").expect("opening /dev/zero failed"); in bench_copy_buf_reader() localVariable
196 const char* file_in = NULL; in main() local