Searched defs:tmout2 (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/native/java/net/
H A DInet4AddressImpl.c301 jint tmout2; local
372 tmout2 = timeout > 1000 ? 1000 : timeout;
374 tmout2 = NET_Wait(env, fd, NET_WAIT_READ, tmout2);
375 if (tmout2 >= 0) {
392 } while (tmout2 > 0);
H A DInet6AddressImpl.c373 int tmout2; local
459 tmout2 = timeout > 1000 ? 1000 : timeout;
461 tmout2 = NET_Wait(env, fd, NET_WAIT_READ, tmout2);
463 if (tmout2 >= 0) {
485 } while (tmout2 > 0);
/openjdk7/jdk/src/solaris/native/java/net/
H A DInet4AddressImpl.c607 jint tmout2, seq = 1; local
670 tmout2 = timeout > 1000 ? 1000 : timeout;
672 tmout2 = NET_Wait(env, fd, NET_WAIT_READ, tmout2);
673 if (tmout2 >= 0) {
698 } while (tmout2 > 0);
H A DInet6AddressImpl.c459 jint tmout2, seq = 1; local
520 tmout2 = timeout > 1000 ? 1000 : timeout;
522 tmout2 = NET_Wait(env, fd, NET_WAIT_READ, tmout2);
524 if (tmout2 >= 0) {
546 } while (tmout2 > 0);

Completed in 37 milliseconds