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

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpMessage.java148 public void decodeMessage(byte[] inputBytes, int byteCount) argument
151 BerDecoder bdec = new BerDecoder(inputBytes/*, byteCount */) ; // FIXME
H A DSnmpV3Message.java175 public void decodeMessage(byte[] inputBytes, int byteCount) argument
H A DBerEncoder.java222 * Put an <CODE>ANY</CODE> value. Only the first <CODE>byteCount</CODE> are considered.
225 * @param byteCount The number of bytes of the encoding.
228 public void putAny(byte[] s, int byteCount) { argument
229 java.lang.System.arraycopy(s,0,bytes,start-byteCount,byteCount);
230 start -= byteCount;
231 // for (int i = byteCount - 1 ; i >= 0 ; i--) {
H A DSnmpMsg.java137 public abstract void decodeMessage(byte[] inputBytes, int byteCount) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpIncomingResponse.java94 int byteCount,
93 decodeMessage(byte[] inputBytes, int byteCount, InetAddress address, int port) argument
H A DSnmpIncomingRequest.java117 int byteCount,
116 decodeMessage(byte[] inputBytes, int byteCount, InetAddress address, int port) argument
/openjdk7/jdk/src/share/back/
H A DVirtualMachineImpl.c398 int byteCount; local
407 byteCount = inStream_readInt(in);
412 if ( byteCount <= 0 ) {
417 bytes = (unsigned char *)jvmtiAllocate(byteCount);
423 (void)inStream_readBytes(in, byteCount, (jbyte *)bytes);
430 classDefs[i].class_byte_count = byteCount;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_io.c1866 write_raw_from_file(int fd, jlong byteCount, void (*raw_interface)(void *,int)) argument
1881 left = (int)byteCount;

Completed in 68 milliseconds