Searched defs:rc (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/native/
H A DAsynchronousCloseMonitor.cpp59 int rc = sigaction(BLOCKED_THREAD_SIGNAL, &sa, NULL); local
60 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) {
H A Djava_lang_ProcessManager.cpp188 int rc = TEMP_FAILURE_RETRY(waitpid(childPid, &status, 0)); local
189 if (rc == -1) {
H A Dlibcore_io_Posix.cpp255 static rc_t throwIfMinusOne(JNIEnv* env, const char* name, rc_t rc) { argument
256 if (rc == rc_t(-1)) {
259 return rc;
451 static bool fillInetSocketAddress(JNIEnv* env, jint rc, jobject javaInetSocketAddress, const sockaddr_storage& ss) { argument
452 if (rc == -1 || javaInetSocketAddress == NULL) {
561 int rc = isLstat ? TEMP_FAILURE_RETRY(lstat(path.c_str(), &sb)) local
563 if (rc == -1) {
576 int rc = is_sockname ? TEMP_FAILURE_RETRY(getsockname(fd, sa, &byteCount)) local
578 if (rc == -1) {
640 int rc local
777 int rc = IO_FAILURE_RETRY(env, int, fcntl, javaFd, cmd, &lock); local
806 int rc = TEMP_FAILURE_RETRY(fstat(fd, &sb)); local
817 int rc = TEMP_FAILURE_RETRY(fstatvfs(fd, &sb)); local
860 int rc = android_getaddrinfofornet(node.c_str(), NULL, &hints, netId, 0, &addressList); local
935 int rc = getnameinfo(reinterpret_cast<sockaddr*>(&ss), sa_len, buf, sizeof(buf), NULL, 0, flags); local
990 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &sa->sin_addr, &size)); local
1011 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &l, &size)); local
1024 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &tv, &size)); local
1037 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &u, &size)); local
1048 int rc = pthread_threadid_np(NULL, &owner); // Requires Mac OS 10.6 local
1117 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req))); local
1130 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &arg))); local
1299 int rc; local
1621 int rc = TEMP_FAILURE_RETRY(setsockopt(fd, level, option, &req, sizeof(req))); local
1661 int rc = TEMP_FAILURE_RETRY(setsockopt(fd, level, option, &req, sizeof(req))); local
1742 int rc = throwIfMinusOne(env, "socketpair", TEMP_FAILURE_RETRY(socketpair(domain, type, protocol, fds))); local
1759 int rc = TEMP_FAILURE_RETRY(statvfs(path.c_str(), &sb)); local
1831 int rc = throwIfMinusOne(env, "waitpid", TEMP_FAILURE_RETRY(waitpid(pid, &status, options))); local
[all...]
/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;

Completed in 121 milliseconds