Searched defs:bufferSize (Results 26 - 35 of 35) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DDecoder.java304 public void setBufferSize(int bufferSize) { argument
306 _bufferSize = bufferSize;
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c347 static cmsBool _getHeaderInfo(cmsHPROFILE pf, jbyte* pBuffer, jint bufferSize);
348 static cmsBool _setHeaderInfo(cmsHPROFILE pf, jbyte* pBuffer, jint bufferSize);
667 static cmsBool _getHeaderInfo(cmsHPROFILE pf, jbyte* pBuffer, jint bufferSize) argument
675 bufferSize < sizeof(cmsICCHeader))
694 static cmsBool _setHeaderInfo(cmsHPROFILE pf, jbyte* pBuffer, jint bufferSize) argument
698 if (pBuffer == NULL || bufferSize < sizeof(cmsICCHeader)) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLEntityManager.java1628 Integer bufferSize = (Integer)value;
1629 if (bufferSize != null &&
1630 bufferSize.intValue() > DEFAULT_XMLDECL_BUFFER_SIZE) {
1631 fBufferSize = bufferSize.intValue();
2782 public void setExternalBufferSize(int bufferSize) { argument
2783 fExternalBufferSize = bufferSize;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpAdaptorServer.java110 * which size can be configured using the property <CODE>bufferSize</CODE>
113 * Increasing <CODE>bufferSize</CODE> allows the exchange of bigger packets.
117 * the value of <CODE>bufferSize</CODE> actually is.
195 int bufferSize = 1024; field in class:SnmpAdaptorServer
633 return new Integer(bufferSize) ;
652 bufferSize = s.intValue() ;
1307 packet = new DatagramPacket(new byte[bufferSize], bufferSize) ;
1425 * by <CODE>bufferSize</CODE>.
1500 * by <CODE>bufferSize</COD
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java162 long bufferAddress, int bufferSize) throws WindowsException;
1057 int bufferSize,
1063 BackupRead0(hFile, bufferAddress, bufferSize, abort, context, result);
1075 int bufferSize, boolean abort, long context, BackupResult result)
161 DeviceIoControlGetReparsePoint(long handle, long bufferAddress, int bufferSize) argument
1055 BackupRead(long hFile, long bufferAddress, int bufferSize, boolean abort, long context) argument
1074 BackupRead0(long hFile, long bufferAddress, int bufferSize, boolean abort, long context, BackupResult result) argument
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_DirectSound.cpp1034 * for writing: bufferSize - (info->writePos - writeCursor);
1037 * note about bufferSize)
1043 * note about bufferSize)
1044 * bufferSize parameter are filled by "actual" buffer size:
1045 * if (fromPlayCursor == FALSE), bufferSize = info->bufferSizeInBytes
1051 int* bufferSize, BOOL fromPlayCursor) {
1074 *bufferSize = info->bufferSizeInBytes;
1076 *bufferSize += processing;
1081 available = *bufferSize;
1084 if (currWriteAhead > *bufferSize) {
1049 DS_GetAvailable(DS_Info* info, DWORD* playCursor, DWORD* writeCursor, int* bufferSize, BOOL fromPlayCursor) argument
1154 int bufferSize; local
1244 int bufferSize; local
1304 int available, bufferSize; local
1345 int ret, bufferSize; local
1353 estimatePositionFromAvail(DS_Info* info, INT64 javaBytePos, int bufferSize, int availInBytes) argument
1372 int available, bufferSize; local
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c269 jlong handle, jlong bufferAddress, jint bufferSize)
275 if (DeviceIoControl(h, FSCTL_GET_REPARSE_POINT, NULL, 0, outBuffer, (DWORD)bufferSize,
1251 jlong hFile, jlong bufferAddress, jint bufferSize, jboolean abort,
1261 (DWORD)bufferSize,
268 Java_sun_nio_fs_WindowsNativeDispatcher_DeviceIoControlGetReparsePoint(JNIEnv* env, jclass this, jlong handle, jlong bufferAddress, jint bufferSize) argument
1250 Java_sun_nio_fs_WindowsNativeDispatcher_BackupRead0(JNIEnv* env, jclass this, jlong hFile, jlong bufferAddress, jint bufferSize, jboolean abort, jlong context, jobject obj) argument
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp6070 int os::get_core_path(char* buffer, size_t bufferSize) { argument
6071 int n = jio_snprintf(buffer, bufferSize, "/cores");
6073 // Truncate if theoretical string was longer than bufferSize
6074 n = MIN2(n, (int)bufferSize);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp6834 int os::get_core_path(char* buffer, size_t bufferSize) { argument
6835 const char* p = get_current_directory(buffer, bufferSize);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp922 void os::check_or_create_dump(void* exceptionRecord, void* contextRecord, char* buffer, size_t bufferSize) { argument
971 jio_snprintf(buffer, bufferSize, "%s\\hs_err_pid%u.mdmp",cwd, current_process_id());

Completed in 120 milliseconds

12