Lines Matching refs:std
75 std::ostringstream oss; in Iio()
77 throw std::invalid_argument(oss.str()); in Iio()
88 Iio(const std::string& deviceName) in Iio()
90 std::ostringstream oss; in Iio()
94 throw std::invalid_argument(oss.str()); in Iio()
99 throw std::invalid_argument(oss.str()); in Iio()
117 std::string
133 readInt(const std::string& attributeName) const in readInt()
138 std::ostringstream oss; in readInt()
140 throw std::runtime_error(oss.str()); in readInt()
155 readFloat(const std::string& attributeName) const in readFloat()
160 std::ostringstream oss; in readFloat()
162 throw std::runtime_error(oss.str()); in readFloat()
176 writeInt(const std::string& attributeName, int value) const in writeInt()
180 std::ostringstream oss; in writeInt()
182 throw std::runtime_error(oss.str()); in writeInt()
196 writeFloat(const std::string& attributeName, float value) const in writeFloat()
200 std::ostringstream oss; in writeFloat()
202 throw std::runtime_error(oss.str()); in writeFloat()
219 throw std::runtime_error("registerEventHandler failed"); in registerEventHandler()