Searched refs:numBytes (Results 1 - 24 of 24) sorted by relevance

/forgerock/opendj2/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/https/
H A DReaderWriterClear.java43 int numBytes = 0;
48 numBytes = in.read(buffer);
49 if (numBytes > 0) {
50 out.write(buffer, 0, numBytes);
52 } else if (numBytes == 0) {
/forgerock/authenticator-android-v2/app/libs/
H A Dcore-2.3.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Djdeb-0.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ...
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/
H A DMsgAjp.java294 * @param numBytes The number of bytes to copy.
296 public void appendBytes( byte b[], int off, int numBytes ) {
297 appendInt( numBytes );
298 cpBytes( b, off, numBytes );
302 private void cpBytes( byte b[], int off, int numBytes ) {
303 if( pos + numBytes >= buf.length ) {
305 pos + " data=" + numBytes );
310 System.arraycopy( b, off, buf, pos, numBytes);
311 pos += numBytes;
312 // buf[pos + numBytes]
[all...]
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/core/
H A DMsg.java119 * @param numBytes The number of bytes to copy.
121 public abstract void appendBytes( byte b[], int off, int numBytes );
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/io/
H A DWindowsRemoteFile.java176 int numBytes = 0;
179 while ((numBytes = bis.read(buf)) >= 0) {
180 bos.write(buf, 0, numBytes);
181 totalBytesCopied += numBytes;
267 int numBytes = 0;
270 while ((numBytes = sin.read(buf)) >= 0) {
271 sout.write(buf, 0, numBytes);
272 totalBytesCopied += numBytes;
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/base/
H A DSample.java106 public byte[] downloadBytes(final int numBytes); argument
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/
H A DSampleImpl.java174 public byte[] downloadBytes(final int numBytes) { argument
175 if (numBytes < 0 || numBytes > 10 * MEGABYTE) {
176 throw new IllegalArgumentException("Illegal count: " + numBytes);
179 final byte[] bytes = new byte[numBytes];
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/security/
H A DSecurityUtils.java50 public static String getSecureRandomHexString(int numBytes) { argument
52 byte[] bb = new byte[numBytes];
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/zip/
H A DZipFile.java172 for(int numBytes = zin.read(buffer); numBytes > 0; numBytes = zin.read(buffer))
174 os.write(buffer, 0, numBytes);
175 totalBytes += numBytes;
H A DZipWriter.java258 for(int numBytes = in.read(buffer); numBytes > 0; numBytes = in.read(buffer))
260 zipStream.write(buffer, 0, numBytes);
261 totalBytes += numBytes;

Completed in 119 milliseconds