Searched refs:bufferLength (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/java/net/DatagramSocket/
H A DSendSize.java41 static final int bufferLength = 512; field in class:SendSize
100 byte[] buf = new byte[bufferLength];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DBMMimeMultipart.java364 int bufferLength = is.read(buffer, 0, patternLength);
365 if (bufferLength == -1) {
367 } else if (bufferLength < patternLength) {
368 //repeatedly read patternLength - bufferLength
371 int i = bufferLength;
386 bufferLength=i;
388 return bufferLength;
396 int bufferLength = 0;
402 bufferLength = readNext(is, buffer, l, eof, posVector, sin);
409 if (bufferLength <
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexInputStream.java81 * @param bufferLength length of input buffer
86 int bufferLength)
91 buffer = new byte[bufferLength];
92 waterMark = bufferLength / 2;
83 MultiplexInputStream( ConnectionMultiplexer manager, MultiplexConnectionInfo info, int bufferLength) argument
H A DMultiplexOutputStream.java77 * @param bufferLength length of output buffer
82 int bufferLength)
87 buffer = new byte[bufferLength];
79 MultiplexOutputStream( ConnectionMultiplexer manager, MultiplexConnectionInfo info, int bufferLength) argument
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiUtils.c189 static int getEndpointProperty(int direction, INT32 deviceID, char *buffer, int bufferLength, CFStringRef propertyID) { argument
215 bufferLength,
223 CFStringExtractCString(pname, buffer, bufferLength, 0);
238 INT32 MIDI_Utils_GetDeviceName(int direction, INT32 deviceID, char *name, UINT32 bufferLength) { argument
239 return getEndpointProperty(direction, deviceID, name, bufferLength, kMIDIPropertyName);
243 INT32 MIDI_Utils_GetDeviceVendor(int direction, INT32 deviceID, char *name, UINT32 bufferLength) { argument
244 return getEndpointProperty(direction, deviceID, name, bufferLength, kMIDIPropertyManufacturer);
248 INT32 MIDI_Utils_GetDeviceDescription(int direction, INT32 deviceID, char *name, UINT32 bufferLength) { argument
249 return getEndpointProperty(direction, deviceID, name, bufferLength, kMIDIPropertyDisplayName);
253 INT32 MIDI_Utils_GetDeviceVersion(int direction, INT32 deviceID, char *name, UINT32 bufferLength) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java1182 int destLength, bufferLength;
1226 bufferLength=findPreviousIterationBoundary(src,
1230 if(bufferLength>0) {
1233 startIndex[0]+bufferLength,
1238 pNeededToNormalize[0]=(boolean)(destLength!=bufferLength ||
1248 (bufferLength<destCapacity) ?
1249 bufferLength : destCapacity
1411 int /*unsigned*/ bufferLength;
1453 bufferLength=findNextIterationBoundary(src,isNextBoundary, minC, mask,
1455 if(bufferLength>
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A DimageioJPEG.c113 size_t bufferLength; // Allocated, nut just used member in struct:streamBufferStruct
152 sb->bufferLength = (*env)->GetArrayLength(env, hInputBuffer);
907 printf("Buffer length is %d\n", sb->bufferLength);
928 sb->bufferLength);
1007 buflen = sb->bufferLength - offset;
2269 dest->free_in_buffer = sb->bufferLength;
2296 sb->bufferLength);
2304 dest->free_in_buffer = sb->bufferLength;
2324 jint datacount = (jint)(sb->bufferLength - dest->free_in_buffer);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java1037 int bufferLength,
1035 ReadDirectoryChangesW(long hDirectory, long bufferAddress, int bufferLength, boolean watchSubTree, int filter, long bytesReturnedAddress, long pOverlapped) argument
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c1229 jlong hDirectory, jlong bufferAddress, jint bufferLength, jboolean watchSubTree, jint filter,
1238 (DWORD)bufferLength,
1228 Java_sun_nio_fs_WindowsNativeDispatcher_ReadDirectoryChangesW(JNIEnv* env, jclass this, jlong hDirectory, jlong bufferAddress, jint bufferLength, jboolean watchSubTree, jint filter, jlong bytesReturnedAddress, jlong pOverlapped) argument

Completed in 71 milliseconds