Searched defs:buffer (Results 1 - 25 of 352) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/utilities/
H A DerrorReporter.cpp30 void ErrorReporter::call(FILE* fd, char* buffer, int length) { argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedWriteStream.java32 /** Equivalent to CompressedWriteStream(buffer, 0) */
33 public CompressedWriteStream(Address buffer) { argument
34 this(buffer, 0);
38 allocate the buffer */
39 public CompressedWriteStream(Address buffer, int position) { argument
40 super(buffer, position);
/openjdk7/jdk/src/share/classes/sun/audio/
H A DAudioData.java63 byte buffer[]; field in class:AudioData
68 public AudioData(byte buffer[]) { argument
70 this.buffer = buffer;
75 // okay, we need to extract the format and the byte buffer of data
77 AudioInputStream ais = AudioSystem.getAudioInputStream(new ByteArrayInputStream(buffer));
80 // $$fb 2002-10-27: buffer contains the file header now!
93 AudioData(AudioFormat format, byte[] buffer) { argument
96 this.buffer = buffer;
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DinterpreterRT_sparc.hpp55 SignatureHandlerGenerator(methodHandle method, CodeBuffer* buffer) : NativeSignatureIterator(method) { argument
56 _masm = new MacroAssembler(buffer);
/openjdk7/hotspot/test/compiler/6968348/
H A DTest6968348.java38 static final long[] buffer = new long[4096]; field in class:Test6968348
55 unsafe.putLong(buffer, i, Long.reverseBytes(i));
/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DDataReader.java45 void onData(Client client, ByteBuffer buffer, int bytes); argument
H A DMessageReader.java44 * Writes all messages in our buffer to the other clients
45 * and appends new data read from the socket to our buffer
59 * Write all full messages in our buffer to
75 * Append the read buffer to the clients message buffer
77 * @param buffer the buffer we received from the socket
78 * @param bytes the number of bytes read into the buffer
81 public void onData(Client client, ByteBuffer buffer, int bytes) { argument
82 buffer
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DXMLStreamBufferResult.java26 package com.sun.xml.internal.stream.buffer;
28 import com.sun.xml.internal.stream.buffer.sax.SAXBufferCreator;
72 * @param buffer the {@link MutableXMLStreamBuffer} to use.
74 public XMLStreamBufferResult(MutableXMLStreamBuffer buffer) { argument
75 setXMLStreamBuffer(buffer);
90 * @param buffer the {@link MutableXMLStreamBuffer}.
92 public void setXMLStreamBuffer(MutableXMLStreamBuffer buffer) { argument
93 if (buffer == null) {
94 throw new NullPointerException("buffer cannot be null");
96 _buffer = buffer;
[all...]
H A DXMLStreamBufferSource.java26 package com.sun.xml.internal.stream.buffer;
28 import com.sun.xml.internal.stream.buffer.sax.SAXBufferProcessor;
60 * @param buffer the {@link XMLStreamBuffer} to use.
62 public XMLStreamBufferSource(XMLStreamBuffer buffer) { argument
65 setXMLStreamBuffer(buffer);
80 * @param buffer the {@link XMLStreamBuffer}.
82 public void setXMLStreamBuffer(XMLStreamBuffer buffer) { argument
83 if (buffer == null) {
84 throw new NullPointerException("buffer cannot be null");
86 _buffer = buffer;
[all...]
H A DXMLStreamBufferException.java26 package com.sun.xml.internal.stream.buffer;
H A DXMLStreamBufferMark.java26 package com.sun.xml.internal.stream.buffer;
31 * A mark into a buffer.
37 * A mark will share a sub set of information of the buffer that is
38 * marked. If the buffer is directly or indirectly associated with a
47 * Create a mark from the buffer that is being created.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCompressedLineNumberReadStream.java31 /** Equivalent to CompressedLineNumberReadStream(buffer, 0) */
32 public CompressedLineNumberReadStream(Address buffer) { argument
33 this(buffer, 0);
36 public CompressedLineNumberReadStream(Address buffer, int position) { argument
37 super(buffer, position);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelChannelMixer.java45 public boolean process(float[][] buffer, int offset, int len); argument
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSendFailedNotification.java35 * in the socket output buffer, or in the case of a {@link SctpMultiChannel}
71 public abstract ByteBuffer buffer(); method in class:SendFailedNotification
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterRT_x86.hpp58 SignatureHandlerGenerator(methodHandle method, CodeBuffer* buffer) : NativeSignatureIterator(method) { argument
59 _masm = new MacroAssembler(buffer);
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DStruct.java43 * Create a struct by taking ownership of an existing buffer.
47 protected Struct(final JObjCRuntime runtime, final NativeBuffer buffer, final int SIZEOF){ argument
50 this.raw = buffer;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DProperties.java29 package com.sun.xml.internal.stream.buffer.sax;
/openjdk7/jdk/test/java/lang/instrument/
H A DNamedBuffer.java37 byte[] buffer)
40 fBuffer = buffer;
68 // hack for now, just assume the stream will fit in our reasonable size buffer.
76 throw new IOException("too big for buffer");
36 NamedBuffer( String name, byte[] buffer) argument
/openjdk7/jdk/src/share/native/common/
H A Dverify_stub.c42 VerifyClass(JNIEnv *env, jclass cb, char *buffer, jint len);
45 VerifyClassForMajorVersion(JNIEnv *env, jclass cb, char *buffer, jint len,
49 VerifyClassCodes(JNIEnv *env, jclass cb, char *buffer, jint len) argument
51 return VerifyClass(env, cb, buffer, len);
55 VerifyClassCodesForMajorVersion(JNIEnv *env, jclass cb, char *buffer, argument
58 return VerifyClassForMajorVersion(env, cb, buffer, len, major_version);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferProcessor.java26 package com.sun.xml.internal.stream.buffer.stax;
28 import com.sun.xml.internal.stream.buffer.AbstractProcessor;
29 import com.sun.xml.internal.stream.buffer.XMLStreamBuffer;
59 public StreamWriterBufferProcessor(XMLStreamBuffer buffer) { argument
60 setXMLStreamBuffer(buffer,buffer.isFragment());
68 public StreamWriterBufferProcessor(XMLStreamBuffer buffer,boolean produceFragmentEvent) { argument
69 setXMLStreamBuffer(buffer,produceFragmentEvent);
72 public final void process(XMLStreamBuffer buffer, XMLStreamWriter writer) throws XMLStreamException { argument
73 setXMLStreamBuffer(buffer,buffe
89 setXMLStreamBuffer(XMLStreamBuffer buffer) argument
98 setXMLStreamBuffer(XMLStreamBuffer buffer, boolean produceFragmentEvent) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DShadowedSymbolTable.java81 * @param buffer The buffer containing the new symbol.
82 * @param offset The offset into the buffer of the new symbol.
83 * @param length The length of the new symbol in the buffer.
85 public String addSymbol(char[] buffer, int offset, int length) { argument
87 if (fSymbolTable.containsSymbol(buffer, offset, length)) {
88 return fSymbolTable.addSymbol(buffer, offset, length);
90 return super.addSymbol(buffer, offset, length);
112 * @param buffer The character buffer containin
117 hash(char[] buffer, int offset, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java48 private boolean buffer = false; field in class:DigesterOutputStream
66 * @param buffer if true, caches the input bytes
68 public DigesterOutputStream(MessageDigest md, boolean buffer) { argument
70 this.buffer = buffer;
71 if (buffer) {
83 if (buffer) {
91 if (buffer) {
117 if (buffer) {
/openjdk7/jdk/src/share/classes/java/io/
H A DStringBufferInputStream.java51 protected String buffer; field in class:StringBufferInputStream
54 * The index of the next character to read from the input stream buffer.
56 * @see java.io.StringBufferInputStream#buffer
61 * The number of valid characters in the input stream buffer.
63 * @see java.io.StringBufferInputStream#buffer
70 * @param s the underlying input buffer.
73 this.buffer = s;
86 * low eight bits of the next character in this input stream's buffer.
92 return (pos < count) ? (buffer.charAt(pos++) & 0xFF) : -1;
101 * low eight bits from the characters in this input stream's buffer int
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIteratorFieldDelegate.java57 StringBuffer buffer) {
79 buffer.substring(size, start)));
86 buffer.substring(aStart, end));
96 int start, int end, StringBuffer buffer) {
97 formatted(attr, value, start, end, buffer);
56 formatted(Format.Field attr, Object value, int start, int end, StringBuffer buffer) argument
95 formatted(int fieldID, Format.Field attr, Object value, int start, int end, StringBuffer buffer) argument
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DAdler32.java82 * Updates the checksum with the bytes from the specified buffer.
85 * buffer.{@link java.nio.Buffer#remaining() remaining()}
87 * buffer.{@link java.nio.Buffer#position() position()}
88 * Upon return, the buffer's position will be updated to its
91 * @param buffer the ByteBuffer to update the checksum with
93 private void update(ByteBuffer buffer) { argument
94 int pos = buffer.position();
95 int limit = buffer.limit();
100 if (buffer instanceof DirectBuffer) {
101 adler = updateByteBuffer(adler, ((DirectBuffer)buffer)
[all...]

Completed in 100 milliseconds

1234567891011>>