Searched defs:bufferLength (Results 1 - 7 of 7) 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/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/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
/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);

Completed in 63 milliseconds