Lines Matching defs:error
50 * into the buffer. In case of error ->start() and ->next() return
51 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
52 * returns 0 in case of success and negative number in case of error.
93 int error = 0;
108 error = PTR_ERR(p);
111 error = m->op->show(m, p);
112 if (error < 0)
114 if (unlikely(error)) {
115 error = 0;
132 return error;
228 if (!p || IS_ERR(p)) // EOF or an error
231 if (err < 0) // hard error
250 // EOF or an error