Lines Matching defs:res
137 int res = -EPIPE;
144 res = 0;
152 res = 0;
160 return res;
217 int res = -ENXIO;
225 res = pipe->ops->open_pipe(inode);
226 if (res)
233 res = 0;
236 return res;
286 int res = 0;
291 res = -EPIPE;
311 res = pipe->ops->upcall(filp, msg, buf, len);
312 if (res < 0 || msg->len == msg->copied) {
321 return res;
328 int res;
331 res = -EPIPE;
333 res = RPC_I(inode)->pipe->ops->downcall(filp, buf, len);
335 return res;