Lines Matching refs:errMsg

31     std::ostringstream errMsg;  in writeToFifo()  local
45 errMsg << "Waiting for FIFO device:" << devPath << "to write failed" in writeToFifo()
47 throw std::runtime_error(errMsg.str().c_str()); in writeToFifo()
52 errMsg << "POLLERR while waiting for writeable FIFO,errno:" << errno; in writeToFifo()
53 throw std::runtime_error(errMsg.str().c_str()); in writeToFifo()
61 errMsg << "Failed to write to FIFO device:" << devPath in writeToFifo()
65 throw std::runtime_error(errMsg.str().c_str()); in writeToFifo()
73 errMsg << "Waiting for FIFO device:" << devPath << "to read failed" in writeToFifo()
75 throw std::runtime_error(errMsg.str().c_str()); in writeToFifo()
80 errMsg << "POLLERR while waiting for readable FIFO,errno:" << errno; in writeToFifo()
81 throw std::runtime_error(errMsg.str().c_str()); in writeToFifo()
94 errMsg << "Failed to read the FIFO device:" << devPath in writeToFifo()
96 throw std::runtime_error(errMsg.str().c_str()); in writeToFifo()
122 std::ostringstream errMsg; in parseResponse() local
123 errMsg << "Distance to SBE status header value " in parseResponse()
128 throw std::runtime_error(errMsg.str().c_str()); in parseResponse()
148 std::ostringstream errMsg; in parseResponse() local
149 errMsg << "Invalid MAGIC keyword in the response header (" in parseResponse()
151 throw std::runtime_error(errMsg.str().c_str()); in parseResponse()
173 std::ostringstream errMsg; in parseResponse() local
174 errMsg << "Chip operation failed with SBE response code:" in parseResponse()
177 throw std::runtime_error(errMsg.str().c_str()); in parseResponse()