Lines Matching refs:system_error
157 FMT_THROW(system_error(errno, "cannot open file {}", filename.c_str())); in buffered_file()
164 if (result != 0) FMT_THROW(system_error(errno, "cannot close file")); in close()
172 if (fd == -1) FMT_THROW(system_error(errno, "cannot get file descriptor")); in fileno()
186 FMT_THROW(system_error(errno, "cannot open file {}", path.c_str())); in file()
202 if (result != 0) FMT_THROW(system_error(errno, "cannot close file")); in close()
224 FMT_THROW(system_error(errno, "cannot get file attributes")); in size()
234 if (result < 0) FMT_THROW(system_error(errno, "cannot read from file")); in read()
241 if (result < 0) FMT_THROW(system_error(errno, "cannot write to file")); in write()
250 FMT_THROW(system_error(errno, "cannot duplicate file descriptor {}", fd)); in dup()
258 FMT_THROW(system_error(errno, "cannot duplicate file descriptor {} to {}", in dup2()
284 if (result != 0) FMT_THROW(system_error(errno, "cannot create pipe")); in pipe()
300 system_error(errno, "cannot associate stream with file descriptor")); in fdopen()
313 if (size < 0) FMT_THROW(system_error(errno, "cannot get memory page size")); in getpagesize()