HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 201 - 225 of 3492) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/ojluni/src/main/java/java/util/zip/
CheckedInputStream.java 71 * @param off the start offset in the destination array <code>b</code>
76 * @exception IndexOutOfBoundsException If <code>off</code> is negative,
78 * <code>buf.length - off</code>
81 public int read(byte[] buf, int off, int len) throws IOException {
82 len = in.read(buf, off, len);
84 cksum.update(buf, off, len);
  /libcore/ojluni/src/main/java/sun/net/
TelnetOutputStream.java 127 * Write the bytes at offset <i>off</i> in buffer <i>bytes</i> for
130 public void write(byte bytes[], int off, int length) throws IOException {
132 super.write(bytes, off, length);
137 write(bytes[off++]);
  /libcore/ojluni/src/main/java/sun/net/www/http/
HttpCaptureInputStream.java 69 public int read(byte[] b, int off, int len) throws IOException {
70 int ret = super.read(b, off, len);
72 capture.received(b[off+i]);
HttpCaptureOutputStream.java 58 public void write(byte[] b, int off, int len) throws IOException {
59 for (int i = off; i < len; i++) {
62 out.write(b, off, len);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
TeeOutputStream.java 24 * command. It allows a stream to be branched off so there
57 * @param off The start offset
61 public synchronized void write(byte[] b, int off, int len) throws IOException {
62 super.write(b, off, len);
63 this.branch.write(b, off, len);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fgetln.c 69 size_t off; local
97 * As a bonus, though, we can leave off the __SMOD.
105 for (len = fp->_r, off = 0;; len += fp->_r) {
115 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
116 len - off);
117 off = len;
129 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 139 public void write(char[] cbuf, int off, int len) throws IOException {
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException {
154 write(str.charAt(off));
155 off++;
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 139 public void write(char[] cbuf, int off, int len) throws IOException {
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException {
154 write(str.charAt(off));
155 off++;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64.java 24 int off,
27 byte[] encoded = encode(data, off, length);
49 int off,
57 encoder.encode(data, off, length, bOut);
87 int off,
92 return encoder.encode(data, off, length, out);
Hex.java 24 int off,
27 byte[] encoded = encode(data, off, length);
49 int off,
56 encoder.encode(data, off, length, bOut);
86 int off,
91 return encoder.encode(data, off, length, out);
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 139 public void write(char[] cbuf, int off, int len) throws IOException {
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException {
154 write(str.charAt(off));
155 off++;
  /external/libpng/contrib/intel/
configure.ac.patch 20 [Enable Intel SSE optimizations: =no/off, yes/on:]
21 [no/off: disable the optimizations;]
25 no|off)
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleInputStream.java 54 public int read(byte[] buf, int off, int len) throws IOException {
55 if (off < 0 || len < 0 || off + len < 0 || off + len > buf.length)
73 System.arraycopy(filterBuf, pos, buf, off, copySize);
76 off += copySize;
  /external/proguard/src/proguard/io/
ManifestRewriter.java 117 public int read(char[] cbuf, int off, int len) throws IOException
129 cbuf[off + count++] = (char)c;
197 public void write(char[] cbuf, int off, int len) throws IOException
201 write(cbuf[off + count]);
206 public void write(String str, int off, int len) throws IOException
208 write(str.toCharArray(), off, len); local
  /external/smali/util/src/main/java/org/jf/util/
WrappedIndentingWriter.java 154 public void write(char[] cbuf, int off, int len) throws IOException {
157 write(cbuf[off]);
158 off++;
166 public void write(String str, int off, int len) throws IOException {
169 write(str.charAt(off));
170 off++;
  /external/valgrind/auxprogs/
getoff.c 147 size_t off; local
149 for (off = 0; off < MAX_LINKMAP_WORDS; off++)
150 dummy_link_map[off] = off;
  /libcore/ojluni/src/main/java/java/io/
CharArrayReader.java 113 * @param off Offset at which to start storing characters
120 public int read(char b[], int off, int len) throws IOException {
123 if ((off < 0) || (off > b.length) || (len < 0) ||
124 ((off + len) > b.length) || ((off + len) < 0)) {
139 System.arraycopy(buf, pos, b, off, len);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 228 int off = 0; local
230 while (off < Packet.HEADER_SIZE) {
232 int bytesRead = input.read(header, off, Packet.HEADER_SIZE - off);
236 off += bytesRead;
243 if (off == 0) {
246 if (off < Packet.HEADER_SIZE) {
261 while (off < len) {
262 int bytesRead = input.read(bytes, off, len - off);
299 int off = 0; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 87 public int read(final byte[] b, int off, int len) throws IOException {
91 return this.in.read(b, off, len);
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
CountingOutputStream.java 59 public void write(byte[] b, int off, int len) throws IOException {
61 out.write(b, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DigestOutputStream.java 27 int off,
31 digest.update(b, off, len);
MacOutputStream.java 27 int off,
31 mac.update(b, off, len);
  /external/clang/test/Sema/
pragma-ms_struct.c 5 #pragma ms_struct off
9 #pragma ms_struct // expected-warning {{incorrect use of '#pragma ms_struct on|off' - ignored}}
58 #pragma ms_struct off
  /external/guava/guava-tests/test/com/google/common/io/
RandomAmountInputStream.java 35 @Override public int read(byte[] b, int off, int len) throws IOException {
36 return super.read(b, off, random.nextInt(len) + 1);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
FilterInputStream.java 34 public int read (byte b[], int off, int len) throws IOException {
35 return in.read(b, off, len);

Completed in 1305 milliseconds

1 2 3 4 5 6 7 891011>>