/external/apache-http/src/org/apache/http/io/ |
SessionInputBuffer.java | 54 int read(byte[] b, int off, int len) throws IOException;
|
SessionOutputBuffer.java | 54 void write(byte[] b, int off, int len) throws IOException;
|
/external/dagger2/examples/simple/src/main/java/coffee/ |
CoffeeMaker.java | 19 heater.get().off();
|
/external/elfutils/tests/ |
allfcts.c | 77 Dwarf_Off off = 0; local 82 while (dwarf_nextcu (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0) 85 Dwarf_Die *die = dwarf_offdie (dbg, off + cuhl, &die_mem); 98 off = noff;
|
/external/fio/lib/ |
lfsr.h | 25 int lfsr_next(struct fio_lfsr *fl, uint64_t *off);
|
/external/guava/guava/src/com/google/common/io/ |
CharSequenceReader.java | 82 public synchronized int read(char[] cbuf, int off, int len) throws IOException { 83 checkPositionIndexes(off, off + len, cbuf.length); 90 cbuf[off + i] = seq.charAt(pos++);
|
/external/iproute2/include/linux/tc_act/ |
tc_pedit.h | 20 __u32 off; /*offset */ member in struct:tc_pedit_key
|
/external/kernel-headers/original/uapi/linux/tc_act/ |
tc_pedit.h | 20 __u32 off; /*offset */ member in struct:tc_pedit_key
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/ |
DataInput.java | 32 public void readFully (byte[] b, int off, int len) throws IOException;
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/ |
ReadWriteCharArrayBuffer.java | 97 public CharBuffer put (char[] src, int off, int len) { 99 if (off < 0 || len < 0 || (long)len + (long)off > length) { 105 System.arraycopy(src, off, backingArray, offset + position, len);
|
ReadWriteDoubleArrayBuffer.java | 98 public DoubleBuffer put (double[] src, int off, int len) { 100 if (off < 0 || len < 0 || (long)off + (long)len > length) { 106 System.arraycopy(src, off, backingArray, offset + position, len);
|
ReadWriteFloatArrayBuffer.java | 101 public FloatBuffer put (float[] src, int off, int len) { 103 if (off < 0 || len < 0 || (long)off + (long)len > length) { 109 System.arraycopy(src, off, backingArray, offset + position, len);
|
ReadWriteIntArrayBuffer.java | 97 public IntBuffer put (int[] src, int off, int len) { 99 if (off < 0 || len < 0 || (long)off + (long)len > length) { 105 System.arraycopy(src, off, backingArray, offset + position, len);
|
ReadWriteLongArrayBuffer.java | 97 public LongBuffer put (long[] src, int off, int len) { 99 if (off < 0 || len < 0 || (long)off + (long)len > length) { 105 System.arraycopy(src, off, backingArray, offset + position, len);
|
ReadWriteShortArrayBuffer.java | 98 public ShortBuffer put (short[] src, int off, int len) { 100 if (off < 0 || len < 0 || (long)off + (long)len > length) { 106 System.arraycopy(src, off, backingArray, offset + position, len);
|
/external/libmicrohttpd/src/examples/ |
digest_auth_example.c | 95 size_t off; local 111 off = 0; 112 while (off < 8) 123 off += len;
|
/external/opencv3/3rdparty/libtiff/ |
tif_next.c | 59 * Each scanline is assumed to start off as all 88 tmsize_t off; local 93 off = (bp[0] * 256) + bp[1]; 95 if (cc < 4+n || off+n > scanline) 97 _TIFFmemcpy(row+off, bp+4, n);
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
Parser.java | 121 public MessageType parseFrom(byte[] data, int off, int len) 129 public MessageType parseFrom(byte[] data, int off, int len, 154 public MessageType parsePartialFrom(byte[] data, int off, int len) 162 public MessageType parsePartialFrom(byte[] data, int off, int len,
|
/frameworks/base/core/java/android/util/ |
Base64OutputStream.java | 98 public void write(byte[] b, int off, int len) throws IOException { 101 internalWrite(b, off, len, false); 136 private void internalWrite(byte[] b, int off, int len, boolean finish) throws IOException { 138 if (!coder.process(b, off, len, finish)) {
|
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
groverelay.cxx | 47 relay->off(); 49 std::cout << relay->name() << " is off" << std::endl;
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
GroveRelaySample.java | 46 relay.off(); 48 System.out.println("Relay is off");
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
groverelay.js | 42 relay.off(); 44 console.log(relay.name() + " is off");
|
/libcore/luni/src/main/native/ |
ZipUtilities.cpp | 45 void NativeZipStream::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, 52 env->GetByteArrayRegion(javaDictionary, off, len, &dictionaryBytes[0]); 67 void NativeZipStream::setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) { 76 env->GetByteArrayRegion(buf, off, len, &input[0]);
|
/libcore/ojluni/src/main/java/java/io/ |
DataInput.java | 262 * If <code>off</code> is negative, or <code>len</code> 263 * is negative, or <code>off+len</code> is 269 * byte read is stored into element <code>b[off]</code>, 270 * the next one into <code>b[off+1]</code>, 275 * @param off an int specifying the offset into the data. 281 void readFully(byte b[], int off, int len) throws IOException;
|
LineNumberReader.java | 150 * @param off 162 public int read(char cbuf[], int off, int len) throws IOException { 164 int n = super.read(cbuf, off, len); 166 for (int i = off; i < off + n; i++) {
|