Lines Matching refs:rc
34 int rc; in tipc_connect() local
38 rc = -errno; in tipc_connect()
40 return rc < 0 ? rc : -1; in tipc_connect()
43 rc = TEMP_FAILURE_RETRY(ioctl(fd, TIPC_IOC_CONNECT, srv_name)); in tipc_connect()
44 if (rc < 0) { in tipc_connect()
45 rc = -errno; in tipc_connect()
48 return rc < 0 ? rc : -1; in tipc_connect()
63 int rc = TEMP_FAILURE_RETRY(ioctl(fd, TIPC_IOC_SEND_MSG, &req)); in tipc_send() local
64 if (rc < 0) { in tipc_send()
65 ALOGE("%s: failed to send message (err=%d)\n", __func__, rc); in tipc_send()
68 return rc; in tipc_send()