HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 101 - 125 of 1168) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketServiceAccept.java 26 public PacketServiceAccept(byte payload[], int off, int len) throws IOException
29 System.arraycopy(payload, off, this.payload, 0, len);
31 TypesReader tr = new TypesReader(payload, off, len);
PacketServiceRequest.java 26 public PacketServiceRequest(byte payload[], int off, int len) throws IOException
29 System.arraycopy(payload, off, this.payload, 0, len);
31 TypesReader tr = new TypesReader(payload, off, len);
PacketUserauthBanner.java 33 public PacketUserauthBanner(byte payload[], int off, int len) throws IOException
36 System.arraycopy(payload, off, this.payload, 0, len);
38 TypesReader tr = new TypesReader(payload, off, len);
PacketUserauthFailure.java 28 public PacketUserauthFailure(byte payload[], int off, int len) throws IOException
31 System.arraycopy(payload, off, this.payload, 0, len);
33 TypesReader tr = new TypesReader(payload, off, len);
  /external/jmdns/src/javax/jmdns/impl/
DNSMessage.java 258 for (int off = 0, len = data.length; off < len; off += 32) {
259 int n = Math.min(32, len - off);
260 if (off < 0x10) {
263 if (off < 0x100) {
266 if (off < 0x1000) {
269 buf.append(Integer.toHexString(off));
276 buf.append(Integer.toHexString((data[off + index] & 0xF0) >> 4));
277 buf.append(Integer.toHexString((data[off + index] & 0x0F) >> 0))
    [all...]
  /external/openssl/crypto/asn1/
t_pkey.c 66 unsigned char *buf, int off)
73 if(!BIO_indent(bp,off,128))
105 || !BIO_indent(bp,off+4,128))
  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 43 public abstract void off(); method in class:ResettableTimeout
49 * <p>3. At the timeout, calls off()<p>
81 * Cancel the timeout and call off now.
93 off(); method
109 off(); method
125 // turn it off at this time.
  /frameworks/native/libs/utils/
Debug.cpp 35 ssize_t off = sizeof(indentStr)-1-(indentLevel*2); local
36 return indentStr + (off < 0 ? 0 : off);
  /libcore/luni/src/main/java/java/security/
DigestInputStream.java 35 // Indicates whether digest functionality is on or off
107 * @param off
118 public int read(byte[] b, int off, int len) throws IOException {
120 int bytesRead = in.read(b, off, len);
125 digest.update(b, off, bytesRead);
152 (isOn ? ", is on" : ", is off");
DigestOutputStream.java 35 // Indicates whether digest functionality is on or off
96 * @param off
104 public void write(byte[] b, int off, int len) throws IOException {
107 digest.update(b, off, len);
110 out.write(b, off, len);
134 (isOn ? ", is on" : ", is off");
  /libcore/luni/src/main/java/java/util/zip/
CheckedInputStream.java 72 * into {@code buf}, starting at offset {@code off}. The checksum is
77 * @param off
88 public int read(byte[] buf, int off, int nbytes) throws IOException {
89 int x = in.read(buf, off, nbytes);
91 check.update(buf, off, x);
  /packages/apps/Email/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/stdio/
fgetln.c 76 size_t off; local
103 * As a bonus, though, we can leave off the __SMOD.
111 for (len = fp->_r, off = 0;; len += fp->_r) {
121 (void)memcpy((void *)(fp->_lb._base + off), (void *)fp->_p,
122 len - off);
123 off = len;
135 (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/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/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 54 SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl,
55 unsigned O) : mdPtr(mdP), Offset(off), DL(dl), Order(O),
63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
65 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
71 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) :
72 mdPtr(mdP), Offset(off), DL(dl), Order(O), Invalid(false) {
  /external/proguard/src/proguard/io/
ManifestRewriter.java 122 public int read(char[] cbuf, int off, int len) throws IOException
134 cbuf[off + count++] = (char)c;
202 public void write(char[] cbuf, int off, int len) throws IOException
206 write(cbuf[off + count]);
211 public void write(String str, int off, int len) throws IOException
213 write(str.toCharArray(), off, len); local
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
IndentingWriter.java 147 public void write(char[] cbuf, int off, int len) throws IOException {
150 write(cbuf[off]);
151 off++;
159 public void write(String str, int off, int len) throws IOException {
162 write(str.charAt(off));
163 off++;
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 82 public int read(final byte[] b, int off, int len) throws IOException {
86 return this.in.read(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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherOutputStream.java 40 private void internal_write(byte[] src, int off, int len) throws IOException
47 System.arraycopy(src, off, out_buffer, out_buffer_pos, copy);
49 off += copy;
110 public void write(byte[] src, int off, int len) throws IOException
117 System.arraycopy(src, off, buffer, pos, copy);
119 off += copy;
147 public void writePlain(byte[] b, int off, int len) throws IOException
153 internal_write(b, off, len);
  /external/guava/guava/src/com/google/common/io/
CountingOutputStream.java 50 @Override public void write(byte[] b, int off, int len) throws IOException {
51 out.write(b, off, len);

Completed in 976 milliseconds

1 2 3 45 6 7 8 91011>>