Searched defs:rv (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/native/
H A Dio_util_md.c40 jstring rv = NULL; local
55 rv = (*env)->NewString(env, (jchar*)chars, clen);
61 return rv;
H A DDatagramChannelImpl.c83 int rv; local
86 rv = connect(fd, 0, 0);
117 rv = connect(fd, (struct sockaddr *)&sa, len);
120 if (rv < 0 && errno == EADDRNOTAVAIL)
121 rv = errno = 0;
126 if (rv < 0)
H A DFileChannelImpl.c65 handle(JNIEnv *env, jlong rv, char *msg) argument
67 if (rv >= 0)
68 return rv;
H A DFileDispatcherImpl.c118 handle(JNIEnv *env, jlong rv, char *msg) argument
120 if (rv >= 0)
121 return rv;
H A DUnixFileSystem_md.c81 jstring rv = NULL; local
90 rv = newStringPlatform(env, canonicalPath);
92 rv = JNU_NewStringPlatform(env, canonicalPath);
96 return rv;
119 jint rv = 0; local
128 rv = (jint) (java_io_FileSystem_BA_EXISTS
133 return rv;
140 jboolean rv = JNI_FALSE; local
159 rv = JNI_TRUE;
162 return rv;
173 jboolean rv = JNI_FALSE; local
217 jlong rv = 0; local
233 jlong rv = 0; local
252 jboolean rv = JNI_FALSE; local
278 jboolean rv = JNI_FALSE; local
297 jobjectArray rv, old; local
364 jboolean rv = JNI_FALSE; local
379 jboolean rv = JNI_FALSE; local
395 jboolean rv = JNI_FALSE; local
424 jboolean rv = JNI_FALSE; local
441 jlong rv = 0L; local
[all...]
H A Dlinux_close.cpp60 int rv, orig_errno; local
70 rv = close(fd2);
72 rv = dup2(fd1, fd2);
74 } while (rv == -1 && errno == EINTR);
75 return rv;
208 int rv; local
221 rv = poll(&pfd, 1, timeout);
231 if (rv < 0 && errno == EINTR) {
242 return rv;
H A DNet.c221 int rv = 0; local
227 rv = NET_Bind(fdval(env, fdo), (struct sockaddr *)&sa, sa_len);
228 if (rv != 0) {
246 int rv; local
254 rv = connect(fdval(env, fdo), (struct sockaddr *)&sa, sa_len);
255 if (rv != 0) {
H A Dnet_util_md.c985 int rv; local
1003 rv = getsockopt(fd, level, opt, result, len);
1007 rv = getsockopt(fd, level, opt, result, &socklen);
1012 if (rv < 0) {
1013 return rv;
1039 return rv;
1276 int rv; local
1336 rv = bind(fd, him, len);
1339 if (rv < 0) {
1351 return rv;
[all...]

Completed in 314 milliseconds