Searched refs:bytecount (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/Selector/
H A DByteServer.java37 private int bytecount; field in class:ByteServer
43 public ByteServer(int bytecount) throws Exception{ argument
44 this.bytecount = bytecount;
57 socket.getOutputStream().write(new byte[bytecount]);
/openjdk7/jdk/src/share/instrument/
H A DUtilities.h49 allocate(jvmtiEnv * jvmtienv, size_t bytecount);
H A DUtilities.c42 allocate(jvmtiEnv * jvmtienv, size_t bytecount) { argument
47 bytecount,
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DSocketOrChannelConnectionImpl.java595 int bytecount = 0;
617 bytecount = getSocketChannel().read(byteBuffer);
619 if (bytecount < 0) {
622 else if (bytecount == 0) {
638 n += bytecount;
660 int bytecount = 0;
682 bytecount = is.read(buf, offset + n, size - n);
683 if (bytecount < 0) {
686 else if (bytecount == 0) {
702 n += bytecount;
[all...]

Completed in 90 milliseconds