Lines Matching defs:rval
61 int rval;
73 if ((rval = pipe(cfg_p->pipe_fds)) != 0) {
76 return rval;
85 rval = isns_change_kevent_list(cfg_p, (uintptr_t)cfg_p->pipe_fds[0],
88 if (rval == -1) {
92 return rval;
96 rval = isns_add_buffer_pool(ISNS_BUF_SIZE, ISNS_BUF_COUNT);
97 if (rval != 0) {
100 return rval;
102 rval = isns_add_buffer_pool((int)ISNS_SMALL_BUF_SIZE, ISNS_SMALL_BUF_COUNT);
103 if (rval != 0) {
107 return rval;
110 if ((rval = isns_thread_create(cfg_p)) != 0) {
114 return rval;