Searched refs:out (Results 151 - 175 of 722) sorted by relevance

1234567891011>>

/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DASN1SetOf.java62 public final void encodeContent(BerOutputStream out) { argument
63 out.encodeSetOf(this);
66 public final void setEncodingContent(BerOutputStream out) { argument
67 out.getSetOfLength(this);
H A DASN1Implicit.java155 public void encodeASN(BerOutputStream out) { argument
158 out.encodeTag(constrId);
160 out.encodeTag(id);
162 encodeContent(out);
165 public void encodeContent(BerOutputStream out) { argument
166 type.encodeContent(out);
169 public void setEncodingContent(BerOutputStream out) { argument
170 type.setEncodingContent(out);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERObject.java18 abstract void encode(DEROutputStream out) argument
H A DDERTaggedObject.java49 DEROutputStream out)
64 out.writeEncoded(CONSTRUCTED | TAGGED | tagNo, bytes);
80 out.write(bytes);
85 out.writeEncoded(CONSTRUCTED | TAGGED | tagNo, new byte[0]);
48 encode( DEROutputStream out) argument
H A DBERConstructedOctetString.java119 DEROutputStream out)
122 if (out instanceof ASN1OutputStream || out instanceof BEROutputStream)
124 out.write(CONSTRUCTED | OCTET_STRING);
126 out.write(0x80);
129 // write out the octet array
135 out.writeObject(octs.elementAt(i));
151 out.writeObject(new DEROctetString(nStr));
161 out.writeObject(new DEROctetString(nStr));
164 out
118 encode( DEROutputStream out) argument
[all...]
H A DDERObjectIdentifier.java146 OutputStream out,
166 out.write((int)(fieldValue >> 56) | 0x80);
168 out.write((int)(fieldValue >> 49) | 0x80);
170 out.write((int)(fieldValue >> 42) | 0x80);
172 out.write((int)(fieldValue >> 35) | 0x80);
174 out.write((int)(fieldValue >> 28) | 0x80);
176 out.write((int)(fieldValue >> 21) | 0x80);
178 out.write((int)(fieldValue >> 14) | 0x80);
180 out.write((int)(fieldValue >> 7) | 0x80);
182 out
145 writeField( OutputStream out, long fieldValue) argument
185 writeField( OutputStream out, BigInteger fieldValue) argument
210 encode( DEROutputStream out) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DBlockCipher.java37 * the out array.
41 * @param out the array the output data will be copied into.
42 * @param outOff the offset into the out array the output will start at.
44 * space in out.
48 public int processBlock(byte[] in, int inOff, byte[] out, int outOff) argument
H A DDerivationFunction.java15 public int generateBytes(byte[] out, int outOff, int len) argument
H A DDigest.java42 * @param out the array the digest is to be copied into.
43 * @param outOff the offset into the out array the digest is to start at.
45 public int doFinal(byte[] out, int outOff); argument
/dalvik/tests/025-access-controller/src/
H A DMain.java12 System.out.println("AccessControllerTest: got " + result);
/dalvik/tests/034-call-null/src/
H A DMain.java7 System.out.println("mFoo is " + mFoo);
/dalvik/tests/060-reflection-security/src/
H A DEnforcer.java35 System.out.println("checkPackageAccess: " + pkg);
49 System.out.println("checkMemberAccess: " + c.getName() + ", " +
56 System.out.println("checkPermission: " + perm);
62 System.out.println("checkPermission: " + perm + ", " + context);
/dalvik/vm/mterp/
H A Drebuild.sh18 # Rebuild for all known targets. Necessary until the stuff in "out" gets
29 rm -f out/InterpAsm-portstd.S out/InterpAsm-portdbg.S
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DPaddedBlockCipher.java87 * @param out the space for any output that might be produced.
89 * @exception DataLengthException if there isn't enough space in out.
94 byte[] out,
102 resultLen = cipher.processBlock(buf, 0, out, outOff);
116 * @param len the number of bytes to be copied out of the input array.
117 * @param out the space for any output that might be produced.
119 * @exception DataLengthException if there isn't enough space in out.
126 byte[] out,
140 if ((outOff + length) > out.length)
153 resultLen += cipher.processBlock(buf, 0, out, outOf
92 processByte( byte in, byte[] out, int outOff) argument
122 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
188 doFinal( byte[] out, int outOff) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DEncodedArrayItem.java104 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput();
105 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out);
108 encodedForm = out.toByteArray();
114 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
115 boolean annotates = out.annotates();
118 out.annotate(0, offsetString() + " encoded array");
125 ValueEncoder encoder = new ValueEncoder(file, out);
128 out.write(encodedForm);
/dalvik/libcore/luni/src/main/java/java/io/
H A DBufferedOutputStream.java55 * {@code out}. The buffer size is set to the default value of 8 KB.
57 * @param out
61 public BufferedOutputStream(OutputStream out) { argument
62 super(out);
82 * {@code out}. The buffer size is set to {@code size}.
84 * @param out
91 public BufferedOutputStream(OutputStream out, int size) { argument
92 super(out);
101 * Flushes this stream to ensure all pending data is written out to the
114 out
[all...]
H A DPipedReader.java46 * range {@code [out, in)} and written to the range {@code [in, out)}.
51 * out in</pre>
56 * in out</pre>
59 * {@code in == out}. Writing when the buffer is full will block until free
72 private int out; field in class:PipedReader
93 * {@code out}. Any data written to the writer can be read from the this
96 * @param out
99 * if {@code out} is already connected.
101 public PipedReader(PipedWriter out) throw argument
[all...]
/dalvik/tests/003-omnibus-opcodes/src/
H A DUnresTest2.java28 System.out.println("UnresTest2...");
47 System.out.println("UnresTest2 done");
/dalvik/tests/014-math3/src/
H A DMain.java53 System.out.println("HEY: expected throws is " + expectedThrows);
55 System.out.println("testMath3 success");
/dalvik/tests/081-hot-exceptions/src/
H A DMain.java39 System.out.println("sum = " + sum);
40 System.out.println("exception = " + exception);
/dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/
H A DBase64.java40 OutputStream out)
43 return encoder.encode(data, 0, data.length, out);
55 OutputStream out)
58 return encoder.encode(data, off, length, out);
113 OutputStream out)
116 return encoder.decode(data, out);
38 encode( byte[] data, OutputStream out) argument
51 encode( byte[] data, int off, int length, OutputStream out) argument
111 decode( String data, OutputStream out) argument
H A DHex.java53 OutputStream out)
56 return encoder.encode(data, 0, data.length, out);
68 OutputStream out)
71 return encoder.encode(data, off, length, out);
126 OutputStream out)
129 return encoder.decode(data, out);
51 encode( byte[] data, OutputStream out) argument
64 encode( byte[] data, int off, int length, OutputStream out) argument
124 decode( String data, OutputStream out) argument
H A DUrlBase64.java52 OutputStream out)
55 return encoder.encode(data, 0, data.length, out);
88 OutputStream out)
91 return encoder.decode(data, 0, data.length, out);
124 OutputStream out)
127 return encoder.decode(data, out);
50 encode( byte[] data, OutputStream out) argument
86 decode( byte[] data, OutputStream out) argument
122 decode( String data, OutputStream out) argument
/dalvik/tests/053-wait-some/src/
H A DMain.java24 System.out.println("HEY: didn't throw on negative arg");
26 System.out.println("Caught expected exception on neg arg");
32 System.out.println("Waiting for " + delay + "ms...");
55 System.out.println(" Elapsed time was too short");
58 System.out.println(" Elapsed time was too long: "
65 System.out.println(" Wall clock elapsed "
/dalvik/tests/079-phantom/src/
H A DMain.java29 System.out.println("start");
35 System.out.println("done");
46 System.out.println("nulling 1");
51 System.out.println("nulling 2");
56 System.out.println("nulling 3");
61 System.out.println("nulling 4");

Completed in 1424 milliseconds

1234567891011>>