Searched defs:len (Results 26 - 50 of 976) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/common/
H A Djio.c41 int len; local
45 len = jio_vsnprintf(str, count, fmt, args);
48 return len;
57 int len; local
61 len = jio_vfprintf(fp, fmt, args);
64 return len;
H A Dverify_stub.c42 VerifyClass(JNIEnv *env, jclass cb, char *buffer, jint len);
45 VerifyClassForMajorVersion(JNIEnv *env, jclass cb, char *buffer, jint len,
49 VerifyClassCodes(JNIEnv *env, jclass cb, char *buffer, jint len) argument
51 return VerifyClass(env, cb, buffer, len);
56 jint len, jint major_version)
58 return VerifyClassForMajorVersion(env, cb, buffer, len, major_version);
55 VerifyClassCodesForMajorVersion(JNIEnv *env, jclass cb, char *buffer, jint len, jint major_version) argument
/openjdk7/jdk/src/share/native/java/util/zip/
H A DCRC32.c47 jarray b, jint off, jint len)
51 crc = crc32(crc, buf + off, len);
57 JNIEXPORT jint ZIP_CRC32(jint crc, const jbyte *buf, jint len) argument
59 return crc32(crc, (Bytef*)buf, len);
46 Java_java_util_zip_CRC32_updateBytes(JNIEnv *env, jclass cls, jint crc, jarray b, jint off, jint len) argument
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/
H A DA2NFilter.java51 public int read(char[] buf, int off, int len) throws IOException { argument
55 char[] cBuf = new char[len];
67 int n = in.read(cBuf, numChars, len - numChars);
H A DN2AFilter.java49 public void write(char[] buf, int off, int len) throws IOException { argument
54 for (int i = 0; i < len; i++) {
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DCompressInputStream.java63 public int read(byte b[], int off, int len) throws IOException { argument
64 if (len <= 0) {
77 for (; i < len ; i++) {
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/
H A DCompressInputStream.java63 public int read(byte b[], int off, int len) throws IOException { argument
64 if (len <= 0) {
77 for (; i < len ; i++) {
/openjdk7/jdk/test/sun/java2d/pisces/Renderer/
H A DTest7019861.java62 private static Path2D getPath(int x, int y, int len) { argument
65 p.quadTo(x + len, y, x + len, y + len);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DArrayDecoder.java34 int decode(byte[] src, int off, int len, char[] dst); argument
H A DArrayEncoder.java34 int encode(char[] src, int off, int len, byte[] dst); argument
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogOutputStream.java69 * @param len the number of bytes that are written
72 public void write(byte b[], int off, int len) throws IOException { argument
73 raf.write(b, off, len);
/openjdk7/langtools/test/tools/javac/implicitThis/
H A DNewBeforeOuterConstructed.java41 public void write(byte b[], int off, int len) { } argument
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DCharacterArrayCharacterIterator.java35 private final int len; field in class:CharacterArrayCharacterIterator
38 public CharacterArrayCharacterIterator(char[] src, int off, int len) argument
42 this.len = len;
48 if (endIndex > len) {
50 + "; sequence size=" + len);
62 return substring(beginIndex, len);
74 return (pos >= len);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DOptionalDataException.java51 OptionalDataException(int len) { argument
53 length = len;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DHexOutputStream.java73 public synchronized void write(byte[] b, int off, int len) argument
76 for(int i=0; i < len; i++) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DEditableAtEndDocument.java41 int len = getLength();
42 super.insertString(len, text, a);
45 public void remove(int offs, int len) throws BadLocationException { argument
47 int end = offs + len;
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DSourceDataLine.java179 * @param len the length, in bytes, of the valid data in the array
185 * or if <code>len</code> is negative
187 * or <code>off+len</code> is greater than the length of the array
193 public int write(byte[] b, int off, int len); argument
H A DTargetDataLine.java170 * @param len the requested number of bytes to read
174 * or if <code>len</code> is negative.
176 * or <code>off+len</code> is greater than the length of the array
182 public int read(byte[] b, int off, int len); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFEditorKit.java98 * @param len The amount to write out.
103 public void write(OutputStream out, Document doc, int pos, int len) argument
144 * @param len The amount to write out.
149 public void write(Writer out, Document doc, int pos, int len) argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java90 public void write(byte[] input, int offset, int len) { argument
92 bos.write(input, offset, len);
96 StringBuffer sb = new StringBuffer(len);
97 for (int i=offset; i<(offset+len); i++) {
102 md.update(input, offset, len);
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedOutputStream.java101 * Writes <code>len</code> bytes from the specified byte array
113 * @param len the number of bytes to write.
116 public synchronized void write(byte b[], int off, int len) throws IOException { argument
117 if (len >= buf.length) {
122 out.write(b, off, len);
125 if (len > buf.length - count) {
128 System.arraycopy(b, off, buf, count, len);
129 count += len;
H A DFilterInputStream.java111 * Reads up to <code>len</code> bytes of data from this input stream
112 * into an array of bytes. If <code>len</code> is not zero, the method
116 * This method simply performs <code>in.read(b, off, len)</code>
121 * @param len the maximum number of bytes read.
127 * <code>len</code> is negative, or <code>len</code> is greater than
132 public int read(byte b[], int off, int len) throws IOException { argument
133 return in.read(b, off, len);
H A DFilterReader.java73 public int read(char cbuf[], int off, int len) throws IOException { argument
74 return in.read(cbuf, off, len);
H A DFilterWriter.java73 * @param len Number of characters to be written
77 public void write(char cbuf[], int off, int len) throws IOException { argument
78 out.write(cbuf, off, len);
86 * @param len Number of characters to be written
90 public void write(String str, int off, int len) throws IOException { argument
91 out.write(str, off, len);
H A DInputStream.java105 * Reads up to <code>len</code> bytes of data from the input stream into
107 * <code>len</code> bytes, but a smaller number may be read.
113 * <p> If <code>len</code> is zero, then no bytes are read and
121 * is, at most, equal to <code>len</code>. Let <i>k</i> be the number of
125 * <code>b[off+len-1]</code> unaffected.
128 * <code>b[off]</code> and elements <code>b[off+len]</code> through
131 * <p> The <code>read(b,</code> <code>off,</code> <code>len)</code> method
135 * the <code>read(b,</code> <code>off,</code> <code>len)</code> method. If
141 * until the requested amount of input data <code>len</code> has been read,
148 * @param len th
161 read(byte b[], int off, int len) argument
[all...]

Completed in 72 milliseconds

1234567891011>>