Lines Matching refs:rc
159 int rc; in uv__fs_close() local
161 rc = uv__close_nocancel(fd); in uv__fs_close()
162 if (rc == -1) in uv__fs_close()
164 rc = 0; /* The close is in progress, not an error. */ in uv__fs_close()
166 return rc; in uv__fs_close()
550 ssize_t rc; in uv__fs_read() local
551 rc = uv__fstat(fd, &buf); in uv__fs_read()
552 if (rc == 0 && S_ISDIR(buf.st_mode)) { in uv__fs_read()
1539 int rc; in uv__fs_statx() local
1556 rc = uv__statx(dirfd, path, flags, mode, &statxbuf); in uv__fs_statx()
1558 switch (rc) { in uv__fs_statx()