Lines Matching refs:ret

2939     int		ret;  in mch_copy_sec()  local
2956 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0); in mch_copy_sec()
2957 if (ret < 0) in mch_copy_sec()
2988 ret = removexattr((char*)to_file, name); in mch_copy_sec()
3005 vim_acl_T ret = NULL; in mch_get_acl() local
3007 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS); in mch_get_acl()
3014 ret = (vim_acl_T)aclent; in mch_get_acl()
3032 ret = (vim_acl_T)aclent; in mch_get_acl()
3058 ret = (vim_acl_T)aclent; in mch_get_acl()
3063 return ret; in mch_get_acl()
6161 int ret; in RealWaitForChar() local
6256 ret = poll(fds, nfd, towait); in RealWaitForChar()
6258 result = ret > 0 && (fds[0].revents & POLLIN); in RealWaitForChar()
6259 if (result == 0 && interrupted != NULL && ret > 0) in RealWaitForChar()
6263 if (ret == 0 && mzquantum_used) in RealWaitForChar()
6272 if (--ret == 0 && !input_available()) in RealWaitForChar()
6296 if (--ret == 0) in RealWaitForChar()
6302 if (ret >= 0) in RealWaitForChar()
6303 channel_poll_check(ret, &fds); in RealWaitForChar()
6385 ret = select(maxfd + 1, SELECT_TYPE_ARG234 &rfds, in RealWaitForChar()
6387 result = ret > 0 && FD_ISSET(fd, &rfds); in RealWaitForChar()
6389 --ret; in RealWaitForChar()
6390 else if (interrupted != NULL && ret > 0) in RealWaitForChar()
6394 if (ret == -1 && errno == EINTR) in RealWaitForChar()
6409 if (ret == -1 && errno == ENOTSUP) in RealWaitForChar()
6413 ret = 0; in RealWaitForChar()
6417 if (ret == 0 && mzquantum_used) in RealWaitForChar()
6423 if (ret > 0 && xterm_Shell != (Widget)0 in RealWaitForChar()
6429 if (--ret == 0 && !input_available()) in RealWaitForChar()
6437 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0) in RealWaitForChar()
6446 if (ret > 0 && xsmp_icefd != -1) in RealWaitForChar()
6453 if (--ret == 0) in RealWaitForChar()
6461 if (--ret == 0) in RealWaitForChar()
6468 if (ret >= 0) in RealWaitForChar()
6469 ret = channel_select_check(ret, &rfds, &wfds); in RealWaitForChar()