Lines Matching full:res
145 int res;
152 res = ioctl(bs->fd, BINDER_WRITE_READ, &bwr);
153 if (res < 0) {
157 return res;
230 int res;
234 res = func(bs, txn, &msg, &reply);
235 binder_send_reply(bs, &reply, txn->data, res);
307 int res;
339 res = ioctl(bs->fd, BINDER_WRITE_READ, &bwr);
341 if (res < 0) {
346 res = binder_parse(bs, reply, readbuf, bwr.read_consumed, 0);
347 if (res == 0) return 0;
348 if (res < 0) goto fail;
359 int res;
375 res = ioctl(bs->fd, BINDER_WRITE_READ, &bwr);
377 if (res < 0) {
382 res = binder_parse(bs, 0, readbuf, bwr.read_consumed, func);
383 if (res == 0) {
387 if (res < 0) {
388 LOGE("binder_loop: io error %d %s\n", res, strerror(errno));