Searched refs:rc (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/main/native/
H A DAsynchronousSocketCloseMonitor.cpp58 int rc = sigaction(BLOCKED_THREAD_SIGNAL, &sa, NULL); local
59 if (rc == -1) {
H A Dlibcore_io_Posix.cpp150 static rc_t throwIfMinusOne(JNIEnv* env, const char* name, rc_t rc) { argument
151 if (rc == rc_t(-1)) {
154 return rc;
312 static bool fillInetSocketAddress(JNIEnv* env, jint rc, jobject javaInetSocketAddress, const sockaddr_storage& ss) { argument
313 if (rc == -1 || javaInetSocketAddress == NULL) {
335 int rc = isLstat ? TEMP_FAILURE_RETRY(lstat(path.c_str(), &sb)) local
337 if (rc == -1) {
350 int rc = is_sockname ? TEMP_FAILURE_RETRY(getsockname(fd, sa, &byteCount)) local
352 if (rc == -1) {
414 int rc local
549 int rc = throwIfMinusOne(env, "fcntl", TEMP_FAILURE_RETRY(fcntl(fd, cmd, &lock))); local
568 int rc = TEMP_FAILURE_RETRY(fstat(fd, &sb)); local
579 int rc = TEMP_FAILURE_RETRY(fstatvfs(fd, &sb)); local
621 int rc = getaddrinfo(node.c_str(), NULL, &hints, &addressList); local
696 int rc = getnameinfo(reinterpret_cast<sockaddr*>(&ss), sa_len, buf, sizeof(buf), NULL, 0, flags); local
747 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &sa->sin_addr, &size)); local
768 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &l, &size)); local
781 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &tv, &size)); local
794 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &u, &size)); local
841 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req))); local
854 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &arg))); local
999 int rc = poll(fds.get(), count, timeoutMs); local
1198 int rc = TEMP_FAILURE_RETRY(setsockopt(fd, level, option, &req, sizeof(req))); local
1252 int rc = throwIfMinusOne(env, "socketpair", TEMP_FAILURE_RETRY(socketpair(domain, type, protocol, fds))); local
1269 int rc = TEMP_FAILURE_RETRY(statvfs(path.c_str(), &sb)); local
1341 int rc = throwIfMinusOne(env, "waitpid", TEMP_FAILURE_RETRY(waitpid(pid, &status, options))); local
[all...]
H A Djava_lang_ProcessManager.cpp188 int rc = TEMP_FAILURE_RETRY(waitpid(childPid, &status, 0)); local
189 if (rc == -1) {
H A DNetworkUtilities.cpp219 int rc = fcntl(fd, F_SETFL, flags); local
220 return (rc != -1);
H A Djava_util_zip_Inflater.cpp71 int rc = TEMP_FAILURE_RETRY(lseek(fd, off, SEEK_SET)); local
72 if (rc == -1) {
/libcore/luni/src/main/java/java/nio/
H A DSelectorImpl.java173 int rc = -1;
179 rc = Libcore.os.poll(pollFds.array(), (int) timeout);
191 int readyCount = (rc > 0) ? processPollFds() : 0;
H A DFileChannelImpl.java427 long rc = Libcore.os.sendfile(outFd, fd, offset, count);
429 return rc;
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
H A DTBSCertList.java140 public boolean equals(Object rc) { argument
141 if (!(rc instanceof RevokedCertificate)) {
144 RevokedCertificate rcert = (RevokedCertificate) rc;
/libcore/luni/src/main/java/libcore/io/
H A DIoBridge.java200 int rc = Libcore.os.poll(pollFds, remainingTimeoutMs);
201 if (rc == 0) {
/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java2787 int rc = 0;
2792 ++rc;
2795 return rc;
2966 long qt = 0L, qs = 0L; int rc = 0;
2980 ++rc;
3000 ", running = " + rc +
/libcore/crypto/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp1104 int rc = fcntl(fd, F_SETFL, flags); local
1105 return (rc != -1);
6679 int rc = SSL_set_cipher_lists(ssl, cipherstack.get()); local
6680 if (rc == 0) {

Completed in 347 milliseconds