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

/libcore/ojluni/src/main/native/
H A DFileSystemPreferences.c70 int fd, rc; local
98 rc = fcntl(fd, F_SETLK, &fl);
100 rc = fcntl(fd, F_SETLK64, &fl);
103 if (rc < 0) {
124 int rc; local
132 rc = fcntl(fd, F_SETLK, &fl);
134 rc = fcntl(fd, F_SETLK64, &fl);
137 if (rc < 0) {
141 rc = close(fd);
142 if (rc <
[all...]
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DPKIXRevocationCheckerTest.java40 CertPathChecker rc = cpb.getRevocationChecker();
41 assertNotNull(rc);
42 assertTrue(rc instanceof PKIXRevocationChecker);
43 checker = (PKIXRevocationChecker) rc;
/libcore/ojluni/src/main/java/java/util/
H A DArraysParallelSortHelpers.java135 Relay rc = new Relay(new Merger<T>(fc, a, w, b+h, q,
137 new Sorter<T>(rc, a, w, b+u, n-u, wb+u, g, c).fork();
138 new Sorter<T>(rc, a, w, b+h, q, wb+h, g, c).fork();;
253 Relay rc = new Relay(new Merger(fc, a, w, b+h, q,
255 new Sorter(rc, a, w, b+u, n-u, wb+u, g).fork();
256 new Sorter(rc, a, w, b+h, q, wb+h, g).fork();;
364 Relay rc = new Relay(new Merger(fc, a, w, b+h, q,
366 new Sorter(rc, a, w, b+u, n-u, wb+u, g).fork();
367 new Sorter(rc, a, w, b+h, q, wb+h, g).fork();;
475 Relay rc
[all...]
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp279 static rc_t throwIfMinusOne(JNIEnv* env, const char* name, rc_t rc) { argument
280 if (rc == rc_t(-1)) {
283 return rc;
741 int rc = isLstat ? TEMP_FAILURE_RETRY(lstat64(path.c_str(), &sb)) local
743 if (rc == -1) {
756 int rc = is_sockname ? TEMP_FAILURE_RETRY(getsockname(fd, sa, &byteCount)) local
758 if (rc == -1) {
968 int rc = TEMP_FAILURE_RETRY(access(path.c_str(), mode)); local
969 if (rc == -1) {
972 return (rc
1182 int rc = IO_FAILURE_RETRY(env, int, fcntl, javaFd, cmd, &lock); local
1211 int rc = TEMP_FAILURE_RETRY(fstat64(fd, &sb)); local
1222 int rc = TEMP_FAILURE_RETRY(fstatvfs(fd, &sb)); local
1265 int rc = android_getaddrinfofornet(node.c_str(), NULL, &hints, netId, 0, &addressList); local
1340 int rc = getnameinfo(reinterpret_cast<sockaddr*>(&ss), sa_len, buf, sizeof(buf), NULL, 0, flags); local
1411 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &sa->sin_addr, &size)); local
1432 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &l, &size)); local
1445 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &tv, &size)); local
1458 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &u, &size)); local
1525 int rc = TEMP_FAILURE_RETRY(getifaddrs(&ifaddr)); local
1668 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &req))); local
1680 int rc = throwIfMinusOne(env, "ioctl", TEMP_FAILURE_RETRY(ioctl(fd, cmd, &arg))); local
1892 int rc; local
2222 int rc = TEMP_FAILURE_RETRY(setsockopt(fd, level, option, &req, sizeof(req))); local
2300 int rc = throwIfMinusOne(env, "socketpair", TEMP_FAILURE_RETRY(socketpair(domain, type, protocol, fds))); local
2361 int rc = TEMP_FAILURE_RETRY(statvfs(path.c_str(), &sb)); local
2441 int rc = throwIfMinusOne(env, "waitpid", TEMP_FAILURE_RETRY(waitpid(pid, &status, options))); local
[all...]
H A DNetworkUtilities.cpp210 int rc = fcntl(fd, F_SETFL, flags); local
211 return (rc != -1);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DForkJoinPool.java2924 int rc = 0;
2929 ++rc;
2932 return rc;
3105 long qt = 0L, qs = 0L; int rc = 0;
3120 ++rc;
3140 ", running = " + rc +
/libcore/luni/src/main/java/libcore/io/
H A DIoBridge.java259 int rc = Libcore.os.poll(pollFds, remainingTimeoutMs);
260 if (rc == 0) {

Completed in 332 milliseconds