Searched refs:bufSize (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/windows/native/com/sun/security/auth/module/
H A Dnt.c311 DWORD bufSize = 0; local
325 &bufSize);
327 tokenUserInfo = (PTOKEN_USER)HeapAlloc(GetProcessHeap(), 0, bufSize);
331 bufSize,
347 bufSize = 0;
352 &bufSize,
357 *userName = (LPTSTR)HeapAlloc(GetProcessHeap(), 0, bufSize);
362 &bufSize,
380 bufSize = 0;
381 getTextualSid(tokenUserInfo->User.Sid, NULL, &bufSize);
444 DWORD bufSize = 0; local
497 DWORD bufSize = 0; local
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DLeftOverInputStream.java109 int bufSize = 2048;
110 byte[] db = new byte [bufSize];
112 long len = readImpl (db, 0, bufSize);
/openjdk7/jdk/src/windows/native/java/util/
H A DTimeZone_md.c190 DWORD bufSize; local
196 bufSize = sizeof(val);
198 NULL, &valueType, (LPBYTE) &val, &bufSize);
203 bufSize = sizeof(val);
205 NULL, &valueType, (LPBYTE) &val, &bufSize);
225 bufSize = MAX_ZONE_CHAR;
227 &valueType, (LPBYTE) winZoneName, &bufSize);
245 bufSize = sizeof(stdNameInReg);
247 (LPBYTE) stdNameInReg, &bufSize);
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m82 size_t bufSize, inSize, outSize;
107 bufSize = inSize*2; // need 2 bytes per char for UCS-2, this is
109 out = buf; outSize = bufSize;
120 *size = (bufSize-outSize)/2; /* bytes to wchars */
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DNetClient.java183 int bufSize = 65507; field in class:UDPClient
204 byte ibuf[] = new byte[bufSize];
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java48 static final int bufSize = 1024; field in class:ByteBuffersNull
52 BufferDescr[] inBuffers = getByteBuffersForTest(bufSize);
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_macosx.c198 const CFIndex bufSize = CFStringGetMaximumSizeForEncoding(stringLength, kCFStringEncodingUTF8) + 1; local
199 char *returnVal = (char *)malloc(bufSize);
201 if (CFStringGetCString(theString, returnVal, bufSize, kCFStringEncodingUTF8)) {
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c393 jint bufSize; local
401 bufSize =(*env)->GetArrayLength(env, data);
403 if (bufSize < sizeof(cmsICCHeader)) {
417 status = _getHeaderInfo(sProf.pf, dataArray, bufSize);
438 bufSize = (*env)->GetArrayLength(env, data);
440 if (tagSize < 0 || 0 > bufSize || tagSize > bufSize) {
454 bufSize = cmsReadRawTag(sProf.pf, sig.cms, dataArray, tagSize);
458 if (bufSize != tagSize) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DIDLJavaSerializationInputStream.java79 private int bufSize; field in class:IDLJavaSerializationInputStream
159 int bufSize,
163 this.bufSize = bufSize;
173 buf = new byte[bufSize];
898 result.init(this.orb, this.buffer, this.bufSize, false, null);
966 return bufSize;
1008 System.out.println("Total length : " + this.bufSize);
157 init(org.omg.CORBA.ORB orb, ByteBuffer byteBuffer, int bufSize, boolean littleEndian, BufferManagerRead bufferManager) argument
/openjdk7/jdk/src/share/native/java/lang/
H A DClassLoader.c54 getUTF(JNIEnv *env, jstring str, char* localBuf, int bufSize) argument
60 if (len >= bufSize) {
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c59 size_t bufSize, inSize, outSize; local
84 bufSize = inSize*2; // need 2 bytes per char for UCS-2, this is
86 out = buf; outSize = bufSize;
97 *size = (bufSize-outSize)/2; /* bytes to wchars */
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java1406 long bufSize = e.size + 2; // Inflater likes a bit of slack
1407 if (bufSize > 65536)
1408 bufSize = 8192;
1410 eis = new InflaterInputStream(eis, getInflater(), (int)bufSize) {
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dglext.h3528 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
3529 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
3533 typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
3535 typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog);
3536 typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source);

Completed in 5566 milliseconds