Searched defs:rv (Results 51 - 65 of 65) sorted by relevance

123

/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c162 int rv; local
169 rv = NET_WinBind(fdval(env, fdo), (struct sockaddr *)&sa, sa_len, isExclBind);
170 if (rv == SOCKET_ERROR)
188 int rv; local
196 rv = connect(s, (struct sockaddr *)&sa, sa_len);
197 if (rv != 0) {
207 rv = getsockopt(s, SOL_SOCKET, SO_TYPE, (char*)&type, &optlen);
208 if (rv == 0 && type == SOCK_DGRAM) {
/openjdk7/jdk/src/windows/transport/socket/
H A Dsocket_md.c129 int rv = connect(fd, name, namelen); local
130 if (rv == SOCKET_ERROR) {
135 return rv;
139 int rv; local
151 rv = select(fd+1, 0, &wr, &ex, &t);
152 if (rv == 0) {
351 int rv; local
368 rv = select(fd+1, &rd_tbl, &wr_tbl, 0, &t);
369 if (rv >= 0) {
370 rv
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_general.c187 CK_RV rv; local
202 rv = (*ckpFunctions->C_Initialize)(ckpInitArgs);
206 if (ckAssertReturnValueOK(env, rv) != CK_ASSERT_OK) { return; }
228 CK_RV rv; local
235 rv = (*ckpFunctions->C_Finalize)(ckpReserved);
236 if (ckAssertReturnValueOK(env, rv) != CK_ASSERT_OK) { return; }
254 CK_RV rv; local
259 rv = (*ckpFunctions->C_GetInfo)(&ckLibInfo);
260 if (ckAssertReturnValueOK(env, rv) == CK_ASSERT_OK) {
341 CK_RV rv; local
385 CK_RV rv; local
477 CK_RV rv; local
607 CK_RV rv; local
641 CK_RV rv; local
689 CK_RV rv; local
770 CK_RV rv; local
812 CK_RV rv; local
851 CK_RV rv; local
[all...]
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c97 LONG rv; local
99 rv = CALL_SCardEstablishContext(dwScope, NULL, NULL, &context);
100 if (handleRV(env, rv)) {
148 LONG rv; local
154 rv = CALL_SCardListReaders(context, NULL, NULL, &size);
155 if (handleRV(env, rv)) {
161 rv = CALL_SCardListReaders(context, NULL, mszReaders, &size);
162 if (handleRV(env, rv)) {
178 LONG rv; local
184 rv
200 LONG rv; local
229 LONG rv; local
262 LONG rv; local
275 LONG rv; local
314 LONG rv; local
326 LONG rv; local
338 LONG rv; local
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c389 int rv; local
402 rv = NET_GetSockOpt(s, SOL_SOCKET, SO_EXCLUSIVEADDRUSE, (char *)&parg, &plen);
403 if (rv == 0 && parg == 1) {
404 return rv;
408 rv = setsockopt(s, level, optname, optval, optlen);
410 if (rv == SOCKET_ERROR) {
418 rv = 0;
427 rv = 0;
431 return rv;
444 int rv; local
476 int rv = 0; local
495 int rv; local
670 int fd=-1, ofd=-1, rv, len; local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DThemeReader.cpp812 jlong rv = -1; local
817 rv = duration;
820 return rv;
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c1251 int rv; local
1269 rv = getsockopt(fd, level, opt, result, len);
1273 rv = getsockopt(fd, level, opt, result, &socklen);
1278 if (rv < 0) {
1279 return rv;
1305 return rv;
1542 int rv; local
1602 rv = bind(fd, him, len);
1605 if (rv < 0) {
1617 return rv;
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c1100 jstring rv = NULL; local
1109 rv = (*env)->NewString(env, buf, len);
1116 rv = (*env)->NewString(env, lpBuf, len);
1127 return rv;
1134 jstring rv = NULL; local
1148 rv = (*env)->NewString(env, (const jchar *)path, (jsize)len);
1155 rv = (*env)->NewString(env, (const jchar *)lpBuf, (jsize)len);
1167 return rv;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmslut.c496 cmsUInt32Number rv, dim; local
500 for (rv = 1; b > 0; b--) {
505 rv *= dim;
508 if (rv > UINT_MAX / dim) return 0;
511 return rv;
H A Dcmstypes.c1729 cmsUInt32Number rv = 1, rc; local
1736 rv *= a;
1739 if (rv > UINT_MAX / a) return (size_t) -1;
1743 rc = rv * n;
1745 if (rv != rc / n) return (size_t) -1;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java4214 * <code>rv</code> and returns <code>rv</code>.
4215 * If <code>rv</code> is <code>null</code> a new <code>Rectangle</code>
4220 * @param rv the return value, modified to the component's bounds
4221 * @return <code>rv</code>; if <code>rv</code> is <code>null</code>
4225 public Rectangle getBounds(Rectangle rv) { argument
4226 if (rv == null) {
4230 rv.setBounds(getX(), getY(), getWidth(), getHeight());
4231 return rv;
4247 getSize(Dimension rv) argument
4269 getLocation(Point rv) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java2451 * Stores the bounds of this component into "return value" <b>rv</b> and
2452 * return <b>rv</b>. If rv is <code>null</code> a new
2458 * @param rv the return value, modified to the components bounds
2459 * @return rv
2461 public Rectangle getBounds(Rectangle rv) { argument
2462 if (rv == null) {
2466 rv.setBounds(getX(), getY(), getWidth(), getHeight());
2467 return rv;
2472 * Stores the width/height of this component into "return value" <b>rv</
2481 getSize(Dimension rv) argument
2502 getLocation(Point rv) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2879 off_t rv = ::lseek(fd, size-2, SEEK_SET); local
2880 if (rv != (off_t)-1) {
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp2630 off_t rv = ::lseek(fd, size-2, SEEK_SET); local
2631 if (rv != (off_t)-1) {
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4687 // to happen early in the wait interval. Specifically, after a spurious wakeup (rv ==
4694 DWORD rv = WAIT_TIMEOUT ; local
4700 rv = ::WaitForSingleObject (_ParkHandle, prd) ;
4701 assert (rv == WAIT_OBJECT_0 || rv == WAIT_TIMEOUT, "WaitForSingleObject failed") ;
4702 if (rv == WAIT_TIMEOUT) {
4732 DWORD rv = ::WaitForSingleObject (_ParkHandle, INFINITE) ; local
4733 assert (rv == WAIT_OBJECT_0, "WaitForSingleObject failed") ;

Completed in 156 milliseconds

123