Searched defs:bufLen (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DCStringAccessor.java32 private int bufLen; field in class:CStringAccessor
34 CStringAccessor(Address addr, int bufLen) { argument
36 this.bufLen = bufLen;
41 while ((addr.getCIntegerAt(len, 1, true) != 0) && (len < bufLen)) {
58 if (data.length >= bufLen) {
H A DServiceabilityAgentJVMDIModule.java333 private CStringAccessor lookupCString(String symbolName, int bufLen) { argument
334 return new CStringAccessor(lookup(symbolName), bufLen);
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DInflaterOutputStream.java99 * @param bufLen decompression buffer size
100 * @throws IllegalArgumentException if {@code bufLen} is <= 0
103 public InflaterOutputStream(OutputStream out, Inflater infl, int bufLen) { argument
111 if (bufLen <= 0)
116 buf = new byte[bufLen];
H A DDeflaterInputStream.java99 * @param bufLen compression buffer size
100 * @throws IllegalArgumentException if {@code bufLen} is <= 0
103 public DeflaterInputStream(InputStream in, Deflater defl, int bufLen) { argument
111 if (bufLen < 1)
116 buf = new byte[bufLen];
/openjdk7/jdk/src/windows/native/sun/tools/attach/
H A DWindowsAttachProvider.c44 DWORD bufLen, actualLen; local
47 bufLen = sizeof(buf) / sizeof(char);
48 actualLen = GetTempPath(bufLen, buf);
51 if (actualLen > bufLen) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DDiagnosticSource.java96 if (bp >= bufLen) {
121 while (lineEnd < bufLen && buf[lineEnd] != CR && buf[lineEnd] != LF)
163 while (bp < bufLen && bp < pos) {
166 if (bp < bufLen && buf[bp] == LF) bp++;
176 return bp <= bufLen;
190 bufLen = cb.limit();
193 bufLen = buf.length;
211 protected int bufLen; field in class:DiagnosticSource
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWhitespaceStripper.java48 private int bufLen = 0; field in class:WhitespaceStripper
70 if( bufLen+length>buf.length ) {
72 char[] newBuf = new char[Math.max(bufLen+length,buf.length*2)];
73 System.arraycopy(buf,0,newBuf,0,bufLen);
76 System.arraycopy(ch,start,buf,bufLen,length);
77 bufLen += length;
96 bufLen = 0;
111 for( int i=bufLen-1; i>=0; i-- )
113 super.characters(buf, 0, bufLen);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DWhitespaceStripper.java53 private int bufLen = 0; field in class:WhitespaceStripper
75 if( bufLen+length>buf.length ) {
77 char[] newBuf = new char[Math.max(bufLen+length,buf.length*2)];
78 System.arraycopy(buf,0,newBuf,0,bufLen);
81 System.arraycopy(ch,start,buf,bufLen,length);
82 bufLen += length;
101 bufLen = 0;
116 for( int i=bufLen-1; i>=0; i-- )
118 super.characters(buf, 0, bufLen);
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DBsdVirtualMachine.c220 (JNIEnv *env, jclass cls, jint fd, jbyteArray ba, jint off, jint bufLen)
222 size_t remaining = bufLen;
219 Java_sun_tools_attach_BsdVirtualMachine_write(JNIEnv *env, jclass cls, jint fd, jbyteArray ba, jint off, jint bufLen) argument
H A DLinuxVirtualMachine.c438 (JNIEnv *env, jclass cls, jint fd, jbyteArray ba, jint off, jint bufLen)
440 size_t remaining = bufLen;
437 Java_sun_tools_attach_LinuxVirtualMachine_write(JNIEnv *env, jclass cls, jint fd, jbyteArray ba, jint off, jint bufLen) argument
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_digest.c173 jsize bufLen; local
187 bufLen = MAX_STACK_BUFFER_LEN;
190 bufLen = min(MAX_HEAP_BUFFER_LEN, jInLen);
191 bufP = (CK_BYTE_PTR) malloc((size_t)bufLen);
199 jsize chunkLen = min(bufLen, jInLen);
H A Dp11_sign.c193 jsize bufLen; local
207 bufLen = MAX_STACK_BUFFER_LEN;
210 bufLen = min(MAX_HEAP_BUFFER_LEN, jInLen);
211 bufP = (CK_BYTE_PTR) malloc((size_t)bufLen);
219 jsize chunkLen = min(bufLen, jInLen);
491 jsize bufLen; local
505 bufLen = MAX_STACK_BUFFER_LEN;
508 bufLen = min(MAX_HEAP_BUFFER_LEN, jInLen);
509 bufP = (CK_BYTE_PTR) malloc((size_t)bufLen);
517 jsize chunkLen = min(bufLen, jInLe
[all...]
/openjdk7/jdk/src/solaris/classes/sun/tools/attach/
H A DBsdVirtualMachine.java291 static native int read(int fd, byte buf[], int off, int bufLen) throws IOException; argument
293 static native void write(int fd, byte buf[], int off, int bufLen) throws IOException; argument
H A DLinuxVirtualMachine.java331 static native int read(int fd, byte buf[], int off, int bufLen) throws IOException; argument
333 static native void write(int fd, byte buf[], int off, int bufLen) throws IOException; argument
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c268 JNI_GetCreatedJavaVMs(JavaVM **vmBuf, jsize bufLen, jsize *nVMs) { argument
271 return ifn->GetCreatedJavaVMs(vmBuf, bufLen, nVMs);
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp370 const jbyte *buf, jsize bufLen))
375 env, name, loaderRef, buf, bufLen);
378 env, (char*) name, loaderRef, (char*) buf, bufLen);
396 ClassFileStream st((u1*) buf, bufLen, NULL);
5178 _JNI_IMPORT_OR_EXPORT_ jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **vm_buf, jsize bufLen, jsize *numVMs) { argument
5183 vm_buf, bufLen, numVMs);
5186 (void **) vm_buf, bufLen, (uintptr_t *) numVMs);
5190 if (bufLen > 0) *vm_buf = (JavaVM *)(&main_vm);

Completed in 83 milliseconds